diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index c684b2cf63..0d93977627 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -4,7 +4,13 @@ labels: ["Type: Bug", "Status: Triage", "Slicing Error :collision:"] body: - type: markdown attributes: - value: | + value: | + ### ✨Try our improved Cura 5.7✨ + Before filling out the report below, we want you to try the latest Cura 5.7 Beta. + This version of Cura has become significantly more reliable and has an updated slicing engine that will automatically send a report to the Cura Team for analysis. + #### [You can find the downloads here](https://github.com/Ultimaker/Cura/releases/tag/5.7.0-beta.1) #### + If you still encounter a crash you are still welcome to report the issue so we can use your model as a test case, you can find instructions on how to do that below. + ### Project File **⚠️ Before you continue, we need your project file to troubleshoot a slicing crash.** It contains the printer and settings we need for troubleshooting. @@ -23,14 +29,14 @@ body: - type: input attributes: label: Cura Version - placeholder: 5.3.1 + placeholder: 5.6.0 validations: required: true - type: markdown attributes: value: | - We work hard on improving our slicing crashes. Our most recent release is 5.3.1. - If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/tag/5.3.1) + We work hard on improving our slicing crashes. Our most recent release is 5.6.0. + If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/latest) - type: input attributes: label: Operating System @@ -68,4 +74,3 @@ body: description: You can add the zip file and additional information that is relevant to the issue in the comments below. validations: required: true - diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml deleted file mode 100644 index 18e2600e1d..0000000000 --- a/.github/workflows/conan-package-create.yml +++ /dev/null @@ -1,153 +0,0 @@ -name: Create and Upload Conan package - -on: - workflow_call: - inputs: - project_name: - required: true - type: string - - recipe_id_full: - required: true - type: string - - build_id: - required: true - type: number - - build_info: - required: false - default: true - type: boolean - - recipe_id_latest: - required: false - type: string - - runs_on: - required: true - type: string - - python_version: - required: true - type: string - - conan_config_branch: - required: false - type: string - - conan_logging_level: - required: false - type: string - - conan_clean_local_cache: - required: false - type: boolean - default: false - - conan_upload_community: - required: false - default: true - type: boolean - -env: - CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 - -jobs: - conan-package-create: - runs-on: ${{ inputs.runs_on }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: ${{ inputs.python_version }} - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt - # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo - - - name: Use Conan download cache (Bash) - if: ${{ runner.os != 'Windows' }} - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Use Conan download cache (Powershell) - if: ${{ runner.os == 'Windows' }} - run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - if: ${{ runner.os != 'Windows' }} - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ inputs.runs_on }}-${{ runner.arch }}-create-cache - - - name: Cache Conan local repository packages (Powershell) - uses: actions/cache@v3 - if: ${{ runner.os == 'Windows' }} - with: - path: | - C:\Users\runneradmin\.conan\data - C:\.conan - C:\Users\runneradmin\.conan\conan_download_cache - key: conan-${{ inputs.runs_on }}-${{ runner.arch }}-create-cache - - - name: Install MacOS system requirements - if: ${{ runner.os == 'Macos' }} - run: brew install autoconf automake ninja - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison -y - - - name: Install GCC-13 on ubuntu - if: ${{ startsWith(inputs.runs_on, 'ubuntu') }} - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect - - - name: Get Conan configuration from branch - if: ${{ inputs.conan_config_branch != '' }} - run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Add Cura private Artifactory remote - run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True - - - name: Create the Packages - run: conan install ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - - - name: Upload the Package(s) - if: ${{ always() && inputs.conan_upload_community }} - run: conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - - - name: Upload the Package(s) to the private Artifactory - if: ${{ always() && ! inputs.conan_upload_community }} - run: conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c diff --git a/.github/workflows/conan-package-resources.yml b/.github/workflows/conan-package-resources.yml new file mode 100644 index 0000000000..92a7e005fa --- /dev/null +++ b/.github/workflows/conan-package-resources.yml @@ -0,0 +1,40 @@ +name: conan-package-resources + +on: + push: + paths: + - '.github/workflows/conan-package-resources.yml' + - 'resources/definitions/**' + - 'resources/extruders/**' + - 'resources/images/**' + - 'resources/intent/**' + - 'resources/meshes/**' + - 'resources/quality/**' + - 'resources/variants/**' + - 'resources/conanfile.py' + branches: + - 'main' + - 'CURA-*' + - 'PP-*' + - 'NP-*' + - '[0-9].[0-9]*' + - '[0-9].[0-9][0-9]*' + +env: + CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} + +jobs: + conan-recipe-version: + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main + with: + project_name: cura_resources + + conan-package-export: + needs: [ conan-recipe-version ] + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@main + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} + conan_recipe_root: "./resources/" + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 34652de39b..42d03b5038 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -1,145 +1,59 @@ ---- name: conan-package -# Exports the recipe, sources and binaries for Mac, Windows and Linux and upload these to the server such that these can -# be used downstream. -# -# It should run on pushes against main or CURA-* branches, but it will only create the binaries for main and release branches - on: - workflow_dispatch: - inputs: - create_binaries_windows: - required: true - default: false - description: 'create binaries Windows' - create_binaries_linux: - required: true - default: false - description: 'create binaries Linux' - create_binaries_macos: - required: true - default: false - description: 'create binaries Macos' - push: paths: - 'plugins/**' - - 'resources/**' - 'cura/**' + - 'resources/bundled_packages/**' + - 'resources/i18n/**' + - 'resources/qml/**' + - 'resources/setting_visibility/**' + - 'resources/shaders/**' + - 'resources/texts/**' + - 'resources/themes/**' + - 'resources/public_key.pem' + - 'resources/README_resources.txt' - 'icons/**' - 'tests/**' - 'packaging/**' - - '.github/workflows/conan-*.yml' + - '.github/workflows/conan-package.yml' - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' + - '.github/workflows/requirements-runner.txt' - 'requirements*.txt' - 'conanfile.py' - 'conandata.yml' - - 'GitVersion.yml' - '*.jinja' branches: - - main + - 'main' - 'CURA-*' - - '[1-9].[0-9]' - - '[1-9].[0-9][0-9]' - tags: - - '[1-9].[0-9].[0-9]*' - - '[1-9].[0-9].[0-9]' - - '[1-9].[0-9][0-9].[0-9]*' + - 'PP-*' + - 'NP-*' + - '[0-9].[0-9]*' + - '[0-9].[0-9][0-9]*' env: CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - CONAN_LOGIN_USERNAME_CURA_CE: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA_CE: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 -permissions: { } jobs: conan-recipe-version: - permissions: - contents: read - - uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main with: project_name: cura - conan-package-create-linux: + conan-package-export: needs: [ conan-recipe-version ] - runs-on: 'ubuntu-latest' - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Cache Conan data - id: cache-conan - uses: actions/cache@v3 - with: - path: ~/.conan - key: ${{ runner.os }}-conan - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.11.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison g++-12 gcc-12 -y - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Create the Packages - run: conan create . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o ${{ needs.conan-recipe-version.outputs.project_name }}:devtools=True -c tools.build:skip_test=True - - - name: Create the latest alias - if: always() - run: conan alias ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - - - name: Upload the Package(s) - if: always() - run: | - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -c - - notify-create: - if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} - needs: [ conan-recipe-version, conan-package-create-linux ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@main with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "New binaries created in ${{ github.repository }}" - success_body: "Created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" - failure_title: "Failed to create binaries in ${{ github.repository }}" - failure_body: "Failed to created binaries for ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} secrets: inherit + + conan-package-create: + needs: [ conan-recipe-version, conan-package-export ] + uses: ultimaker/cura-workflows/.github/workflows/conan-package-create-linux.yml@main + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + conan_extra_args: "-o cura:enable_i18n=True" + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml deleted file mode 100644 index ba5aaa49a1..0000000000 --- a/.github/workflows/conan-recipe-export.yml +++ /dev/null @@ -1,107 +0,0 @@ -name: Export Conan Recipe to server - -on: - workflow_call: - inputs: - recipe_id_full: - required: true - type: string - - recipe_id_latest: - required: false - type: string - - runs_on: - required: true - type: string - - python_version: - required: true - type: string - - conan_config_branch: - required: false - type: string - - conan_logging_level: - required: false - type: string - - conan_export_binaries: - required: false - type: boolean - - conan_upload_community: - required: false - default: true - type: boolean - -env: - CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: ${{ inputs.conan_logging_level }} - CONAN_NON_INTERACTIVE: 1 - -jobs: - package-export: - runs-on: ${{ inputs.runs_on }} - - steps: - - name: Checkout project - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: ${{ inputs.python_version }} - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: | - pip install -r https://raw.githubusercontent.com/Ultimaker/Cura/main/.github/workflows/requirements-conan-package.txt - conan profile new default --detect - # Note the runner requirements are always installed from the main branch in the Ultimaker/Cura repo - - - name: Cache Conan local repository packages - uses: actions/cache@v3 - with: - path: $HOME/.conan/data - key: ${{ runner.os }}-conan-export-cache - - - name: Get Conan configuration from branch - if: ${{ inputs.conan_config_branch != '' }} - run: conan config install https://github.com/Ultimaker/conan-config.git -a "-b ${{ inputs.conan_config_branch }}" - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Add Cura private Artifactory remote - run: conan remote add cura-private https://ultimaker.jfrog.io/artifactory/api/conan/cura-private True - - - name: Export the Package (binaries) - if: ${{ inputs.conan_export_binaries }} - run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update -c tools.build:skip_test=True - - - name: Export the Package - if: ${{ !inputs.conan_export_binaries }} - run: conan export . ${{ inputs.recipe_id_full }} - - - name: Create the latest alias - if: always() - run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} - - - name: Upload the Package(s) - if: ${{ always() && inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura -c - - - name: Upload the Package(s) to the private Artifactory - if: ${{ always() && ! inputs.conan_upload_community }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-private --all -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-private -c diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml deleted file mode 100644 index 097b9f5dd6..0000000000 --- a/.github/workflows/conan-recipe-version.yml +++ /dev/null @@ -1,217 +0,0 @@ -name: Get Conan Recipe Version - -on: - workflow_call: - inputs: - project_name: - required: true - type: string - - user: - required: false - default: ultimaker - type: string - - additional_buildmetadata: - required: false - default: "" - type: string - - outputs: - recipe_id_full: - description: "The full Conan recipe id: /@/" - value: ${{ jobs.get-semver.outputs.recipe_id_full }} - - recipe_id_latest: - description: "The full Conan recipe aliased (latest) id: /(latest)@/" - value: ${{ jobs.get-semver.outputs.recipe_id_latest }} - - recipe_semver_full: - description: "The full semver ..-+" - value: ${{ jobs.get-semver.outputs.semver_full }} - - is_release_branch: - description: "is current branch a release branch?" - value: ${{ jobs.get-semver.outputs.release_branch }} - - user: - description: "The conan user" - value: ${{ jobs.get-semver.outputs.user }} - - channel: - description: "The conan channel" - value: ${{ jobs.get-semver.outputs.channel }} - - project_name: - description: "The conan projectname" - value: ${{ inputs.project_name }} - -jobs: - get-semver: - - runs-on: ubuntu-latest - - outputs: - recipe_id_full: ${{ steps.get-conan-broadcast-data.outputs.recipe_id_full }} - recipe_id_latest: ${{ steps.get-conan-broadcast-data.outputs.recipe_id_latest }} - semver_full: ${{ steps.get-conan-broadcast-data.outputs.semver_full }} - is_release_branch: ${{ steps.get-conan-broadcast-data.outputs.is_release_branch }} - user: ${{ steps.get-conan-broadcast-data.outputs.user }} - channel: ${{ steps.get-conan-broadcast-data.outputs.channel }} - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} - with: - fetch-depth: 0 - ref: ${{ github.head_ref }} - - - name: Checkout repo PR - uses: actions/checkout@v3 - if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} - with: - fetch-depth: 0 - ref: ${{ github.base_ref }} - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: "3.11.x" - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: | - pip install -r .github/workflows/requirements-conan-package.txt - pip install gitpython - - - id: get-conan-broadcast-data - name: Get Conan broadcast data - run: | - import subprocess - import os - from conan.tools.scm import Version - from conan.errors import ConanException - from git import Repo - - repo = Repo('.') - user = "${{ inputs.user }}".lower() - project_name = "${{ inputs.project_name }}" - event_name = "${{ github.event_name }}" - issue_number = "${{ github.ref }}".split('/')[2] - is_tag = "${{ github.ref_type }}" == "tag" - is_release_branch = False - ref_name = "${{ github.base_ref }}" if event_name == "pull_request" else "${{ github.ref_name }}" - buildmetadata = "" if "${{ inputs.additional_buildmetadata }}" == "" else "${{ inputs.additional_buildmetadata }}_" - - # FIXME: for when we push a tag (such as an release) - channel = "testing" - if is_tag: - branch_version = Version(ref_name) - is_release_branch = True - channel = "_" - user = "_" - actual_version = f"{branch_version}" - else: - try: - branch_version = Version(repo.active_branch.name) - except ConanException: - branch_version = Version('0.0.0') - if ref_name == f"{branch_version.major}.{branch_version.minor}": - channel = 'stable' - is_release_branch = True - elif ref_name in ("main", "master"): - channel = 'testing' - else: - channel = "_".join(repo.active_branch.name.replace("-", "_").split("_")[:2]).lower() - - if "pull_request" in event_name: - channel = f"pr_{issue_number}" - - # %% Get the actual version - latest_branch_version = Version("0.0.0") - latest_branch_tag = None - for tag in repo.active_branch.repo.tags: - if str(tag).startswith("firmware") or str(tag).startswith("master"): - continue # Quick-fix for the versioning scheme name of the embedded team in fdm_materials(_private) repo - try: - version = Version(tag) - except ConanException: - continue - if version > latest_branch_version and version < Version("6.0.0"): - # FIXME: stupid old Cura tags 13.04 etc. keep popping up, als the fdm_material tag for firmware are messing with this - latest_branch_version = version - latest_branch_tag = repo.tag(tag) - - if latest_branch_tag: - # %% Get the actual version - sha_commit = repo.commit().hexsha[:6] - latest_branch_version_prerelease = latest_branch_version.pre - if latest_branch_version.pre and not "." in str(latest_branch_version.pre): - # The prerealese did not contain a version number, default it to 1 - latest_branch_version_prerelease = f"{latest_branch_version.pre}.1" - if event_name == "pull_request": - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{sha_commit}" - channel_metadata = f"{channel}_{sha_commit}" - else: - if channel in ("stable", "_", ""): - channel_metadata = f"{sha_commit}" - else: - channel_metadata = f"{channel}_{sha_commit}" - if is_release_branch: - if (latest_branch_version.pre == "" or latest_branch_version.pre is None) and branch_version > latest_branch_version: - actual_version = f"{branch_version.major}.{branch_version.minor}.0-beta.1+{buildmetadata}{channel_metadata}" - elif latest_branch_version.pre == "": - # An actual full release has been created, we are working on patch - bump_up_patch = int(str(latest_branch_version.patch)) + 1 - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{bump_up_patch}-beta.1+{buildmetadata}{channel_metadata}" - elif latest_branch_version.pre is None: - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{int(latest_branch_version.patch.value) + 1}-beta.1+{buildmetadata}{channel_metadata}" - else: - # An beta release has been created we are working toward a next beta or full release - bump_up_release_tag = int(str(latest_branch_version.pre).split('.')[1]) + 1 - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version.pre).split('.')[0]}.{bump_up_release_tag}+{buildmetadata}{channel_metadata}" - else: - max_branches_version = Version("0.0.0") - for branch in repo.references: - try: - if "remotes/origin" in branch.abspath: - b_version = Version(branch.name.split("/")[-1]) - if b_version < Version("6.0.0") and b_version > max_branches_version: - max_branches_version = b_version - except: - pass - if max_branches_version > latest_branch_version: - actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{sha_commit}" - else: - actual_version = f"{latest_branch_version.major}.{int(str(latest_branch_version.minor)) + 1}.0-alpha+{buildmetadata}{channel_metadata}" - - # %% Set the environment output - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"name={project_name}\n") - f.writelines(f"version={actual_version}\n") - f.writelines(f"channel={channel}\n") - f.writelines(f"recipe_id_full={project_name}/{actual_version}@{user}/{channel}\n") - f.writelines(f"recipe_id_latest={project_name}/latest@{user}/{channel}\n") - f.writelines(f"semver_full={actual_version}\n") - f.writelines(f"is_release_branch={str(is_release_branch).lower()}\n") - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - with open(summary_env, "w") as f: - f.writelines(f"# {project_name}\n") - f.writelines(f"name={project_name}\n") - f.writelines(f"version={actual_version}\n") - f.writelines(f"channel={channel}\n") - f.writelines(f"recipe_id_full={project_name}/{actual_version}@{user}/{channel}\n") - f.writelines(f"recipe_id_latest={project_name}/latest@{user}/{channel}\n") - f.writelines(f"semver_full={actual_version}\n") - f.writelines(f"is_release_branch={str(is_release_branch).lower()}\n") - shell: python diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index fa2f73998b..f1bd4b2d19 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -31,54 +31,41 @@ on: type: boolean schedule: - # Daily at 5:15 CET + # Daily at 4:15 CET (main-branch) and 5:15 CET (release-branch) - cron: '15 3 * * *' + - cron: '15 4 * * *' env: - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version || 'cura/latest@ultimaker/testing' }} CONAN_ARGS: ${{ inputs.conan_args || '' }} ENTERPRISE: ${{ inputs.enterprise || false }} STAGING: ${{ inputs.staging || false }} jobs: - default-values: - runs-on: ubuntu-latest - outputs: - cura_conan_version: ${{ steps.default.outputs.cura_conan_version }} - - steps: - - name: Output default values - id: default - shell: python - run: | - import os - cura_conan_version = "cura/latest@ultimaker/testing" if "${{ github.event.inputs.cura_conan_version }}" == "" else "${{ github.event.inputs.cura_conan_version }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"cura_conan_version={cura_conan_version}\n") + default_values: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-default-value.yml@main + with: + cura_conan_version: ${{ inputs.cura_conan_version }} + latest_release: '5.6' + latest_release_schedule_hour: 4 + latest_release_tag: 'nightly' windows-installer: - uses: ./.github/workflows/windows.yml - needs: [ default-values ] + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} architecture: X64 - operating_system: windows-2022 + operating_system: self-hosted-Windows-X64 secrets: inherit linux-installer: - uses: ./.github/workflows/linux.yml - needs: [ default-values ] + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -87,10 +74,10 @@ jobs: secrets: inherit macos-installer: - uses: ./.github/workflows/macos.yml - needs: [ default-values ] + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -99,10 +86,10 @@ jobs: secrets: inherit macos-arm-installer: - uses: ./.github/workflows/macos.yml - needs: [ default-values ] + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -114,12 +101,12 @@ jobs: update-nightly-release: if: ${{ inputs.nightly || github.event_name == 'schedule' }} runs-on: ubuntu-latest - needs: [ windows-installer, linux-installer, macos-installer, macos-arm-installer ] + needs: [ default_values, windows-installer, linux-installer, macos-installer, macos-arm-installer ] steps: - name: Checkout - uses: actions/checkout@v3 - - # It's not necessary to download all three, but it does make sure we have at least one if an OS is skipped. + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Download the run info uses: actions/download-artifact@v2 @@ -168,7 +155,7 @@ jobs: with: name: ${{ steps.filename.outputs.LINUX }}-AppImage path: installers - + - name: Download linux installer jobs asc artifacts uses: actions/download-artifact@v2 with: @@ -182,8 +169,8 @@ jobs: - name: Update nightly release for Linux run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -206,8 +193,8 @@ jobs: - name: Update nightly release for Windows run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -230,8 +217,8 @@ jobs: - name: Update nightly release for MacOS (X64) run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -254,14 +241,32 @@ jobs: - name: Update nightly release for MacOS (ARM-64) run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: create the release notes + shell: python + run: | + import os + import datetime + from jinja2 import Template + + with open(".github/workflows/release_notes.md.jinja", "r") as f: + release_notes = Template(f.read()) + + current_nightly_beta = "${{ needs.default_values.outputs.release_tag }}".split("nightly-")[-1] + with open("release-notes.md", "w") as f: + f.write(release_notes.render( + timestamp="${{ steps.filename.outputs.NIGHTLY_TIME }}", + branch="" if "${{ needs.default-values.outputs.release_tag == 'nightly' }}" == 'true' else current_nightly_beta, + branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}", + )) + - name: Update nightly release description (with date) if: always() run: | - gh release edit nightly --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes "Nightly release created on: ${{ steps.filename.outputs.NIGHTLY_TIME }}" + gh release edit ${{ needs.default_values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 719a07250c..08c59c9158 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,5 +1,5 @@ name: Linux Installer -run-name: ${{ inputs.cura_conan_version }} for Linux-${{ inputs.architecture }} by @${{ github.actor }} +run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} on: workflow_dispatch: @@ -39,255 +39,14 @@ on: options: - ubuntu-22.04 - workflow_call: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: string - operating_system: - description: 'OS' - required: true - default: 'ubuntu-22.04' - type: string - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} - ENTERPRISE: ${{ inputs.enterprise }} - STAGING: ${{ inputs.staging }} - jobs: - cura-installer-create: - runs-on: ${{ inputs.operating_system }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.10.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - - name: Hack needed specifically for ubuntu-22.04 from mid-Feb 2023 onwards - if: ${{ startsWith(inputs.operating_system, 'ubuntu-22.04') }} - run: sudo apt remove libodbc2 libodbcinst2 unixodbc-common -y - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf squashfs-tools strace util-linux zsync -y - - # Get the AppImage tool - wget --no-check-certificate --quiet https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O $GITHUB_WORKSPACE/appimagetool - chmod +x $GITHUB_WORKSPACE/appimagetool - echo "APPIMAGETOOL_LOCATION=$GITHUB_WORKSPACE/appimagetool" >> $GITHUB_ENV - - # Get the AppImage builder - wget --no-check-certificate --quiet -O $GITHUB_WORKSPACE/appimage-builder-x86_64.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/download/v1.1.0/appimage-builder-1.1.0-x86_64.AppImage - chmod +x appimage-builder-x86_64.AppImage - echo "APPIMAGEBUILDER_LOCATION=$GITHUB_WORKSPACE/appimage-builder-x86_64.AppImage" >> $GITHUB_ENV - - # Make sure these tools can be found on the path - echo "$GITHUB_WORKSPACE" >> $GITHUB_PATH - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Configure GPG Key Linux (Bash) - run: echo -n "$GPG_PRIVATE_KEY" | base64 --decode | gpg --import - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Use Conan download cache (Bash) - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" - - - name: Upload the Package(s) - if: always() - run: | - conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (bash) - run: | - . ./cura_inst/bin/activate_github_actions_env.sh - . ./cura_inst/bin/activate_github_actions_version_env.sh - - # FIXME: This is a workaround to ensure that we use and pack a shared library for OpenSSL 1.1.1l. We currently compile - # OpenSSL statically for CPython, but our Python Dependenies (such as PyQt6) require a shared library. - # Because Conan won't allow for building the same library with two different options (easily) we need to install it explicitly - # and do a manual copy to the VirtualEnv, such that Pyinstaller can find it. - - - name: Install OpenSSL shared - run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - - - name: Copy OpenSSL shared (Bash) - run: | - cp ./openssl/lib/*.so* ./cura_inst/bin/ || true - cp ./openssl/lib/*.dylib* ./cura_inst/bin/ || true - - - name: Create the Cura dist - run: pyinstaller ./cura_inst/UltiMaker-Cura.spec - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" - installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-linux-${{ inputs.architecture }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - - name: Summarize the used Conan dependencies - shell: python - run: | - import os - import json - from pathlib import Path - - conan_install_info_path = Path("cura_inst/conan_install_info.json") - conan_info = {"installed": []} - if os.path.exists(conan_install_info_path): - with open(conan_install_info_path, "r") as f: - conan_info = json.load(f) - sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") - f.writelines("## Conan packages:\n") - for dep in sorted_deps: - f.writelines(f"`{dep}`\n") - - - name: Summarize the used Python modules - shell: python - run: | - import os - import pkg_resources - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("## Python modules:\n") - for package in pkg_resources.working_set: - f.writelines(f"`{package.key}/{package.version}`\n") - - - name: Create the Linux AppImage (Bash) - run: | - python ../cura_inst/packaging/AppImage-builder/create_appimage.py ./UltiMaker-Cura $CURA_VERSION_FULL "${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage" - chmod +x "${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage" - working-directory: dist - - - name: Upload the AppImage - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-AppImage - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage - retention-days: 5 - - - name: Upload the asc - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-asc - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.AppImage.asc - retention-days: 5 - - - name: Write the run info - shell: python - run: | - import os - with open("run_info.sh", "w") as f: - f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') - - name: Upload the run info - uses: actions/upload-artifact@v3 - with: - name: linux-run-info - path: | - run_info.sh - retention-days: 5 - - notify-export: - if: ${{ always() }} - needs: [ cura-installer-create ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main + linux-installer: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "Create the Cura distributions" - success_body: "Installers for ${{ inputs.cura_conan_version }}" - failure_title: "Failed to create the Cura distributions" - failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" - secrets: inherit + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + architecture: ${{ inputs.architecture }} + operating_system: ${{ inputs.operating_system }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 78b4c23fef..9c940330e1 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,5 +1,5 @@ -name: Macos Installer -run-name: ${{ inputs.cura_conan_version }} for Macos-${{ inputs.architecture }} by @${{ github.actor }} +name: MacOS Installer +run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} on: workflow_dispatch: @@ -42,257 +42,15 @@ on: - self-hosted-ARM64 - macos-11 - macos-12 - workflow_call: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'ARM64' - type: string - operating_system: - description: 'OS' - required: true - default: 'self-hosted-ARM64' - type: string - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - CODESIGN_IDENTITY: ${{ secrets.CODESIGN_IDENTITY }} - MAC_NOTARIZE_USER: ${{ secrets.MAC_NOTARIZE_USER }} - MAC_NOTARIZE_PASS: ${{ secrets.MAC_NOTARIZE_PASS }} - MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }} - MACOS_CERT_INSTALLER_P12: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} - MACOS_CERT_USER: ${{ secrets.MACOS_CERT_USER }} - MACOS_CERT_PASSPHRASE: ${{ secrets.MACOS_CERT_PASSPHRASE }} - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} - ENTERPRISE: ${{ inputs.enterprise }} - STAGING: ${{ inputs.staging }} jobs: - cura-installer-create: - runs-on: ${{ inputs.operating_system }} - - outputs: - INSTALLER_FILENAME: ${{ steps.filename.outputs.INSTALLER_FILENAME }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.11.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - - name: Install MacOS system requirements - run: brew install cmake autoconf automake ninja create-dmg - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Remove Macos keychain (Bash) - run: security delete-keychain signing_temp.keychain || true - - - name: Configure Macos keychain Developer Cert(Bash) - id: macos-keychain-developer-cert - uses: apple-actions/import-codesign-certs@v1 - with: - keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} - p12-file-base64: ${{ secrets.MACOS_CERT_P12 }} - p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} - - - name: Configure Macos keychain Installer Cert (Bash) - id: macos-keychain-installer-cert - uses: apple-actions/import-codesign-certs@v1 - with: - keychain-password: ${{ secrets.MACOS_KEYCHAIN_PASSWORD }} - create-keychain: false # keychain is created in previous use of action. - p12-file-base64: ${{ secrets.MACOS_CERT_INSTALLER_P12 }} - p12-password: ${{ secrets.MACOS_CERT_PASSPHRASE }} - - - name: Remove private Artifactory - run: conan remote remove cura-conan-private || true - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Use Conan download cache (Bash) - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" - - - name: Upload the Package(s) - if: ${{ inputs.operating_system != 'self-hosted' }} - run: | - conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (bash) - run: | - . ./cura_inst/bin/activate_github_actions_env.sh - . ./cura_inst/bin/activate_github_actions_version_env.sh - - - name: Unlock Macos keychain (Bash) - run: security unlock -p $TEMP_KEYCHAIN_PASSWORD signing_temp.keychain - env: - TEMP_KEYCHAIN_PASSWORD: ${{ steps.macos-keychain-developer-cert.outputs.keychain-password }} - - # FIXME: This is a workaround to ensure that we use and pack a shared library for OpenSSL 1.1.1l. We currently compile - # OpenSSL statically for CPython, but our Python Dependenies (such as PyQt6) require a shared library. - # Because Conan won't allow for building the same library with two different options (easily) we need to install it explicitly - # and do a manual copy to the VirtualEnv, such that Pyinstaller can find it. - - name: Install OpenSSL shared - run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - - - name: Copy OpenSSL shared (Bash) - run: | - cp ./openssl/lib/*.so* ./cura_inst/bin/ || true - cp ./openssl/lib/*.dylib* ./cura_inst/bin/ || true - - - name: Create the Cura dist - run: pyinstaller ./cura_inst/UltiMaker-Cura.spec - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" - installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-macos-${{ inputs.architecture }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - - name: Summarize the used Conan dependencies - shell: python - run: | - import os - import json - from pathlib import Path - - conan_install_info_path = Path("cura_inst/conan_install_info.json") - conan_info = {"installed": []} - if os.path.exists(conan_install_info_path): - with open(conan_install_info_path, "r") as f: - conan_info = json.load(f) - sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") - f.writelines("## Conan packages:\n") - for dep in sorted_deps: - f.writelines(f"`{dep}`\n") - - - name: Summarize the used Python modules - shell: python - run: | - import os - import pkg_resources - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("## Python modules:\n") - for package in pkg_resources.working_set: - f.writelines(f"`{package.key}/{package.version}`\n") - - - name: Create the Macos dmg (Bash) - run: python ../cura_inst/packaging/MacOS/build_macos.py --source_path ../cura_inst --dist_path . --cura_conan_version $CURA_CONAN_VERSION --filename "${{ steps.filename.outputs.INSTALLER_FILENAME }}" --build_dmg --build_pkg --app_name "$CURA_APP_NAME" - working-directory: dist - - - name: Upload the dmg - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-dmg - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.dmg - retention-days: 5 - - - name: Upload the pkg - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.filename.outputs.INSTALLER_FILENAME }}-pkg - path: | - dist/${{ steps.filename.outputs.INSTALLER_FILENAME }}.pkg - retention-days: 5 - - - name: Write the run info - shell: python - run: | - import os - with open("run_info.sh", "w") as f: - f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') - - - name: Upload the run info - uses: actions/upload-artifact@v3 - with: - name: macos-run-info - path: | - run_info.sh - retention-days: 5 - - - notify-export: - if: ${{ always() }} - needs: [ cura-installer-create ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main + macos-installer: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "Create the Cura distributions" - success_body: "Installers for ${{ inputs.cura_conan_version }}" - failure_title: "Failed to create the Cura distributions" - failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" - secrets: inherit + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + architecture: ${{ inputs.architecture }} + operating_system: ${{ inputs.operating_system }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/notify.yml b/.github/workflows/notify.yml deleted file mode 100644 index 370b54c78b..0000000000 --- a/.github/workflows/notify.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Get Conan Recipe Version - -on: - workflow_call: - inputs: - success: - required: true - type: boolean - - success_title: - required: true - type: string - - success_body: - required: true - type: string - - failure_title: - required: true - type: string - - failure_body: - required: true - type: string - - -jobs: - slackNotification: - name: Slack Notification - - runs-on: ubuntu-latest - - steps: - - name: Slack notify on-success - if: ${{ inputs.success }} - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_USERNAME: ${{ github.repository }} - SLACK_COLOR: green - SLACK_ICON: https://github.com/Ultimaker/Cura/blob/main/icons/cura-128.png?raw=true - SLACK_TITLE: ${{ inputs.success_title }} - SLACK_MESSAGE: ${{ inputs.success_body }} - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - - - name: Slack notify on-failure - if: ${{ !inputs.success }} - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_USERNAME: ${{ github.repository }} - SLACK_COLOR: red - SLACK_ICON: https://github.com/Ultimaker/Cura/blob/main/icons/cura-128.png?raw=true - SLACK_TITLE: ${{ inputs.failure_title }} - SLACK_MESSAGE: ${{ inputs.failure_body }} - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.github/workflows/printer-linter-pr-diagnose.yml b/.github/workflows/printer-linter-pr-diagnose.yml index 57c3732d81..ed51f8b2f8 100644 --- a/.github/workflows/printer-linter-pr-diagnose.yml +++ b/.github/workflows/printer-linter-pr-diagnose.yml @@ -5,6 +5,9 @@ on: path: - "resources/**" +permissions: + contents: read + jobs: printer-linter-diagnose: name: Printer linter PR diagnose @@ -18,6 +21,7 @@ jobs: - uses: technote-space/get-diff-action@v6 with: + DIFF_FILTER: AMRCD PATTERNS: | resources/+(extruders|definitions)/*.def.json resources/+(intent|quality|variants)/**/*.inst.cfg @@ -41,11 +45,15 @@ jobs: if: env.GIT_DIFF && !env.MATCHED_FILES run: python printer-linter/src/terminal.py --diagnose --report printer-linter-result/fixes.yml ${{ env.GIT_DIFF_FILTERED }} + - name: Check Deleted Files(s) + if: env.GIT_DIFF + run: python printer-linter/src/terminal.py --deleted --report printer-linter-result/comment.md ${{ env.GIT_DIFF_FILTERED }} + - name: Save PR metadata run: | echo ${{ github.event.number }} > printer-linter-result/pr-id.txt echo ${{ github.event.pull_request.head.repo.full_name }} > printer-linter-result/pr-head-repo.txt - echo ${{ github.event.pull_request.head.ref }} > printer-linter-result/pr-head-ref.txt + echo ${{ github.event.pull_request.head.sha }} > printer-linter-result/pr-head-sha.txt - uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/printer-linter-pr-post.yml b/.github/workflows/printer-linter-pr-post.yml index 81dbf96469..7b3dd152cb 100644 --- a/.github/workflows/printer-linter-pr-post.yml +++ b/.github/workflows/printer-linter-pr-post.yml @@ -6,76 +6,106 @@ on: types: [completed] jobs: - clang-tidy-results: + printer-linter-result: # Trigger the job only if the previous (insecure) workflow completed successfully if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest + permissions: + pull-requests: write steps: - name: Download analysis results - uses: actions/github-script@v3.1.0 + uses: actions/github-script@v7 with: script: | - let artifacts = await github.actions.listWorkflowRunArtifacts({ + const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ owner: context.repo.owner, repo: context.repo.repo, run_id: ${{github.event.workflow_run.id }}, }); - let matchArtifact = artifacts.data.artifacts.filter((artifact) => { + const matchArtifact = artifacts.data.artifacts.filter((artifact) => { return artifact.name == "printer-linter-result" })[0]; - let download = await github.actions.downloadArtifact({ + const download = await github.rest.actions.downloadArtifact({ owner: context.repo.owner, repo: context.repo.repo, artifact_id: matchArtifact.id, archive_format: "zip", }); - let fs = require("fs"); - fs.writeFileSync("${{github.workspace}}/printer-linter-result.zip", Buffer.from(download.data)); - - - name: Set environment variables - run: | - mkdir printer-linter-result - unzip printer-linter-result.zip -d printer-linter-result - echo "pr_id=$(cat printer-linter-result/pr-id.txt)" >> $GITHUB_ENV - echo "pr_head_repo=$(cat printer-linter-result/pr-head-repo.txt)" >> $GITHUB_ENV - echo "pr_head_ref=$(cat printer-linter-result/pr-head-ref.txt)" >> $GITHUB_ENV - - - uses: actions/checkout@v3 - with: - repository: ${{ env.pr_head_repo }} - ref: ${{ env.pr_head_ref }} - persist-credentials: false - - - name: Redownload analysis results - uses: actions/github-script@v3.1.0 - with: - script: | - let artifacts = await github.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: ${{github.event.workflow_run.id }}, - }); - let matchArtifact = artifacts.data.artifacts.filter((artifact) => { - return artifact.name == "printer-linter-result" - })[0]; - let download = await github.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: "zip", - }); - let fs = require("fs"); - fs.writeFileSync("${{github.workspace}}/printer-linter-result.zip", Buffer.from(download.data)); + const fs = require("fs"); + fs.writeFileSync("${{ github.workspace }}/printer-linter-result.zip", Buffer.from(download.data)); - name: Extract analysis results run: | mkdir printer-linter-result - unzip printer-linter-result.zip -d printer-linter-result + unzip -j printer-linter-result.zip -d printer-linter-result + + - name: Set PR details environment variables + uses: actions/github-script@v7 + with: + script: | + const assert = require("node:assert").strict; + const fs = require("fs"); + function exportVar(varName, fileName, regEx) { + const val = fs.readFileSync("${{ github.workspace }}/printer-linter-result/" + fileName, { + encoding: "ascii" + }).trimEnd(); + assert.ok(regEx.test(val), "Invalid value format for " + varName); + core.exportVariable(varName, val); + } + exportVar("PR_ID", "pr-id.txt", /^[0-9]+$/); + exportVar("PR_HEAD_REPO", "pr-head-repo.txt", /^[-./0-9A-Z_a-z]+$/); + exportVar("PR_HEAD_SHA", "pr-head-sha.txt", /^[0-9A-Fa-f]+$/); + fs.access("${{ github.workspace }}/printer-linter-result/comment.md", fs.constants.F_OK, (err) => { + if (err) { + core.exportVariable("commentFileExists", "false"); + } else { + core.exportVariable("commentFileExists", "true"); + } + }); + + - uses: actions/checkout@v4 + with: + repository: ${{ env.PR_HEAD_REPO }} + ref: ${{ env.PR_HEAD_SHA }} + persist-credentials: false + + - name: Redownload analysis results + uses: actions/github-script@v7 + with: + script: | + const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: ${{github.event.workflow_run.id }}, + }); + const matchArtifact = artifacts.data.artifacts.filter((artifact) => { + return artifact.name == "printer-linter-result" + })[0]; + const download = await github.rest.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: "zip", + }); + const fs = require("fs"); + fs.writeFileSync("${{ github.workspace }}/printer-linter-result.zip", Buffer.from(download.data)); + + - name: Extract analysis results + run: | + mkdir printer-linter-result + unzip -j printer-linter-result.zip -d printer-linter-result + + - name: Run PR Comments + if: env.commentFileExists == 'true' + uses: peter-evans/create-or-update-comment@v4 + with: + issue-number: ${{ env.PR_ID }} + body-path: 'printer-linter-result/comment.md' - name: Run clang-tidy-pr-comments action - uses: platisd/clang-tidy-pr-comments@bc0bb7da034a8317d54e7fe1e819159002f4cc40 + uses: platisd/clang-tidy-pr-comments@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} clang_tidy_fixes: printer-linter-result/fixes.yml - pull_request_id: ${{ env.pr_id }} + pull_request_id: ${{ env.PR_ID }} request_changes: true diff --git a/.github/workflows/process-pull-request.yml b/.github/workflows/process-pull-request.yml index 7fe3aedc96..45b3f8c915 100644 --- a/.github/workflows/process-pull-request.yml +++ b/.github/workflows/process-pull-request.yml @@ -1,15 +1,10 @@ name: process-pull-request on: - pull_request_target: - types: [opened, reopened, edited, synchronize, review_requested, ready_for_review, assigned] + pull_request_target: + types: [ opened, reopened, edited, review_requested, ready_for_review, assigned ] jobs: - add_label: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-ecosystem/action-add-labels@v1 - if: ${{ github.event.pull_request.head.repo.full_name != github.repository }} - with: - labels: 'PR: Community Contribution :crown:' \ No newline at end of file + add_label: + uses: ultimaker/cura-workflows/.github/workflows/process-pull-request.yml@main + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/release_notes.md.jinja b/.github/workflows/release_notes.md.jinja new file mode 100644 index 0000000000..e66eeca677 --- /dev/null +++ b/.github/workflows/release_notes.md.jinja @@ -0,0 +1,39 @@ +# Nightlies + +> :clock12: Created at: {{ timestamp }} + +| | | +|--------------:|--------------------------------------------------------------------------------------------| +| **Nightlies** | [![nightly {{ branch }}](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml/badge.svg{{ branch_specific }} +?event=schedule)](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml) | + +# Unit Test results + +| | | +|-------------------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Cura {{ branch }}** | [![unit-test](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml) | +| **CuraEngine {{ branch }}** | [![unit-test](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml) | +| **Uranium {{ branch }}** | [![unit-test](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml) | +| **CuraEngine GradualFlow 0.1** | [![unit-test](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml) | +| **synsepalum-dulcificum 0.1** | [![unit-test](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml) | +| **libSavitar** | [![unit-test](https://github.com/Ultimaker/libSavitar/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/libSavitar/actions/workflows/unit-test.yml) | +| **libnest2d** | [![unit-test](https://github.com/Ultimaker/libnest2d/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/libnest2d/actions/workflows/unit-test.yml) | + +# Conan packages + +| | | +|------------------------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Cura {{ branch }}** | [![conan-package](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml) | +| **CuraEngine {{ branch }}** | [![conan-package](https://github.com/Ultimaker/CuraEngine/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/conan-package.yml) | +| **Uranium {{ branch }}** | [![conan-package](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml) | +| **fdm_materials {{ branch }}** | [![conan-package](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml) | +| **cura-binary-data {{ branch }}** | [![conan-package](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml) | +| **CuraEngine GradualFlow 0.1** | [![conan-package](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml) | +| **synsepalum-dulcificum 0.1** | [![conan-package](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml) | +| **CuraEngine gRPC definitions 0.1** | [![conan-package](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml) | +| **libArcus** | [![conan-package](https://github.com/Ultimaker/libArcus/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libArcus/actions/workflows/conan-package.yml) | +| **pyArcus** | [![conan-package](https://github.com/Ultimaker/pyArcus/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pyArcus/actions/workflows/conan-package.yml) | +| **libSavitar** | [![conan-package](https://github.com/Ultimaker/libSavitar/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libSavitar/actions/workflows/conan-package.yml) | +| **pySavitar** | [![conan-package](https://github.com/Ultimaker/pySavitar/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pySavitar/actions/workflows/conan-package.yml) | +| **libnest2d** | [![conan-package](https://github.com/Ultimaker/libnest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libnest2d/actions/workflows/conan-package.yml) | +| **pynest2d** | [![conan-package](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml) | \ No newline at end of file diff --git a/.github/workflows/requirements-conan-package.txt b/.github/workflows/requirements-conan-package.txt index 9380d1cb98..215557e367 100644 --- a/.github/workflows/requirements-conan-package.txt +++ b/.github/workflows/requirements-conan-package.txt @@ -1,2 +1,2 @@ conan>=1.60.2,<2.0.0 -sip +sip<=6.7.12 diff --git a/.github/workflows/requirements-runner.txt b/.github/workflows/requirements-runner.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/.github/workflows/security_badge.yml b/.github/workflows/security_badge.yml index b3785a0b0e..5c037b442e 100644 --- a/.github/workflows/security_badge.yml +++ b/.github/workflows/security_badge.yml @@ -1,5 +1,5 @@ # NOTE: Best to keep all of these remarks in, they might prove useful in the future. -# This is basically just the standard one that is sugested on 'new workflow'. +# This is basically just the standard one that is suggested on 'new workflow'. name: Scorecard supply-chain security on: @@ -21,51 +21,42 @@ jobs: name: Scorecard analysis runs-on: ubuntu-latest permissions: - # Needed to upload the results to code-scanning dashboard. + # Needed for Code scanning upload security-events: write - # Needed to publish results and get a badge (see publish_results below). + # Needed for GitHub OIDC token if publish_results is true id-token: write - # Uncomment the permissions below if installing in a private repository. - # contents: read - # actions: read steps: - name: "Checkout code" - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - name: "Run analysis" - uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2 + uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 with: results_file: results.sarif results_format: sarif - # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: - # - you want to enable the Branch-Protection check on a *public* repository, or - # - you are installing Scorecard on a *private* repository - # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. - # repo_token: ${{ secrets.SCORECARD_TOKEN }} - - # Public repositories: - # - Publish results to OpenSSF REST API for easy access by consumers - # - Allows the repository to include the Scorecard badge. - # - See https://github.com/ossf/scorecard-action#publishing-results. - # For private repositories: - # - `publish_results` will always be set to `false`, regardless - # of the value entered here. + # Scorecard team runs a weekly scan of public GitHub repos, + # see https://github.com/ossf/scorecard#public-data. + # Setting `publish_results: true` helps us scale by leveraging your workflow to + # extract the results instead of relying on our own infrastructure to run scans. + # And it's free for you! publish_results: true - # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF - # format to the repository Actions tab. + # Upload the results as artifacts (optional). Commenting out will disable + # uploads of run results in SARIF format to the repository Actions tab. + # https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts - name: "Upload artifact" - uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: SARIF file path: results.sarif retention-days: 5 - # Upload the results to GitHub's code scanning dashboard. + # Upload the results to GitHub's code scanning dashboard (optional). + # Commenting out will disable upload of results to your repo's Code Scanning dashboard - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4 + uses: github/codeql-action/upload-sarif@83a02f7883b12e0e4e1a146174f5e2292a01e601 # v2.16.4 with: sarif_file: results.sarif diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index 36c1d5acfd..a8e9f26b8b 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -1,82 +1,14 @@ name: unit-test-post on: - workflow_run: - workflows: [ "unit-test" ] - types: [ completed ] + workflow_run: + workflows: [ "unit-test" ] + types: [ completed ] jobs: - publish-test-results: - if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - steps: - - name: Download analysis results - uses: actions/github-script@v3.1.0 - with: - script: | - let artifacts = await github.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: ${{github.event.workflow_run.id }}, - }); - let matchArtifact = artifacts.data.artifacts.filter((artifact) => { - return artifact.name == "test-result" - })[0]; - let download = await github.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: "zip", - }); - let fs = require("fs"); - fs.writeFileSync("${{github.workspace}}/test-result.zip", Buffer.from(download.data)); - - - name: Set environment variables - run: | - mkdir pr_env - unzip test-result.zip -d pr_env - echo "pr_id=$(cat pr_env/pr-id.txt)" >> $GITHUB_ENV - echo "pr_head_repo=$(cat pr_env/pr-head-repo.txt)" >> $GITHUB_ENV - echo "pr_head_ref=$(cat pr_env/pr-head-ref.txt)" >> $GITHUB_ENV - - - uses: actions/checkout@v3 - with: - repository: ${{ env.pr_head_repo }} - ref: ${{ env.pr_head_ref }} - persist-credentials: false - - - name: Redownload analysis results - uses: actions/github-script@v3.1.0 - with: - script: | - let artifacts = await github.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: ${{github.event.workflow_run.id }}, - }); - let matchArtifact = artifacts.data.artifacts.filter((artifact) => { - return artifact.name == "test-result" - })[0]; - let download = await github.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: "zip", - }); - let fs = require("fs"); - fs.writeFileSync("${{github.workspace}}/test-result.zip", Buffer.from(download.data)); - - - name: Extract analysis results - run: | - mkdir -p tests - unzip test-result.zip -d tests - - - name: Publish Unit Test Results - id: test-results - uses: EnricoMi/publish-unit-test-result-action@v1 - with: - files: "tests/**/*.xml" - - - name: Conclusion - run: echo "Conclusion is ${{ steps.test-results.outputs.json && fromJSON( steps.test-results.outputs.json ).conclusion }}" + publish-test-results: + uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@main + with: + event: ${{ github.event.workflow_run.event }} + conclusion: ${{ github.event.workflow_run.conclusion }} + secrets: inherit diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 8321f42a23..2165540889 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -1,4 +1,3 @@ ---- name: unit-test on: @@ -9,23 +8,18 @@ on: - 'cura/**' - 'icons/**' - 'tests/**' - - 'packaging/**' - - '.github/workflows/conan-*.yml' - '.github/workflows/unit-test.yml' - - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' + - '.github/workflows/requirements-runner.txt' - 'requirements*.txt' - 'conanfile.py' - 'conandata.yml' - - 'GitVersion.yml' - '*.jinja' branches: - main - 'CURA-*' - - '[1-9]+.[0-9]+' - tags: - - '[0-9]+.[0-9]+.[0-9]+' - - '[0-9]+.[0-9]+-beta' + - 'PP-*' + - '[0-9]+.[0-9]+' + pull_request: paths: - 'plugins/**' @@ -33,134 +27,36 @@ on: - 'cura/**' - 'icons/**' - 'tests/**' - - 'packaging/**' - - '.github/workflows/conan-*.yml' - '.github/workflows/unit-test.yml' - - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' + - '.github/workflows/requirements-runner.txt' - 'requirements*.txt' - 'conanfile.py' - 'conandata.yml' - - 'GitVersion.yml' - '*.jinja' branches: - main - - '[1-9]+.[0-9]+' - tags: - - '[0-9]+.[0-9]+.[0-9]+' - - '[0-9]+.[0-9]+-beta' - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - CONAN_LOGIN_USERNAME_CURA_CE: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA_CE: ${{ secrets.CONAN_PASS }} - CONAN_LOG_RUN_TO_OUTPUT: 1 - CONAN_LOGGING_LEVEL: info - CONAN_NON_INTERACTIVE: 1 + - '[0-9]+.[0-9]+' permissions: contents: read +env: + CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} + CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} + jobs: conan-recipe-version: - uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main with: project_name: cura testing: - runs-on: ubuntu-22.04 + uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@main needs: [ conan-recipe-version ] - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 2 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.11.x' - architecture: 'x64' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements and Create default Conan profile - run: pip install -r requirements-conan-package.txt - working-directory: .github/workflows/ - - - name: Use Conan download cache (Bash) - if: ${{ runner.os != 'Windows' }} - run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - - - name: Cache Conan local repository packages (Bash) - uses: actions/cache@v3 - if: ${{ runner.os != 'Windows' }} - with: - path: | - $HOME/.conan/data - $HOME/.conan/conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-unit-cache - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config -y - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Get Conan profile - run: conan profile new default --detect --force - - - name: Install dependencies - run: conan install . ${{ needs.conan-recipe-version.outputs.recipe_id_full }} --build=missing --update -o cura:devtools=True -g VirtualPythonEnv -if venv - - - name: Upload the Dependency package(s) - run: conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (bash) - if: ${{ runner.os != 'Windows' }} - run: | - . ./venv/bin/activate_github_actions_env.sh - - - name: Run Unit Test - id: run-test - run: | - pytest --junitxml=junit_cura.xml - working-directory: tests - - - name: Save PR metadata - if: always() - run: | - echo ${{ github.event.number }} > pr-id.txt - echo ${{ github.event.pull_request.head.repo.full_name }} > pr-head-repo.txt - echo ${{ github.event.pull_request.head.ref }} > pr-head-ref.txt - working-directory: tests - - - name: Upload Test Results - if: always() - uses: actions/upload-artifact@v3 - with: - name: test-result - path: | - tests/**/*.xml - tests/pr-id.txt - tests/pr-head-repo.txt - tests/pr-head-ref.txt + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False --options "*:enable_sentry=False"' + unit_test_cmd: 'pytest --junitxml=junit_cura.xml' + unit_test_dir: 'tests' + conan_generator_dir: './venv/bin' + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9c9775cae7..09f972bb1a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -1,5 +1,5 @@ name: Windows Installer -run-name: ${{ inputs.cura_conan_version }} for Windows-${{ inputs.architecture }} by @${{ github.actor }} +run-name: ${{ inputs.cura_conan_version }} by @${{ github.actor }} on: workflow_dispatch: @@ -34,254 +34,20 @@ on: operating_system: description: 'OS' required: true - default: 'windows-2022' + default: 'self-hosted-Windows-X64' type: choice options: + - self-hosted-Windows-X64 - windows-2022 - workflow_call: - inputs: - cura_conan_version: - description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - description: 'Conan args: eq.: --require-override' - default: '' - required: false - type: string - enterprise: - description: 'Build Cura as an Enterprise edition' - default: false - required: true - type: boolean - staging: - description: 'Use staging API' - default: false - required: true - type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: string - operating_system: - description: 'OS' - required: true - default: 'windows-2022' - type: string - -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - WIN_CERT_INSTALLER_CER: ${{ secrets.WIN_CERT_INSTALLER_CER }} - WIN_CERT_INSTALLER_CER_PASS: ${{ secrets.WIN_CERT_INSTALLER_CER_PASS }} - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version }} - ENTERPRISE: ${{ inputs.enterprise }} - STAGING: ${{ inputs.staging }} jobs: - cura-installer-create: - runs-on: ${{ inputs.operating_system }} - - outputs: - INSTALLER_FILENAME: ${{ steps.filename.outputs.INSTALLER_FILENAME }} - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: '3.10.x' - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - - name: Cache Conan local repository packages (Powershell) - uses: actions/cache@v3 - with: - path: | - C:\Users\runneradmin\.conan\data - C:\.conan - C:\Users\runneradmin\.conan\conan_download_cache - key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: Use Conan download cache (Powershell) - run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - - - name: Create the Packages (Powershell) - run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json" - - - name: Upload the Package(s) - if: always() - run: | - conan upload "*" -r cura --all -c - - - name: Set Environment variables for Cura (Powershell) - run: | - echo "${Env:WIX}\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - .\cura_inst\Scripts\activate_github_actions_env.ps1 - .\cura_inst\Scripts\activate_github_actions_version_env.ps1 - - - name: Install OpenSSL shared - run: conan install openssl/1.1.1l@_/_ --build=missing --update -o openssl:shared=True -g deploy - - - name: Copy OpenSSL shared (Powershell) - run: | - cp openssl/bin/*.dll ./cura_inst/Scripts/ - cp openssl/lib/*.lib ./cura_inst/Lib/ - - - name: Create the Cura dist - run: pyinstaller ./cura_inst/UltiMaker-Cura.spec - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - enterprise = "-Enterprise" if "${{ inputs.enterprise }}" == "true" else "" - installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-win64-${{ inputs.architecture }}" - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - - name: Summarize the used Conan dependencies - shell: python - run: | - import os - import json - from pathlib import Path - - conan_install_info_path = Path("cura_inst/conan_install_info.json") - conan_info = {"installed": []} - if os.path.exists(conan_install_info_path): - with open(conan_install_info_path, "r") as f: - conan_info = json.load(f) - sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") - f.writelines("## Conan packages:\n") - for dep in sorted_deps: - f.writelines(f"`{dep}`\n") - - - name: Summarize the used Python modules - shell: python - run: | - import os - import pkg_resources - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) - f.writelines("## Python modules:\n") - for package in pkg_resources.working_set: - f.writelines(f"`{package.key}/{package.version}`\n") - - - name: Create PFX certificate from BASE64_PFX_CONTENT secret - id: create-pfx - env: - PFX_CONTENT: ${{ secrets.WIN_CERT_INSTALLER_CER }} - run: | - $pfxPath = Join-Path -Path $env:RUNNER_TEMP -ChildPath "cert.pfx"; - $encodedBytes = [System.Convert]::FromBase64String($env:PFX_CONTENT); - Set-Content $pfxPath -Value $encodedBytes -AsByteStream; - echo "PFX_PATH=$pfxPath" >> $env:GITHUB_OUTPUT; - - - name: Create the Windows msi installer (Powershell) - run: | - python ..\cura_inst\packaging\msi\create_windows_msi.py ..\cura_inst .\UltiMaker-Cura "${{steps.filename.outputs.INSTALLER_FILENAME }}.msi" "$Env:CURA_APP_NAME" - working-directory: dist - - - name: Sign the Windows msi installer (Powershell) - env: - PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }} - run: | - & "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" sign /f $Env:PFX_PATH /p "$Env:WIN_CERT_INSTALLER_CER_PASS" /fd SHA256 /t http://timestamp.digicert.com "${{steps.filename.outputs.INSTALLER_FILENAME }}.msi" - working-directory: dist - - - name: Create the Windows exe installer (Powershell) - run: | - python ..\cura_inst\packaging\NSIS\create_windows_installer.py ../cura_inst . "${{steps.filename.outputs.INSTALLER_FILENAME }}.exe" - working-directory: dist - - - name: Sign the Windows exe installer (Powershell) - env: - PFX_PATH: ${{ steps.create-pfx.outputs.PFX_PATH }} - run: | - & "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" sign /f $Env:PFX_PATH /p "$Env:WIN_CERT_INSTALLER_CER_PASS" /fd SHA256 /t http://timestamp.digicert.com "${{steps.filename.outputs.INSTALLER_FILENAME }}.exe" - working-directory: dist - - - name: Upload the msi - uses: actions/upload-artifact@v3 - with: - name: ${{steps.filename.outputs.INSTALLER_FILENAME }}-msi - path: | - dist/${{steps.filename.outputs.INSTALLER_FILENAME }}.msi - retention-days: 5 - - - name: Upload the exe - uses: actions/upload-artifact@v3 - with: - name: ${{steps.filename.outputs.INSTALLER_FILENAME }}-exe - path: | - dist/${{steps.filename.outputs.INSTALLER_FILENAME }}.exe - retention-days: 5 - - # NOTE: The extension is .sh, since this isn't going to build-environment, so not on the Win build image. - - name: Write the run info - shell: python - run: | - import os - with open("run_info.sh", "w") as f: - f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') - - # NOTE: The extension is .sh, since this isn't going to build-environment, so not on the Win build image. - - name: Upload the run info - uses: actions/upload-artifact@v3 - with: - name: windows-run-info - path: | - run_info.sh - retention-days: 5 - - notify-export: - if: ${{ always() }} - needs: [ cura-installer-create ] - - uses: ultimaker/cura/.github/workflows/notify.yml@main + windows-installer: + uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main with: - success: ${{ contains(join(needs.*.result, ','), 'success') }} - success_title: "Create the Cura distributions" - success_body: "Installers for ${{ inputs.cura_conan_version }}" - failure_title: "Failed to create the Cura distributions" - failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}" - secrets: inherit + cura_conan_version: ${{ inputs.cura_conan_version }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} + architecture: ${{ inputs.architecture }} + operating_system: ${{ inputs.operating_system }} + secrets: inherit \ No newline at end of file diff --git a/.gitignore b/.gitignore index f1a72d342e..0290869b41 100644 --- a/.gitignore +++ b/.gitignore @@ -101,7 +101,6 @@ graph_info.json Ultimaker-Cura.spec .run/ /printer-linter/src/printerlinter.egg-info/ -/resources/qml/Dialogs/AboutDialogVersionsList.qml /plugins/CuraEngineGradualFlow /resources/bundled_packages/bundled_*.json curaengine_plugin_gradual_flow diff --git a/.printer-linter b/.printer-linter index 3a42a5c033..45b1f2c9e0 100644 --- a/.printer-linter +++ b/.printer-linter @@ -3,6 +3,10 @@ checks: diagnostic-mesh-file-size: true diagnostic-definition-redundant-override: true diagnostic-resources-macos-app-directory-name: true + diagnostic-incorrect-formula: true + diagnostic-resource-file-deleted: true + diagnostic-material-temperature-defined: true + diagnostic-long-profile-names: true fixes: diagnostic-definition-redundant-override: true format: diff --git a/AboutDialogVersionsList.qml.jinja b/AboutDialogVersionsList.qml.jinja deleted file mode 100644 index 0503469660..0000000000 --- a/AboutDialogVersionsList.qml.jinja +++ /dev/null @@ -1,61 +0,0 @@ -import QtQuick 2.2 -import QtQuick.Controls 2.9 - -import UM 1.6 as UM -import Cura 1.5 as Cura - - -ListView -{ - id: projectBuildInfoList - visible: false - anchors.top: creditsNotes.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - width: parent.width - height: base.height - y - (2 * UM.Theme.getSize("default_margin").height + closeButton.height) - - ScrollBar.vertical: UM.ScrollBar - { - id: projectBuildInfoListScrollBar - } - - delegate: Row - { - spacing: UM.Theme.getSize("narrow_margin").width - UM.Label - { - text: (model.name) - width: (projectBuildInfoList.width* 0.4) | 0 - elide: Text.ElideRight - } - UM.Label - { - text: (model.version) - width: (projectBuildInfoList.width *0.6) | 0 - elide: Text.ElideRight - } - - } - model: ListModel - { - id: developerInfo - } - Component.onCompleted: - { - var conan_installs = {{ conan_installs }}; - var python_installs = {{ python_installs }}; - developerInfo.append({ name : "

Conan Installs

", version : '' }); - for (var n in conan_installs) - { - developerInfo.append({ name : conan_installs[n][0], version : conan_installs[n][1] }); - } - developerInfo.append({ name : '', version : '' }); - developerInfo.append({ name : "

Python Installs

", version : '' }); - for (var n in python_installs) - { - developerInfo.append({ name : python_installs[n][0], version : python_installs[n][1] }); - } - - } -} - diff --git a/CuraVersion.py.jinja b/CuraVersion.py.jinja index 87ef7d205d..515293b8af 100644 --- a/CuraVersion.py.jinja +++ b/CuraVersion.py.jinja @@ -1,4 +1,4 @@ -# Copyright (c) 2022 UltiMaker +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. CuraAppName = "{{ cura_app_name }}" @@ -12,3 +12,6 @@ CuraCloudAccountAPIRoot = "{{ cura_cloud_account_api_root }}" CuraMarketplaceRoot = "{{ cura_marketplace_root }}" CuraDigitalFactoryURL = "{{ cura_digital_factory_url }}" CuraLatestURL = "{{ cura_latest_url }}" + +ConanInstalls = {{ conan_installs }} +PythonInstalls = {{ python_installs }} diff --git a/README.md b/README.md index 26b9ef06f9..37978a30f9 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ [![Badge Test]][Test]    [![Badge Conan]][Conan]    -![Badge Downloads] +[![Badge Downloads]][Downloads]

@@ -26,7 +26,9 @@ *With hundreds of settings & community-managed print profiles,*
*Ultimaker Cura is sure to lead your next project to a success.* -
+**Contribute Printer Profiles?** -- Please [look here](https://github.com/Ultimaker/Cura/wiki/Adding-new-machine-profiles-to-Cura) first.
+**Contribute Translations?** -- Please [look here](https://github.com/Ultimaker/Cura/wiki/Translating-Cura) first. +
[![Button Building]][Building]    @@ -67,6 +69,7 @@ [Issues]: https://github.com/Ultimaker/Cura/issues [Conan]: https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml [Test]: https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml +[Downloads]: https://github.com/Ultimaker/Cura/releases/latest [License]: LICENSE [Report]: docs/Report.md @@ -81,8 +84,8 @@ [Badge License]: https://img.shields.io/badge/License-LGPL3-336887.svg?style=for-the-badge&labelColor=458cb5&logoColor=white&logo=GNU [Badge Closed]: https://img.shields.io/github/issues-closed/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=629944&color=446a30&logo=AddThis [Badge Issues]: https://img.shields.io/github/issues/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=c34360&color=933349&logo=AdBlock -[Badge Conan]: https://img.shields.io/github/workflow/status/Ultimaker/Cura/conan-package?style=for-the-badge&logoColor=white&labelColor=6185aa&color=4c6987&logo=Conan&label=Conan%20Package -[Badge Test]: https://img.shields.io/github/workflow/status/Ultimaker/Cura/unit-test?style=for-the-badge&logoColor=white&labelColor=4a999d&color=346c6e&logo=Codacy&label=Unit%20Test +[Badge Conan]: https://img.shields.io/github/actions/workflow/status/Ultimaker/Cura/conan-package.yml?branch=main&style=for-the-badge&logoColor=white&labelColor=6185aa&color=4c6987&logo=Conan&label=Conan%20Package +[Badge Test]: https://img.shields.io/github/actions/workflow/status/Ultimaker/Cura/unit-test.yml?branch=main&style=for-the-badge&logoColor=white&labelColor=4a999d&color=346c6e&logo=Codacy&label=Unit%20Test [Badge Size]: https://img.shields.io/github/repo-size/ultimaker/cura?style=for-the-badge&logoColor=white&labelColor=715a97&color=584674&logo=GoogleAnalytics [Badge Downloads]: https://img.shields.io/github/downloads-pre/Ultimaker/Cura/latest/total?style=for-the-badge diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index 3d540d3b8f..2dce96282e 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -55,7 +55,8 @@ exe = EXE( target_arch={{ target_arch }}, codesign_identity=os.getenv('CODESIGN_IDENTITY', None), entitlements_file={{ entitlements_file }}, - icon={{ icon }} + icon={{ icon }}, + contents_directory='.' ) coll = COLLECT( @@ -70,188 +71,7 @@ coll = COLLECT( ) {% if macos == true %} -# PyInstaller seems to copy everything in the resource folder for the MacOS, this causes issues with codesigning and notarizing -# The folder structure should adhere to the one specified in Table 2-5 -# https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW1 -# The class below is basically ducktyping the BUNDLE class of PyInstaller and using our own `assemble` method for more fine-grain and specific -# control. Some code of the method below is copied from: -# https://github.com/pyinstaller/pyinstaller/blob/22d1d2a5378228744cc95f14904dae1664df32c4/PyInstaller/building/osx.py#L115 -#----------------------------------------------------------------------------- -# Copyright (c) 2005-2022, PyInstaller Development Team. -# -# Distributed under the terms of the GNU General Public License (version 2 -# or later) with exception for distributing the bootloader. -# -# The full license is in the file COPYING.txt, distributed with this software. -# -# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception) -#----------------------------------------------------------------------------- - -import plistlib -import shutil -import PyInstaller.utils.osx as osxutils -from pathlib import Path -from PyInstaller.building.osx import BUNDLE -from PyInstaller.building.utils import (_check_path_overlap, _rmtree, add_suffix_to_extension, checkCache) -from PyInstaller.building.datastruct import logger -from PyInstaller.building.icon import normalize_icon_type - - -class UMBUNDLE(BUNDLE): - def assemble(self): - from PyInstaller.config import CONF - - if _check_path_overlap(self.name) and os.path.isdir(self.name): - _rmtree(self.name) - logger.info("Building BUNDLE %s", self.tocbasename) - - # Create a minimal Mac bundle structure. - macos_path = Path(self.name, "Contents", "MacOS") - resources_path = Path(self.name, "Contents", "Resources") - frameworks_path = Path(self.name, "Contents", "Frameworks") - os.makedirs(macos_path) - os.makedirs(resources_path) - os.makedirs(frameworks_path) - - # Makes sure the icon exists and attempts to convert to the proper format if applicable - self.icon = normalize_icon_type(self.icon, ("icns",), "icns", CONF["workpath"]) - - # Ensure icon path is absolute - self.icon = os.path.abspath(self.icon) - - # Copy icns icon to Resources directory. - shutil.copy(self.icon, os.path.join(self.name, 'Contents', 'Resources')) - - # Key/values for a minimal Info.plist file - info_plist_dict = { - "CFBundleDisplayName": self.appname, - "CFBundleName": self.appname, - - # Required by 'codesign' utility. - # The value for CFBundleIdentifier is used as the default unique name of your program for Code Signing - # purposes. It even identifies the APP for access to restricted OS X areas like Keychain. - # - # The identifier used for signing must be globally unique. The usual form for this identifier is a - # hierarchical name in reverse DNS notation, starting with the toplevel domain, followed by the company - # name, followed by the department within the company, and ending with the product name. Usually in the - # form: com.mycompany.department.appname - # CLI option --osx-bundle-identifier sets this value. - "CFBundleIdentifier": self.bundle_identifier, - "CFBundleExecutable": os.path.basename(self.exename), - "CFBundleIconFile": os.path.basename(self.icon), - "CFBundleInfoDictionaryVersion": "6.0", - "CFBundlePackageType": "APPL", - "CFBundleVersionString": self.version, - "CFBundleShortVersionString": self.version, - } - - # Set some default values. But they still can be overwritten by the user. - if self.console: - # Setting EXE console=True implies LSBackgroundOnly=True. - info_plist_dict['LSBackgroundOnly'] = True - else: - # Let's use high resolution by default. - info_plist_dict['NSHighResolutionCapable'] = True - - # Merge info_plist settings from spec file - if isinstance(self.info_plist, dict) and self.info_plist: - info_plist_dict.update(self.info_plist) - - plist_filename = os.path.join(self.name, "Contents", "Info.plist") - with open(plist_filename, "wb") as plist_fh: - plistlib.dump(info_plist_dict, plist_fh) - - links = [] - _QT_BASE_PATH = {'PySide2', 'PySide6', 'PyQt5', 'PyQt6', 'PySide6'} - for inm, fnm, typ in self.toc: - # Adjust name for extensions, if applicable - inm, fnm, typ = add_suffix_to_extension(inm, fnm, typ) - inm = Path(inm) - fnm = Path(fnm) - # Copy files from cache. This ensures that are used files with relative paths to dynamic library - # dependencies (@executable_path) - if typ in ('EXTENSION', 'BINARY') or (typ == 'DATA' and inm.suffix == '.so'): - if any(['.' in p for p in inm.parent.parts]): - inm = Path(inm.name) - fnm = Path(checkCache( - str(fnm), - strip = self.strip, - upx = self.upx, - upx_exclude = self.upx_exclude, - dist_nm = str(inm), - target_arch = self.target_arch, - codesign_identity = self.codesign_identity, - entitlements_file = self.entitlements_file, - strict_arch_validation = (typ == 'EXTENSION'), - )) - frame_dst = frameworks_path.joinpath(inm) - if not frame_dst.exists(): - if frame_dst.is_dir(): - os.makedirs(frame_dst, exist_ok = True) - else: - os.makedirs(frame_dst.parent, exist_ok = True) - shutil.copy(fnm, frame_dst, follow_symlinks = True) - macos_dst = macos_path.joinpath(inm) - if not macos_dst.exists(): - if macos_dst.is_dir(): - os.makedirs(macos_dst, exist_ok = True) - else: - os.makedirs(macos_dst.parent, exist_ok = True) - - # Create relative symlink to the framework - symlink_to = Path(*[".." for p in macos_dst.relative_to(macos_path).parts], "Frameworks").joinpath( - frame_dst.relative_to(frameworks_path)) - try: - macos_dst.symlink_to(symlink_to) - except FileExistsError: - pass - else: - if typ == 'DATA': - if any(['.' in p for p in inm.parent.parts]) or inm.suffix == '.so': - # Skip info dist egg and some not needed folders in tcl and tk, since they all contain dots in their files - logger.warning(f"Skipping DATA file {inm}") - continue - res_dst = resources_path.joinpath(inm) - if not res_dst.exists(): - if res_dst.is_dir(): - os.makedirs(res_dst, exist_ok = True) - else: - os.makedirs(res_dst.parent, exist_ok = True) - shutil.copy(fnm, res_dst, follow_symlinks = True) - macos_dst = macos_path.joinpath(inm) - if not macos_dst.exists(): - if macos_dst.is_dir(): - os.makedirs(macos_dst, exist_ok = True) - else: - os.makedirs(macos_dst.parent, exist_ok = True) - - # Create relative symlink to the resource - symlink_to = Path(*[".." for p in macos_dst.relative_to(macos_path).parts], "Resources").joinpath( - res_dst.relative_to(resources_path)) - try: - macos_dst.symlink_to(symlink_to) - except FileExistsError: - pass - else: - macos_dst = macos_path.joinpath(inm) - if not macos_dst.exists(): - if macos_dst.is_dir(): - os.makedirs(macos_dst, exist_ok = True) - else: - os.makedirs(macos_dst.parent, exist_ok = True) - shutil.copy(fnm, macos_dst, follow_symlinks = True) - - # Sign the bundle - logger.info('Signing the BUNDLE...') - try: - osxutils.sign_binary(self.name, self.codesign_identity, self.entitlements_file, deep = True) - except Exception as e: - logger.warning(f"Error while signing the bundle: {e}") - logger.warning("You will need to sign the bundle manually!") - - logger.info(f"Building BUNDLE {self.tocbasename} completed successfully.") - -app = UMBUNDLE( +app = BUNDLE( coll, name='{{ display_name }}.app', icon={{ icon }}, @@ -266,10 +86,15 @@ app = UMBUNDLE( 'CFBundlePackageType': 'APPL', 'CFBundleVersionString': {{ version }}, 'CFBundleShortVersionString': {{ short_version }}, + 'CFBundleURLTypes': [{ + 'CFBundleURLName': '{{ display_name }}', + 'CFBundleURLSchemes': ['cura', 'slicer'], + }], 'CFBundleDocumentTypes': [{ - 'CFBundleTypeRole': 'Viewer', - 'CFBundleTypeExtensions': ['*'], - 'CFBundleTypeName': 'Model Files', - }] - }, -){% endif %} + 'CFBundleTypeRole': 'Viewer', + 'CFBundleTypeExtensions': ['stl', 'obj', '3mf', 'gcode', 'ufp'], + 'CFBundleTypeName': 'Model Files', + }] + }, +) +{% endif %} diff --git a/conandata.yml b/conandata.yml index c5ca663f91..89ceba3d30 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,3 +1,19 @@ +version: "5.8.0-alpha.0" +requirements: + - "cura_resources/(latest)@ultimaker/testing" + - "uranium/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/testing" + - "cura_binary_data/(latest)@ultimaker/testing" + - "fdm_materials/(latest)@ultimaker/testing" + - "curaengine_plugin_gradual_flow/0.1.0-beta.3" + - "dulcificum/latest@ultimaker/testing" + - "pysavitar/5.3.0" + - "pynest2d/5.3.0" + - "curaengine_grpc_definitions/0.2.0" + - "native_cad_plugin/2.0.0" +requirements_internal: + - "fdm_materials/(latest)@internal/testing" + - "cura_private_data/(latest)@internal/testing" urls: default: cloud_api_root: "https://api.ultimaker.com" @@ -27,10 +43,22 @@ pyinstaller: package: "curaengine_plugin_gradual_flow" src: "res/bundled_packages" dst: "share/cura/resources/bundled_packages" + native_cad_plugin: + package: "native_cad_plugin" + src: "res/plugins/NativeCADplugin" + dst: "share/cura/plugins/NativeCADplugin" + native_cad_plugin_bundled: + package: "native_cad_plugin" + src: "res/bundled_packages" + dst: "share/cura/resources/bundled_packages" cura_resources: package: "cura" src: "resources" dst: "share/cura/resources" + cura_shared_resources: + package: "cura_resources" + src: "res" + dst: "share/cura/resources" cura_private_data: package: "cura_private_data" src: "res" @@ -86,6 +114,7 @@ pyinstaller: hiddenimports: - "pySavitar" - "pyArcus" + - "pyDulcificum" - "pynest2d" - "PyQt6" - "PyQt6.QtNetwork" @@ -103,7 +132,6 @@ pyinstaller: - "sqlite3" - "trimesh" - "win32ctypes" - - "PyQt6" - "PyQt6.QtNetwork" - "PyQt6.sip" - "stl" @@ -145,6 +173,10 @@ pycharm_targets: module_name: Cura name: pytest in TestGCodeListDecorator.py script_name: tests/TestGCodeListDecorator.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestHitChecker.py + script_name: tests/TestHitChecker.py - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja module_name: Cura name: pytest in TestIntentManager.py @@ -173,6 +205,10 @@ pycharm_targets: module_name: Cura name: pytest in TestPrintInformation.py script_name: tests/TestPrintInformation.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestPrintOrderManager.py + script_name: tests/TestPrintOrderManager.py - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja module_name: Cura name: pytest in TestProfileRequirements.py diff --git a/conanfile.py b/conanfile.py index a1727b9dae..221d4ea288 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,10 +1,11 @@ import os +from io import StringIO from pathlib import Path from jinja2 import Template from conan import ConanFile -from conan.tools.files import copy, rmdir, save, mkdir, rm +from conan.tools.files import copy, rmdir, save, mkdir, rm, update_conandata from conan.tools.microsoft import unix_path from conan.tools.env import VirtualRunEnv, Environment, VirtualBuildEnv from conan.tools.scm import Version @@ -25,7 +26,7 @@ class CuraConan(ConanFile): settings = "os", "compiler", "build_type", "arch" # FIXME: Remove specific branch once merged to main - python_requires = "translationextractor/[>=2.1.1]@ultimaker/stable" + python_requires = "translationextractor/[>=2.2.0]@ultimaker/stable" options = { "enterprise": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string @@ -34,7 +35,8 @@ class CuraConan(ConanFile): "cloud_api_version": "ANY", "display_name": "ANY", # TODO: should this be an option?? "cura_debug_mode": [True, False], # FIXME: Use profiles - "internal": [True, False] + "internal": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string + "enable_i18n": [True, False], } default_options = { "enterprise": "False", @@ -43,12 +45,17 @@ class CuraConan(ConanFile): "cloud_api_version": "1", "display_name": "UltiMaker Cura", "cura_debug_mode": False, # Not yet implemented - "internal": False, + "internal": "False", + "enable_i18n": False, } def set_version(self): if not self.version: - self.version = "5.6.0-alpha" + self.version = self.conan_data["version"] + + @property + def _i18n_options(self): + return self.conf.get("user.i18n:options", default = {"extract": True, "build": True}, check_type = dict) @property def _pycharm_targets(self): @@ -65,6 +72,8 @@ class CuraConan(ConanFile): self._cura_env = Environment() self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) + if not self.in_local_cache: + self._cura_env.define("CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) if self.settings.os == "Linux": self._cura_env.define("QT_QPA_FONTDIR", "/usr/share/fonts") @@ -76,6 +85,10 @@ class CuraConan(ConanFile): def _enterprise(self): return self.options.enterprise in ["True", 'true'] + @property + def _internal(self): + return self.options.internal in ["True", 'true'] + @property def _app_name(self): if self._enterprise: @@ -137,36 +150,43 @@ class CuraConan(ConanFile): return "'x86_64'" return "None" - def _generate_about_versions(self, location): - with open(os.path.join(self.recipe_folder, "AboutDialogVersionsList.qml.jinja"), "r") as f: - cura_version_py = Template(f.read()) + def _conan_installs(self): + self.output.info("Collecting conan installs") + conan_installs = {} - conan_installs = [] - python_installs = [] + # list of conan installs + for dependency in self.dependencies.host.values(): + conan_installs[dependency.ref.name] = { + "version": dependency.ref.version, + "revision": dependency.ref.revision + } + return conan_installs - # list of conan installs - for _, dependency in self.dependencies.host.items(): - conan_installs.append([dependency.ref.name,dependency.ref.version]) + def _python_installs(self): + self.output.info("Collecting python installs") + python_installs = {} + + # list of python installs + run_env = VirtualRunEnv(self) + env = run_env.environment() + env.prepend_path("PYTHONPATH", str(self._site_packages.as_posix())) + venv_vars = env.vars(self, scope = "run") - #list of python installs outer = '"' if self.settings.os == "Windows" else "'" inner = "'" if self.settings.os == "Windows" else '"' - python_ins_cmd = f"python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}" - from six import StringIO buffer = StringIO() - self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer) + with venv_vars.apply(): + self.run(f"""python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}""", + env = "conanrun", + output = buffer) packages = str(buffer.getvalue()).split("-----------------\n") - package = packages[1].strip('\r\n').split(";") - for pack in package: - python_installs.append(pack.split(",")) - - with open(os.path.join(location, "AboutDialogVersionsList.qml"), "w") as f: - f.write(cura_version_py.render( - conan_installs = conan_installs, - python_installs = python_installs - )) + packages = packages[1].strip('\r\n').split(";") + for package in packages: + name, version = package.split(",") + python_installs[name] = {"version": version} + return python_installs def _generate_cura_version(self, location): with open(os.path.join(self.recipe_folder, "CuraVersion.py.jinja"), "r") as f: @@ -177,7 +197,7 @@ class CuraConan(ConanFile): cura_version = Version(self.conf.get("user.cura:version", default = self.version, check_type = str)) pre_tag = f"-{cura_version.pre}" if cura_version.pre else "" build_tag = f"+{cura_version.build}" if cura_version.build else "" - internal_tag = f"+internal" if self.options.internal else "" + internal_tag = f"+internal" if self._internal else "" cura_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}{pre_tag}{build_tag}{internal_tag}" with open(os.path.join(location, "CuraVersion.py"), "w") as f: @@ -192,13 +212,16 @@ class CuraConan(ConanFile): cura_cloud_account_api_root = self.conan_data["urls"][self._urls]["cloud_account_api_root"], cura_marketplace_root = self.conan_data["urls"][self._urls]["marketplace_root"], cura_digital_factory_url = self.conan_data["urls"][self._urls]["digital_factory_url"], - cura_latest_url = self.conan_data["urls"][self._urls]["cura_latest_url"])) + cura_latest_url=self.conan_data["urls"][self._urls]["cura_latest_url"], + conan_installs=self._conan_installs(), + python_installs=self._python_installs(), + )) def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): pyinstaller_metadata = self.conan_data["pyinstaller"] - datas = [(str(self._base_dir.joinpath("conan_install_info.json")), ".")] + datas = [] for data in pyinstaller_metadata["datas"].values(): - if not self.options.internal and data.get("internal", False): + if not self._internal and data.get("internal", False): continue if "package" in data: # get the paths from conan package @@ -208,6 +231,8 @@ class CuraConan(ConanFile): else: src_path = os.path.join(self.source_folder, data["src"]) else: + if data["package"] not in self.deps_cpp_info.deps: + continue src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"]) elif "root" in data: # get the paths relative from the install folder src_path = os.path.join(self.install_folder, data["root"], data["src"]) @@ -253,7 +278,7 @@ class CuraConan(ConanFile): with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f: pyinstaller = Template(f.read()) - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default = self.version, check_type = str) cura_version = Version(version) with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: @@ -277,6 +302,9 @@ class CuraConan(ConanFile): short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", )) + def export(self): + update_conandata(self, {"version": self.version}) + def export_sources(self): copy(self, "*", os.path.join(self.recipe_folder, "plugins"), os.path.join(self.export_sources_folder, "plugins")) copy(self, "*", os.path.join(self.recipe_folder, "resources"), os.path.join(self.export_sources_folder, "resources"), excludes = "*.mo") @@ -289,43 +317,52 @@ class CuraConan(ConanFile): copy(self, "requirements-ultimaker.txt", self.recipe_folder, self.export_sources_folder) copy(self, "cura_app.py", self.recipe_folder, self.export_sources_folder) + def config_options(self): + if self.settings.os == "Windows" and not self.conf.get("tools.microsoft.bash:path", check_type=str): + del self.options.enable_i18n + def configure(self): self.options["pyarcus"].shared = True self.options["pysavitar"].shared = True self.options["pynest2d"].shared = True + self.options["dulcificum"].shared = self.settings.os != "Windows" self.options["cpython"].shared = True self.options["boost"].header_only = True if self.settings.os == "Linux": self.options["curaengine_grpc_definitions"].shared = True + self.options["openssl"].shared = True + if self.conf.get("user.curaengine:sentry_url", "", check_type=str) != "": + self.options["curaengine"].enable_sentry = True + self.options["arcus"].enable_sentry = True + self.options["clipper"].enable_sentry = True def validate(self): - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default = self.version, check_type = str) if version and Version(version) <= Version("4"): raise ConanInvalidConfiguration("Only versions 5+ are support") def requirements(self): + for req in self.conan_data["requirements"]: + if self._internal and "fdm_materials" in req: + continue + if not self._enterprise and "native_cad_plugin" in req: + continue + self.requires(req) + if self._internal: + for req in self.conan_data["requirements_internal"]: + self.requires(req) + self.requires("cpython/3.10.4@ultimaker/stable") + self.requires("clipper/6.4.2@ultimaker/stable") + self.requires("openssl/3.2.0") + self.requires("protobuf/3.21.12") self.requires("boost/1.82.0") - self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") + self.requires("spdlog/1.12.0") + self.requires("fmt/10.1.1") self.requires("zlib/1.2.13") - self.requires("pyarcus/5.3.0") - self.requires("curaengine/(latest)@ultimaker/testing") - self.requires("pysavitar/5.3.0") - self.requires("pynest2d/5.3.0") - self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/stable") - self.requires("uranium/(latest)@ultimaker/testing") - self.requires("cura_binary_data/(latest)@ultimaker/testing") - self.requires("cpython/3.10.4") - if self.options.internal: - self.requires("cura_private_data/(latest)@ultimaker/testing") - self.requires("fdm_materials/(latest)@internal/testing") - else: - self.requires("fdm_materials/(latest)@ultimaker/testing") def build_requirements(self): - if self.options.devtools: - if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str): - # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True) + if self.options.get_safe("enable_i18n", False): + self.tool_requires("gettext/0.21", force_host_context = True) def layout(self): self.folders.source = "." @@ -346,7 +383,6 @@ class CuraConan(ConanFile): vr.generate() self._generate_cura_version(os.path.join(self.source_folder, "cura")) - self._generate_about_versions(os.path.join(self.source_folder, "resources","qml", "Dialogs")) if not self.in_local_cache: # Copy CuraEngine.exe to bindirs of Virtual Python Environment @@ -361,6 +397,12 @@ class CuraConan(ConanFile): copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False) copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + if self._enterprise: + rmdir(self, str(self.source_path.joinpath("plugins", "NativeCADplugin"))) + curaengine_plugin_gradual_flow = self.dependencies["native_cad_plugin"].cpp_info + copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "NativeCADplugin")), keep_path = True) + copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + # Copy resources of cura_binary_data cura_binary_data = self.dependencies["cura_binary_data"].cpp_info copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path = True) @@ -382,37 +424,40 @@ class CuraConan(ConanFile): copy(self, "*", fdm_materials.resdirs[0], self.source_folder) # Copy internal resources - if self.options.internal: + if self._internal: cura_private_data = self.dependencies["cura_private_data"].cpp_info copy(self, "*", cura_private_data.resdirs[0], str(self._share_dir.joinpath("cura"))) if self.options.devtools: entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec(location = self.generators_folder, - entrypoint_location = "'{}'".format(os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), - icon_path = "'{}'".format(os.path.join(self.source_folder, "packaging", self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + self._generate_pyinstaller_spec( + location=self.generators_folder, + entrypoint_location="'{}'".format( + os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace( + "\\", "\\\\"), + icon_path="'{}'".format(os.path.join(self.source_folder, "packaging", + self.conan_data["pyinstaller"]["icon"][ + str(self.settings.os)])).replace("\\", "\\\\"), + entitlements_file=entitlements_file if self.settings.os == "Macos" else "None" + ) - # Update the po and pot files - if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type=str): - vb = VirtualBuildEnv(self) - vb.generate() + if self.options.get_safe("enable_i18n", False) and self._i18n_options["extract"]: + vb = VirtualBuildEnv(self) + vb.generate() - # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - # cpp_info = self.dependencies["gettext"].cpp_info - # pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) - # pot.generate() + # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement + cpp_info = self.dependencies["gettext"].cpp_info + pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) + pot.generate() def build(self): - if self.options.devtools: - if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str): - # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"): - mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path)) - mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) - mkdir(self, str(unix_path(self, Path(mo_file).parent))) - cpp_info = self.dependencies["gettext"].cpp_info - self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True) + if self.options.get_safe("enable_i18n", False) and self._i18n_options["build"]: + for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"): + mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path)) + mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) + mkdir(self, str(unix_path(self, Path(mo_file).parent))) + cpp_info = self.dependencies["gettext"].cpp_info + self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True) def deploy(self): copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), os.path.join(self.install_folder, "packaging"), keep_path = True) @@ -423,6 +468,12 @@ class CuraConan(ConanFile): copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[0]), str(self._share_dir.joinpath("cura", "resources")), keep_path = True) copy(self, "*", os.path.join(self.package_folder, self.cpp_info.resdirs[1]), str(self._share_dir.joinpath("cura", "plugins")), keep_path = True) + # Copy the cura_resources resources from the package + rm(self, "conanfile.py", os.path.join(self.package_folder, self.cpp.package.resdirs[0])) + cura_resources = self.dependencies["cura_resources"].cpp_info + for res_dir in cura_resources.resdirs: + copy(self, "*", res_dir, str(self._share_dir.joinpath("cura", "resources", Path(res_dir).name)), keep_path = True) + # Copy resources of Uranium (keep folder structure) uranium = self.dependencies["uranium"].cpp_info copy(self, "*", uranium.resdirs[0], str(self._share_dir.joinpath("uranium", "resources")), keep_path = True) @@ -430,7 +481,7 @@ class CuraConan(ConanFile): copy(self, "*", uranium.libdirs[0], str(self._site_packages.joinpath("UM")), keep_path = True) # Generate the GitHub Action version info Environment - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + version = self.conf.get("user.cura:version", default = self.version, check_type = str) cura_version = Version(version) env_prefix = "Env:" if self.settings.os == "Windows" else "" activate_github_actions_version_env = Template(r"""echo "CURA_VERSION_MAJOR={{ cura_version_major }}" >> ${{ env_prefix }}GITHUB_ENV @@ -451,7 +502,6 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) self._generate_cura_version(os.path.join(self._site_packages, "cura")) - self._generate_about_versions(str(self._share_dir.joinpath("cura", "resources", "qml", "Dialogs"))) entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) self._generate_pyinstaller_spec(location = self._base_dir, @@ -475,6 +525,12 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV # Remove the fdm_materials from the package rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], "materials")) + # Remove the cura_resources resources from the package + rm(self, "conanfile.py", os.path.join(self.package_folder, self.cpp.package.resdirs[0])) + cura_resources = self.dependencies["cura_resources"].cpp_info + for res_dir in cura_resources.resdirs: + rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], Path(res_dir).name)) + def package_info(self): self.user_info.pip_requirements = "requirements.txt" self.user_info.pip_requirements_git = "requirements-ultimaker.txt" @@ -482,10 +538,14 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV if self.in_local_cache: self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "site-packages")) + self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "site-packages")) self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "plugins")) + self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "plugins")) else: self.runenv_info.append_path("PYTHONPATH", self.source_folder) + self.env_info.PYTHONPATH.append(self.source_folder) self.runenv_info.append_path("PYTHONPATH", os.path.join(self.source_folder, "plugins")) + self.env_info.PYTHONPATH.append(os.path.join(self.source_folder, "plugins")) def package_id(self): self.info.clear() @@ -498,6 +558,8 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV del self.info.options.cloud_api_version del self.info.options.display_name del self.info.options.cura_debug_mode + if self.options.get_safe("enable_i18n", False): + del self.info.options.enable_i18n # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't diff --git a/cura/API/Account.py b/cura/API/Account.py index 2651037e9e..c6027acdb5 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -190,6 +190,20 @@ class Account(QObject): def isLoggedIn(self) -> bool: return self._logged_in + @pyqtSlot() + def stopSyncing(self) -> None: + Logger.debug(f"Stopping sync of cloud printers") + self._setManualSyncEnabled(True) + if self._update_timer.isActive(): + self._update_timer.stop() + + @pyqtSlot() + def startSyncing(self) -> None: + Logger.debug(f"Starting sync of cloud printers") + self._setManualSyncEnabled(False) + if not self._update_timer.isActive(): + self._update_timer.start() + def _onLoginStateChanged(self, logged_in: bool = False, error_message: Optional[str] = None) -> None: if error_message: if self._error_message: diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index 96cfa6c64d..b0230fefa1 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 UltiMaker +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. # --------- @@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json" # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the # CuraVersion.py.in template. -CuraSDKVersion = "8.5.0" +CuraSDKVersion = "8.7.0" try: from cura.CuraVersion import CuraLatestURL @@ -69,13 +69,25 @@ try: except ImportError: CuraAppDisplayName = DEFAULT_CURA_DISPLAY_NAME -DEPENDENCY_INFO = {} + try: - from pathlib import Path - conan_install_info = Path(__file__).parent.parent.joinpath("conan_install_info.json") - if conan_install_info.exists(): - import json - with open(conan_install_info, "r") as f: - DEPENDENCY_INFO = json.loads(f.read()) -except: - pass + from cura.CuraVersion import ConanInstalls + + if type(ConanInstalls) == dict: + CONAN_INSTALLS = ConanInstalls + else: + CONAN_INSTALLS = {} + +except ImportError: + CONAN_INSTALLS = {} + +try: + from cura.CuraVersion import PythonInstalls + + if type(PythonInstalls) == dict: + PYTHON_INSTALLS = PythonInstalls + else: + PYTHON_INSTALLS = {} + +except ImportError: + PYTHON_INSTALLS = {} diff --git a/cura/Arranging/GridArrange.py b/cura/Arranging/GridArrange.py index f3c5f3a1a9..13778e9de9 100644 --- a/cura/Arranging/GridArrange.py +++ b/cura/Arranging/GridArrange.py @@ -241,14 +241,8 @@ class GridArrange(Arranger): center_grid_x = coord_grid_x + (0.5 * self._grid_width) center_grid_y = coord_grid_y + (0.5 * self._grid_height) - bounding_box = node.getBoundingBox() - center_node_x = (bounding_box.left + bounding_box.right) * 0.5 - center_node_y = (bounding_box.back + bounding_box.front) * 0.5 - - delta_x = center_grid_x - center_node_x - delta_y = center_grid_y - center_node_y - - return TranslateOperation(node, Vector(delta_x, 0, delta_y)) + return TranslateOperation(node, Vector(center_grid_x, node.getWorldPosition().y, center_grid_y), + set_position=True) def _getGridCornerPoints( self, diff --git a/cura/BackendPlugin.py b/cura/BackendPlugin.py index 4a1cdfd83d..5e885c3fd8 100644 --- a/cura/BackendPlugin.py +++ b/cura/BackendPlugin.py @@ -18,8 +18,8 @@ class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject): catalog = i18nCatalog("cura") settings_catalog = i18nCatalog("fdmprinter.def.json") - def __init__(self) -> None: - super().__init__(self.settings_catalog) + def __init__(self, catalog_i18n = settings_catalog) -> None: + super().__init__(catalog_i18n) self.__port: int = 0 self._plugin_address: str = "127.0.0.1" self._plugin_command: Optional[List[str]] = None diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 2bfa654d4f..742d1872cb 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -120,6 +120,8 @@ class BuildVolume(SceneNode): # Objects loaded at the moment. We are connected to the property changed events of these objects. self._scene_objects = set() # type: Set[SceneNode] + # Number of toplevel printable meshes. If there is more than one, the build volume needs to take account of the gantry height in One at a Time printing. + self._root_printable_object_count = 0 self._scene_change_timer = QTimer() self._scene_change_timer.setInterval(200) @@ -151,6 +153,7 @@ class BuildVolume(SceneNode): def _onSceneChangeTimerFinished(self): root = self._application.getController().getScene().getRoot() new_scene_objects = set(node for node in BreadthFirstIterator(root) if node.callDecoration("isSliceable")) + if new_scene_objects != self._scene_objects: for node in new_scene_objects - self._scene_objects: #Nodes that were added to the scene. self._updateNodeListeners(node) @@ -166,6 +169,26 @@ class BuildVolume(SceneNode): self.rebuild() self._scene_objects = new_scene_objects + + # This also needs to be called when objects are grouped/ungrouped, + # which is not reflected in a change in self._scene_objects + self._updateRootPrintableObjectCount() + + def _updateRootPrintableObjectCount(self): + # Get the number of models in the scene root, excluding modifier meshes and counting grouped models as 1 + root = self._application.getController().getScene().getRoot() + scene_objects = set(node for node in BreadthFirstIterator(root) if node.callDecoration("isSliceable") or node.callDecoration("isGroup")) + + new_root_printable_object_count = len(list(node for node in scene_objects if node.getParent() == root and not ( + node_stack := node.callDecoration("getStack") and ( + node.callDecoration("getStack").getProperty("anti_overhang_mesh", "value") or + node.callDecoration("getStack").getProperty("support_mesh", "value") or + node.callDecoration("getStack").getProperty("cutting_mesh", "value") or + node.callDecoration("getStack").getProperty("infill_mesh", "value") + )) + )) + if new_root_printable_object_count != self._root_printable_object_count: + self._root_printable_object_count = new_root_printable_object_count self._onSettingPropertyChanged("print_sequence", "value") # Create fake event, so right settings are triggered. def _updateNodeListeners(self, node: SceneNode): @@ -489,20 +512,20 @@ class BuildVolume(SceneNode): if not self._disallowed_areas: return None + bounding_box = Polygon(numpy.array([[min_w, min_d], [min_w, max_d], [max_w, max_d], [max_w, min_d]], numpy.float32)) + mb = MeshBuilder() color = self._disallowed_area_color for polygon in self._disallowed_areas: - points = polygon.getPoints() - if len(points) == 0: + intersection = polygon.intersectionConvexHulls(bounding_box) + points = numpy.flipud(intersection.getPoints()) + if len(points) < 3: continue - first = Vector(self._clamp(points[0][0], min_w, max_w), disallowed_area_height, - self._clamp(points[0][1], min_d, max_d)) - previous_point = Vector(self._clamp(points[0][0], min_w, max_w), disallowed_area_height, - self._clamp(points[0][1], min_d, max_d)) - for point in points: - new_point = Vector(self._clamp(point[0], min_w, max_w), disallowed_area_height, - self._clamp(point[1], min_d, max_d)) + first = Vector(points[0][0], disallowed_area_height, points[0][1]) + previous_point = Vector(points[1][0], disallowed_area_height, points[1][1]) + for point in points[2:]: + new_point = Vector(point[0], disallowed_area_height, point[1]) mb.addFace(first, previous_point, new_point, color=color) previous_point = new_point @@ -650,7 +673,7 @@ class BuildVolume(SceneNode): self._width = self._global_container_stack.getProperty("machine_width", "value") machine_height = self._global_container_stack.getProperty("machine_height", "value") - if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: + if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and self._root_printable_object_count > 1: new_height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) if self._height > new_height: @@ -692,9 +715,12 @@ class BuildVolume(SceneNode): update_extra_z_clearance = True for setting_key in self._changed_settings_since_last_rebuild: + if setting_key in ["print_sequence", "support_mesh", "infill_mesh", "cutting_mesh", "anti_overhang_mesh"]: + self._updateRootPrintableObjectCount() + if setting_key == "print_sequence": machine_height = self._global_container_stack.getProperty("machine_height", "value") - if self._application.getGlobalContainerStack().getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: + if self._application.getGlobalContainerStack().getProperty("print_sequence", "value") == "one_at_a_time" and self._root_printable_object_count > 1: new_height = min( self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) diff --git a/cura/CuraActions.py b/cura/CuraActions.py index 9a61a1c4f0..835c46bba8 100644 --- a/cura/CuraActions.py +++ b/cura/CuraActions.py @@ -1,12 +1,12 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. - from typing import List, cast -from PyQt6.QtCore import QObject, QUrl, QMimeData +from PyQt6.QtCore import QObject, QUrl, pyqtSignal, pyqtProperty from PyQt6.QtGui import QDesktopServices from PyQt6.QtWidgets import QApplication +from UM.Application import Application from UM.Event import CallFunctionEvent from UM.FlameProfiler import pyqtSlot from UM.Math.Vector import Vector @@ -32,11 +32,14 @@ from cura.Operations.SetBuildPlateNumberOperation import SetBuildPlateNumberOper from UM.Logger import Logger from UM.Scene.SceneNode import SceneNode - class CuraActions(QObject): def __init__(self, parent: QObject = None) -> None: super().__init__(parent) + self._operation_stack = Application.getInstance().getOperationStack() + self._operation_stack.changed.connect(self._onUndoStackChanged) + + undoStackChanged = pyqtSignal() @pyqtSlot() def openDocumentation(self) -> None: # Starting a web browser from a signal handler connected to a menu will crash on windows. @@ -45,6 +48,25 @@ class CuraActions(QObject): event = CallFunctionEvent(self._openUrl, [QUrl("https://ultimaker.com/en/resources/manuals/software?utm_source=cura&utm_medium=software&utm_campaign=dropdown-documentation")], {}) cura.CuraApplication.CuraApplication.getInstance().functionEvent(event) + @pyqtProperty(bool, notify=undoStackChanged) + def canUndo(self): + return self._operation_stack.canUndo() + + @pyqtProperty(bool, notify=undoStackChanged) + def canRedo(self): + return self._operation_stack.canRedo() + + @pyqtSlot() + def undo(self): + self._operation_stack.undo() + + @pyqtSlot() + def redo(self): + self._operation_stack.redo() + + def _onUndoStackChanged(self): + self.undoStackChanged.emit() + @pyqtSlot() def openBugReportPage(self) -> None: event = CallFunctionEvent(self._openUrl, [QUrl("https://github.com/Ultimaker/Cura/issues/new/choose")], {}) @@ -249,7 +271,11 @@ class CuraActions(QObject): # deselect currently selected nodes, and select the new nodes for node in Selection.getAllSelectedObjects(): Selection.remove(node) + + numberOfFixedNodes = len(fixed_nodes) for node in nodes: + numberOfFixedNodes += 1 + node.printOrder = numberOfFixedNodes Selection.add(node) def _openUrl(self, url: QUrl) -> None: diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index e075fe92f5..c8356e5727 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -2,22 +2,26 @@ # Cura is released under the terms of the LGPLv3 or higher. import enum import os +import re import sys import tempfile import time import platform +from pathlib import Path from typing import cast, TYPE_CHECKING, Optional, Callable, List, Any, Dict +import requests import numpy -from PyQt6.QtCore import QObject, QTimer, QUrl, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication +from PyQt6.QtCore import QObject, QTimer, QUrl, QUrlQuery, pyqtSignal, pyqtProperty, QEvent, pyqtEnum, QCoreApplication, \ + QByteArray from PyQt6.QtGui import QColor, QIcon -from PyQt6.QtQml import qmlRegisterUncreatableType, qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType +from PyQt6.QtQml import qmlRegisterUncreatableMetaObject, qmlRegisterSingletonType, qmlRegisterType from PyQt6.QtWidgets import QMessageBox import UM.Util import cura.Settings.cura_empty_instance_containers from UM.Application import Application -from UM.Decorators import override +from UM.Decorators import override, deprecated from UM.FlameProfiler import pyqtSlot from UM.Logger import Logger from UM.Math.AxisAlignedBox import AxisAlignedBox @@ -29,6 +33,7 @@ from UM.Message import Message from UM.Operations.AddSceneNodeOperation import AddSceneNodeOperation from UM.Operations.GroupedOperation import GroupedOperation from UM.Operations.SetTransformOperation import SetTransformOperation +from UM.OutputDevice.ProjectOutputDevice import ProjectOutputDevice from UM.Platform import Platform from UM.PluginError import PluginNotFoundError from UM.Preferences import Preferences @@ -100,7 +105,8 @@ from cura.Settings.SettingInheritanceManager import SettingInheritanceManager from cura.Settings.SidebarCustomMenuItemsModel import SidebarCustomMenuItemsModel from cura.Settings.SimpleModeSettingsManager import SimpleModeSettingsManager from cura.TaskManagement.OnExitCallbackManager import OnExitCallbackManager -from cura.UI import CuraSplashScreen, MachineActionManager, PrintInformation +from cura.UI import CuraSplashScreen, PrintInformation +from cura.UI.MachineActionManager import MachineActionManager from cura.UI.AddPrinterPagesModel import AddPrinterPagesModel from cura.UI.MachineSettingsManager import MachineSettingsManager from cura.UI.ObjectsModel import ObjectsModel @@ -121,6 +127,7 @@ from .Machines.Models.CompatibleMachineModel import CompatibleMachineModel from .Machines.Models.MachineListModel import MachineListModel from .Machines.Models.ActiveIntentQualitiesModel import ActiveIntentQualitiesModel from .Machines.Models.IntentSelectionModel import IntentSelectionModel +from .PrintOrderManager import PrintOrderManager from .SingleInstance import SingleInstance if TYPE_CHECKING: @@ -132,7 +139,7 @@ class CuraApplication(QtApplication): # SettingVersion represents the set of settings available in the machine/extruder definitions. # You need to make sure that this version number needs to be increased if there is any non-backwards-compatible # changes of the settings. - SettingVersion = 22 + SettingVersion = 23 Created = False @@ -175,18 +182,20 @@ class CuraApplication(QtApplication): # Variables set from CLI self._files_to_open = [] + self._urls_to_open = [] self._use_single_instance = False self._single_instance = None + self._open_project_mode: Optional[str] = None self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions] - self._machine_action_manager = None # type: Optional[MachineActionManager.MachineActionManager] + self._machine_action_manager: Optional[MachineActionManager] = None self.empty_container = None # type: EmptyInstanceContainer self.empty_definition_changes_container = None # type: EmptyInstanceContainer self.empty_variant_container = None # type: EmptyInstanceContainer - self.empty_intent_container = None # type: EmptyInstanceContainer + self.empty_intent_container = None # type: EmptyInstanceContainer self.empty_material_container = None # type: EmptyInstanceContainer self.empty_quality_container = None # type: EmptyInstanceContainer self.empty_quality_changes_container = None # type: EmptyInstanceContainer @@ -197,6 +206,7 @@ class CuraApplication(QtApplication): self._container_manager = None self._object_manager = None + self._print_order_manager = None self._extruders_model = None self._extruders_model_with_optional = None self._build_plate_model = None @@ -248,7 +258,7 @@ class CuraApplication(QtApplication): self._additional_components = {} # Components to add to certain areas in the interface self._open_file_queue = [] # A list of files to open (after the application has started) - + self._open_url_queue = [] # A list of urls to open (after the application has started) self._update_platform_activity_timer = None self._sidebar_custom_menu_items = [] # type: list # Keeps list of custom menu items for the side bar @@ -269,6 +279,11 @@ class CuraApplication(QtApplication): CentralFileStorage.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion) Resources.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion) + self._conan_installs = ApplicationMetadata.CONAN_INSTALLS + self._python_installs = ApplicationMetadata.PYTHON_INSTALLS + + self._supported_url_schemes: List[str] = ["cura", "slicer"] + @pyqtProperty(str, constant=True) def ultimakerCloudApiRootUrl(self) -> str: return UltimakerCloudConstants.CuraCloudAPIRoot @@ -321,7 +336,11 @@ class CuraApplication(QtApplication): assert not "This crash is triggered by the trigger_early_crash command line argument." for filename in self._cli_args.file: - self._files_to_open.append(os.path.abspath(filename)) + url = QUrl(filename) + if url.scheme() in self._supported_url_schemes: + self._urls_to_open.append(url) + else: + self._files_to_open.append(os.path.abspath(filename)) def initialize(self) -> None: self.__addExpectedResourceDirsAndSearchPaths() # Must be added before init of super @@ -338,11 +357,11 @@ class CuraApplication(QtApplication): self.__addAllEmptyContainers() self.__setLatestResouceVersionsForVersionUpgrade() - self._machine_action_manager = MachineActionManager.MachineActionManager(self) + self._machine_action_manager = MachineActionManager(self) self._machine_action_manager.initialize() def __sendCommandToSingleInstance(self): - self._single_instance = SingleInstance(self, self._files_to_open) + self._single_instance = SingleInstance(self, self._files_to_open, self._urls_to_open) # If we use single instance, try to connect to the single instance server, send commands, and then exit. # If we cannot find an existing single instance server, this is the only instance, so just keep going. @@ -359,10 +378,20 @@ class CuraApplication(QtApplication): Resources.addExpectedDirNameInData(dir_name) app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable))) - Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) - Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) + if platform.system() == "Darwin": + Resources.addSecureSearchPath(os.path.join(app_root, "Resources", "share", "cura", "resources")) + Resources.addSecureSearchPath( + os.path.join(self._app_install_dir, "Resources", "share", "cura", "resources")) + else: + Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) + if not hasattr(sys, "frozen"): + cura_data_root = os.environ.get('CURA_DATA_ROOT', None) + if cura_data_root: + Resources.addSearchPath(str(Path(cura_data_root).joinpath("resources"))) + Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "resources")) # local Conan cache @@ -589,6 +618,7 @@ class CuraApplication(QtApplication): preferences.addPreference("view/invert_zoom", False) preferences.addPreference("view/filter_current_build_plate", False) + preferences.addPreference("view/navigation_style", "cura") preferences.addPreference("cura/sidebar_collapsed", False) preferences.addPreference("cura/favorite_materials", "") @@ -851,11 +881,8 @@ class CuraApplication(QtApplication): self._log_hardware_info() - if len(ApplicationMetadata.DEPENDENCY_INFO) > 0: - Logger.debug("Using Conan managed dependencies: " + ", ".join( - [dep["recipe"]["id"] for dep in ApplicationMetadata.DEPENDENCY_INFO["installed"] if dep["recipe"]["version"] != "latest"])) - else: - Logger.warning("Could not find conan_install_info.json") + Logger.debug("Using conan dependencies: {}", str(self.conanInstalls)) + Logger.debug("Using python dependencies: {}", str(self.pythonInstalls)) Logger.log("i", "Initializing machine error checker") self._machine_error_checker = MachineErrorChecker(self) @@ -884,6 +911,7 @@ class CuraApplication(QtApplication): # initialize info objects self._print_information = PrintInformation.PrintInformation(self) self._cura_actions = CuraActions.CuraActions(self) + self._print_order_manager = PrintOrderManager(self.getObjectsModel().getNodes) self.processEvents() # Initialize setting visibility presets model. self._setting_visibility_presets_model = SettingVisibilityPresetsModel(self.getPreferences(), parent = self) @@ -941,6 +969,10 @@ class CuraApplication(QtApplication): self.callLater(self._openFile, file_name) for file_name in self._open_file_queue: # Open all the files that were queued up while plug-ins were loading. self.callLater(self._openFile, file_name) + for url in self._urls_to_open: + self.callLater(self._openUrl, url) + for url in self._open_url_queue: + self.callLater(self._openUrl, url) initializationFinished = pyqtSignal() showAddPrintersUncancellableDialog = pyqtSignal() # Used to show the add printers dialog with a greyed background @@ -962,6 +994,7 @@ class CuraApplication(QtApplication): t.setEnabledAxis([ToolHandle.XAxis, ToolHandle.YAxis, ToolHandle.ZAxis]) Selection.selectionChanged.connect(self.onSelectionChanged) + self._print_order_manager.printOrderChanged.connect(self._onPrintOrderChanged) # Set default background color for scene self.getRenderer().setBackgroundColor(QColor(245, 245, 245)) @@ -1051,6 +1084,10 @@ class CuraApplication(QtApplication): def getTextManager(self, *args) -> "TextManager": return self._text_manager + @pyqtSlot() + def setWorkplaceDropToBuildplate(self): + return self._physics.setAppAllModelDropDown() + def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions": if self._cura_formula_functions is None: self._cura_formula_functions = CuraFormulaFunctions(self) @@ -1077,6 +1114,10 @@ class CuraApplication(QtApplication): self._object_manager = ObjectsModel(self) return self._object_manager + @pyqtSlot(str, result = "QVariantList") + def getSupportedActionMachineList(self, definition_id: str) -> List["MachineAction"]: + return self._machine_action_manager.getSupportedActions(self._machine_manager.getDefinitionByMachineId(definition_id)) + @pyqtSlot(result = QObject) def getExtrudersModel(self, *args) -> "ExtrudersModel": if self._extruders_model is None: @@ -1102,6 +1143,16 @@ class CuraApplication(QtApplication): self._build_plate_model = BuildPlateModel(self) return self._build_plate_model + @pyqtSlot() + def exportUcp(self): + writer = self.getMeshFileHandler().getWriter("3MFWriter") + + if writer is None: + Logger.warning("3mf writer is not enabled") + return + + writer.exportUcp() + def getCuraSceneController(self, *args) -> CuraSceneController: if self._cura_scene_controller is None: self._cura_scene_controller = CuraSceneController.createCuraSceneController() @@ -1112,14 +1163,16 @@ class CuraApplication(QtApplication): self._setting_inheritance_manager = SettingInheritanceManager.createSettingInheritanceManager() return self._setting_inheritance_manager - def getMachineActionManager(self, *args: Any) -> MachineActionManager.MachineActionManager: + @pyqtSlot(result = QObject) + def getMachineActionManager(self, *args: Any) -> MachineActionManager: """Get the machine action manager We ignore any *args given to this, as we also register the machine manager as qml singleton. It wants to give this function an engine and script engine, but we don't care about that. """ - return cast(MachineActionManager.MachineActionManager, self._machine_action_manager) + return self._machine_action_manager + @pyqtSlot(result = QObject) def getMaterialManagementModel(self) -> MaterialManagementModel: @@ -1133,7 +1186,8 @@ class CuraApplication(QtApplication): self._quality_management_model = QualityManagementModel(parent = self) return self._quality_management_model - def getSimpleModeSettingsManager(self, *args): + @pyqtSlot(result=QObject) + def getSimpleModeSettingsManager(self)-> SimpleModeSettingsManager: if self._simple_mode_settings_manager is None: self._simple_mode_settings_manager = SimpleModeSettingsManager() return self._simple_mode_settings_manager @@ -1150,9 +1204,15 @@ class CuraApplication(QtApplication): if event.type() == QEvent.Type.FileOpen: if self._plugins_loaded: - self._openFile(event.file()) + if event.file(): + self._openFile(event.file()) + if event.url(): + self._openUrl(event.url()) else: - self._open_file_queue.append(event.file()) + if event.file(): + self._open_file_queue.append(event.file()) + if event.url(): + self._open_url_queue.append(event.url()) if int(event.type()) == 20: # 'QEvent.Type.Quit' enum isn't there, even though it should be according to docs. # Once we're at this point, everything should have been flushed already (past OnExitCallbackManager). @@ -1170,16 +1230,43 @@ class CuraApplication(QtApplication): return self._print_information - def getQualityProfilesDropDownMenuModel(self, *args, **kwargs): + @pyqtSlot(result=QObject) + def getQualityProfilesDropDownMenuModel(self, *args, **kwargs)-> QualityProfilesDropDownMenuModel: if self._quality_profile_drop_down_menu_model is None: self._quality_profile_drop_down_menu_model = QualityProfilesDropDownMenuModel(self) return self._quality_profile_drop_down_menu_model - def getCustomQualityProfilesDropDownMenuModel(self, *args, **kwargs): + @pyqtSlot(result=QObject) + def getCustomQualityProfilesDropDownMenuModel(self, *args, **kwargs)->CustomQualityProfilesDropDownMenuModel: if self._custom_quality_profile_drop_down_menu_model is None: self._custom_quality_profile_drop_down_menu_model = CustomQualityProfilesDropDownMenuModel(self) return self._custom_quality_profile_drop_down_menu_model + @deprecated("SimpleModeSettingsManager is deprecated and will be removed in major SDK release, Use getSimpleModeSettingsManager() instead", since = "5.7.0") + def getSimpleModeSettingsManagerWrapper(self, *args, **kwargs): + return self.getSimpleModeSettingsManager() + + @deprecated("MachineActionManager is deprecated and will be removed in major SDK release, Use getMachineActionManager() instead", since="5.7.0") + def getMachineActionManagerWrapper(self, *args, **kwargs): + return self.getMachineActionManager() + + @deprecated("QualityManagementModel is deprecated and will be removed in major SDK release, Use getQualityManagementModel() instead", since="5.7.0") + def getQualityManagementModelWrapper(self, *args, **kwargs): + return self.getQualityManagementModel() + + @deprecated("MaterialManagementModel is deprecated and will be removed in major SDK release, Use getMaterialManagementModel() instead", since = "5.7.0") + def getMaterialManagementModelWrapper(self, *args, **kwargs): + return self.getMaterialManagementModel() + + @deprecated("QualityProfilesDropDownMenuModel is deprecated and will be removed in major SDK release, Use getQualityProfilesDropDownMenuModel() instead", since = "5.7.0") + def getQualityProfilesDropDownMenuModelWrapper(self, *args, **kwargs): + return self.getQualityProfilesDropDownMenuModel() + + @deprecated("CustomQualityProfilesDropDownMenuModel is deprecated and will be removed in major SDK release, Use getCustomQualityProfilesDropDownMenuModel() instead", since = "5.7.0") + def getCustomQualityProfilesDropDownMenuModelWrapper(self, *args, **kwargs): + return self.getCustomQualityProfilesDropDownMenuModel() + + def getCuraAPI(self, *args, **kwargs) -> "CuraAPI": return self._cura_API @@ -1195,6 +1282,7 @@ class CuraApplication(QtApplication): self.processEvents() engine.rootContext().setContextProperty("Printer", self) engine.rootContext().setContextProperty("CuraApplication", self) + engine.rootContext().setContextProperty("PrintOrderManager", self._print_order_manager) engine.rootContext().setContextProperty("PrintInformation", self._print_information) engine.rootContext().setContextProperty("CuraActions", self._cura_actions) engine.rootContext().setContextProperty("CuraSDKVersion", ApplicationMetadata.CuraSDKVersion) @@ -1208,8 +1296,8 @@ class CuraApplication(QtApplication): qmlRegisterSingletonType(MachineManager, "Cura", 1, 0, self.getMachineManager, "MachineManager") qmlRegisterSingletonType(IntentManager, "Cura", 1, 6, self.getIntentManager, "IntentManager") qmlRegisterSingletonType(SettingInheritanceManager, "Cura", 1, 0, self.getSettingInheritanceManager, "SettingInheritanceManager") - qmlRegisterSingletonType(SimpleModeSettingsManager, "Cura", 1, 0, self.getSimpleModeSettingsManager, "SimpleModeSettingsManager") - qmlRegisterSingletonType(MachineActionManager.MachineActionManager, "Cura", 1, 0, self.getMachineActionManager, "MachineActionManager") + qmlRegisterSingletonType(SimpleModeSettingsManager, "Cura", 1, 0, self.getSimpleModeSettingsManagerWrapper, "SimpleModeSettingsManager") + qmlRegisterSingletonType(MachineActionManager, "Cura", 1, 0, self.getMachineActionManagerWrapper, "MachineActionManager") self.processEvents() qmlRegisterType(NetworkingUtil, "Cura", 1, 5, "NetworkingUtil") @@ -1234,16 +1322,14 @@ class CuraApplication(QtApplication): qmlRegisterType(FavoriteMaterialsModel, "Cura", 1, 0, "FavoriteMaterialsModel") qmlRegisterType(GenericMaterialsModel, "Cura", 1, 0, "GenericMaterialsModel") qmlRegisterType(MaterialBrandsModel, "Cura", 1, 0, "MaterialBrandsModel") - qmlRegisterSingletonType(QualityManagementModel, "Cura", 1, 0, self.getQualityManagementModel, "QualityManagementModel") - qmlRegisterSingletonType(MaterialManagementModel, "Cura", 1, 5, self.getMaterialManagementModel, "MaterialManagementModel") + qmlRegisterSingletonType(QualityManagementModel, "Cura", 1, 0, self.getQualityManagementModelWrapper,"QualityManagementModel") + qmlRegisterSingletonType(MaterialManagementModel, "Cura", 1, 5, self.getMaterialManagementModelWrapper,"MaterialManagementModel") self.processEvents() qmlRegisterType(DiscoveredPrintersModel, "Cura", 1, 0, "DiscoveredPrintersModel") qmlRegisterType(DiscoveredCloudPrintersModel, "Cura", 1, 7, "DiscoveredCloudPrintersModel") - qmlRegisterSingletonType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, - self.getQualityProfilesDropDownMenuModel, "QualityProfilesDropDownMenuModel") - qmlRegisterSingletonType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, - self.getCustomQualityProfilesDropDownMenuModel, "CustomQualityProfilesDropDownMenuModel") + qmlRegisterSingletonType(QualityProfilesDropDownMenuModel, "Cura", 1, 0, self.getQualityProfilesDropDownMenuModelWrapper, "QualityProfilesDropDownMenuModel") + qmlRegisterSingletonType(CustomQualityProfilesDropDownMenuModel, "Cura", 1, 0, self.getCustomQualityProfilesDropDownMenuModelWrapper, "CustomQualityProfilesDropDownMenuModel") qmlRegisterType(NozzleModel, "Cura", 1, 0, "NozzleModel") qmlRegisterType(IntentModel, "Cura", 1, 6, "IntentModel") qmlRegisterType(IntentCategoryModel, "Cura", 1, 6, "IntentCategoryModel") @@ -1372,7 +1458,11 @@ class CuraApplication(QtApplication): self._scene_bounding_box = scene_bounding_box self.sceneBoundingBoxChanged.emit() - self._platform_activity = True if count > 0 else False + if count > 0: + self._platform_activity = True + else: + ProjectOutputDevice.setLastOutputName(None) + self._platform_activity = False self.activityChanged.emit() @pyqtSlot() @@ -1536,7 +1626,7 @@ class CuraApplication(QtApplication): if not nodes: return - objects_in_filename = {} # type: Dict[str, List[CuraSceneNode]] + objects_in_filename: Dict[str, List[CuraSceneNode]] = {} for node in nodes: mesh_data = node.getMeshData() if mesh_data: @@ -1550,15 +1640,14 @@ class CuraApplication(QtApplication): Logger.log("w", "Unable to reload data because we don't have a filename.") for file_name, nodes in objects_in_filename.items(): - for node in nodes: - file_path = os.path.normpath(os.path.dirname(file_name)) - job = ReadMeshJob(file_name, add_to_recent_files = file_path != tempfile.gettempdir()) # Don't add temp files to the recent files list - job._node = node # type: ignore - job.finished.connect(self._reloadMeshFinished) - if has_merged_nodes: - job.finished.connect(self.updateOriginOfMergedMeshes) - - job.start() + file_path = os.path.normpath(os.path.dirname(file_name)) + job = ReadMeshJob(file_name, + add_to_recent_files=file_path != tempfile.gettempdir()) # Don't add temp files to the recent files list + job._nodes = nodes # type: ignore + job.finished.connect(self._reloadMeshFinished) + if has_merged_nodes: + job.finished.connect(self.updateOriginOfMergedMeshes) + job.start() @pyqtSlot("QStringList") def setExpandedCategories(self, categories: List[str]) -> None: @@ -1693,8 +1782,12 @@ class CuraApplication(QtApplication): Selection.remove(node) Selection.add(group_node) + all_nodes = self.getObjectsModel().getNodes() + PrintOrderManager.updatePrintOrdersAfterGroupOperation(all_nodes, group_node, selected_nodes) + @pyqtSlot() def ungroupSelected(self) -> None: + all_nodes = self.getObjectsModel().getNodes() selected_objects = Selection.getAllSelectedObjects().copy() for node in selected_objects: if node.callDecoration("isGroup"): @@ -1702,21 +1795,30 @@ class CuraApplication(QtApplication): group_parent = node.getParent() children = node.getChildren().copy() - for child in children: - # Ungroup only 1 level deep - if child.getParent() != node: - continue + # Ungroup only 1 level deep + children_to_ungroup = list(filter(lambda child: child.getParent() == node, children)) + for child in children_to_ungroup: # Set the parent of the children to the parent of the group-node op.addOperation(SetParentOperation(child, group_parent)) # Add all individual nodes to the selection Selection.add(child) + PrintOrderManager.updatePrintOrdersAfterUngroupOperation(all_nodes, node, children_to_ungroup) op.push() # Note: The group removes itself from the scene once all its children have left it, # see GroupDecorator._onChildrenChanged + def _onPrintOrderChanged(self) -> None: + # update object list + scene = self.getController().getScene() + scene.sceneChanged.emit(scene.getRoot()) + + # reset if already was sliced + Application.getInstance().getBackend().needsSlicing() + Application.getInstance().getBackend().tickle() + def _createSplashScreen(self) -> Optional[CuraSplashScreen.CuraSplashScreen]: if self._is_headless: return None @@ -1730,9 +1832,10 @@ class CuraApplication(QtApplication): def _reloadMeshFinished(self, job) -> None: """ - Function called whenever a ReadMeshJob finishes in the background. It reloads a specific node object in the + Function called when ReadMeshJob finishes reloading a file in the background, then update node objects in the scene from its source file. The function gets all the nodes that exist in the file through the job result, and - then finds the scene node that it wants to refresh by its object id. Each job refreshes only one node. + then finds the scene nodes that need to be refreshed by their name. Each job refreshes all nodes of a file. + Nodes that are not present in the updated file are kept in the scene. :param job: The :py:class:`Uranium.UM.ReadMeshJob.ReadMeshJob` running in the background that reads all the meshes in a file @@ -1742,25 +1845,93 @@ class CuraApplication(QtApplication): if len(job_result) == 0: Logger.log("e", "Reloading the mesh failed.") return - object_found = False - mesh_data = None + renamed_nodes = {} # type: Dict[str, int] # Find the node to be refreshed based on its id for job_result_node in job_result: - if job_result_node.getId() == job._node.getId(): - mesh_data = job_result_node.getMeshData() - object_found = True - break - if not object_found: - Logger.warning("The object with id {} no longer exists! Keeping the old version in the scene.".format(job_result_node.getId())) - return - if not mesh_data: - Logger.log("w", "Could not find a mesh in reloaded node.") - return - job._node.setMeshData(mesh_data) + mesh_data = job_result_node.getMeshData() + if not mesh_data: + Logger.log("w", "Could not find a mesh in reloaded node.") + continue + + # Solves issues with object naming + result_node_name = job_result_node.getName() + if not result_node_name: + result_node_name = os.path.basename(mesh_data.getFileName()) + if result_node_name in renamed_nodes: # objects may get renamed by ObjectsModel._renameNodes() when loaded + renamed_nodes[result_node_name] += 1 + result_node_name = "{0}({1})".format(result_node_name, renamed_nodes[result_node_name]) + else: + renamed_nodes[job_result_node.getName()] = 0 + + # Find the matching scene node to replace + scene_node = None + for replaced_node in job._nodes: + if replaced_node.getName() == result_node_name: + scene_node = replaced_node + break + + if scene_node: + scene_node.setMeshData(mesh_data) + else: + # Current node is a new one in the file, or it's name has changed + # TODO: Load this mesh into the scene. Also alter the "_reloadJobFinished" action in UM.Scene + Logger.log("w", "Could not find matching node for object '{0}' in the scene.".format(result_node_name)) def _openFile(self, filename): self.readLocalFile(QUrl.fromLocalFile(filename)) + def _openUrl(self, url: QUrl) -> None: + if url.scheme() not in self._supported_url_schemes: + # only handle cura:// and slicer:// urls schemes + return + + match url.host() + url.path(): + case "open" | "open/": + query = QUrlQuery(url.query()) + model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded)) + + def on_finish(response): + content_disposition_header_key = QByteArray("content-disposition".encode()) + + if not response.hasRawHeader(content_disposition_header_key): + Logger.log("w", "Could not find Content-Disposition header in response from {0}".format( + model_url.url())) + # Use the last part of the url as the filename, and assume it is an STL file + filename = model_url.path().split("/")[-1] + ".stl" + else: + # content_disposition is in the format + # ``` + # content_disposition attachment; "filename=[FILENAME]" + # ``` + # Use a regex to extract the filename + content_disposition = str(response.rawHeader(content_disposition_header_key).data(), + encoding='utf-8') + content_disposition_match = re.match(r'attachment; filename="(?P.*)"', + content_disposition) + assert content_disposition_match is not None + filename = content_disposition_match.group("filename") + + tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False) + with open(tmp.name, "wb") as f: + f.write(response.readAll()) + + self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) + + def on_error(*args, **kwargs): + Logger.log("w", "Could not download file from {0}".format(model_url.url())) + Message("Could not download file: " + str(model_url.url()), + title= "Loading Model failed", + message_type=Message.MessageType.ERROR).show() + return + + self.getHttpRequestManager().get( + model_url.url(), + callback=on_finish, + error_callback=on_error, + ) + case path: + Logger.log("w", "Unsupported url scheme path: {0}".format(path)) + def _addProfileReader(self, profile_reader): # TODO: Add the profile reader to the list of plug-ins that can be used when importing profiles. pass @@ -1811,6 +1982,17 @@ class CuraApplication(QtApplication): openProjectFile = pyqtSignal(QUrl, bool, arguments = ["project_file", "add_to_recent_files"]) # Emitted when a project file is about to open. + @pyqtSlot(QUrl, bool) + def readLocalUcpFile(self, file: QUrl, add_to_recent_files: bool = True): + + file_name = QUrl(file).toLocalFile() + workspace_reader = self.getWorkspaceFileHandler() + if workspace_reader is None: + Logger.warning(f"Workspace reader not found, cannot read file {file_name}.") + return + + workspace_reader.readLocalFile(file, add_to_recent_files) + @pyqtSlot(QUrl, str, bool) @pyqtSlot(QUrl, str) @pyqtSlot(QUrl) @@ -1824,7 +2006,7 @@ class CuraApplication(QtApplication): Logger.log("i", "Attempting to read file %s", file.toString()) if not file.isValid(): return - + self._open_project_mode = project_mode scene = self.getController().getScene() for node in DepthFirstIterator(scene.getRoot()): @@ -1834,16 +2016,16 @@ class CuraApplication(QtApplication): is_project_file = self.checkIsValidProjectFile(file) - if project_mode is None: - project_mode = self.getPreferences().getValue("cura/choice_on_open_project") + if self._open_project_mode is None: + self._open_project_mode = self.getPreferences().getValue("cura/choice_on_open_project") - if is_project_file and project_mode == "open_as_project": + if is_project_file and self._open_project_mode == "open_as_project": # open as project immediately without presenting a dialog workspace_handler = self.getWorkspaceFileHandler() workspace_handler.readLocalFile(file, add_to_recent_files_hint = add_to_recent_files) return - if is_project_file and project_mode == "always_ask": + if is_project_file and self._open_project_mode == "always_ask": # present a dialog asking to open as project or import models self.callLater(self.openProjectFile.emit, file, add_to_recent_files) return @@ -1943,7 +2125,8 @@ class CuraApplication(QtApplication): node.scale(original_node.getScale()) node.setSelectable(True) - node.setName(os.path.basename(file_name)) + if not node.getName(): + node.setName(os.path.basename(file_name)) self.getBuildVolume().checkBoundsAndUpdate(node) is_non_sliceable = "." + file_extension in self._non_sliceable_extensions @@ -1977,8 +2160,11 @@ class CuraApplication(QtApplication): center_y = 0 node.translate(Vector(0, center_y, 0)) - nodes_to_arrange.append(node) + # If the file is a project,and models are to be loaded from a that project, + # models inside file should be arranged in buildplate. + elif self._open_project_mode == "open_as_model": + nodes_to_arrange.append(node) # This node is deep copied from some other node which already has a BuildPlateDecorator, but the deepcopy # of BuildPlateDecorator produces one that's associated with build plate -1. So, here we need to check if @@ -2012,6 +2198,12 @@ class CuraApplication(QtApplication): def addNonSliceableExtension(self, extension): self._non_sliceable_extensions.append(extension) + @pyqtSlot(str, result = bool) + def isProjectUcp(self, file_url) -> bool: + file_path = QUrl(file_url).toLocalFile() + workspace_reader = self.getWorkspaceFileHandler().getReaderForFile(file_path) + return workspace_reader.getIsProjectUcp() + @pyqtSlot(str, result=bool) def checkIsValidProjectFile(self, file_url): """Checks if the given file URL is a valid project file. """ @@ -2021,6 +2213,8 @@ class CuraApplication(QtApplication): if workspace_reader is None: return False # non-project files won't get a reader try: + if workspace_reader.getPluginId() == "3MFReader": + workspace_reader.clearOpenAsUcp() result = workspace_reader.preRead(file_path, show_dialog=False) return result == WorkspaceReader.PreReadResult.accepted except: @@ -2130,3 +2324,11 @@ class CuraApplication(QtApplication): @pyqtProperty(bool, constant=True) def isEnterprise(self) -> bool: return ApplicationMetadata.IsEnterpriseVersion + + @pyqtProperty("QVariant", constant=True) + def conanInstalls(self) -> Dict[str, Dict[str, str]]: + return self._conan_installs + + @pyqtProperty("QVariant", constant=True) + def pythonInstalls(self) -> Dict[str, Dict[str, str]]: + return self._python_installs diff --git a/cura/HitChecker.py b/cura/HitChecker.py new file mode 100644 index 0000000000..4b229e6b9b --- /dev/null +++ b/cura/HitChecker.py @@ -0,0 +1,88 @@ +from typing import List, Dict +from cura.Scene.CuraSceneNode import CuraSceneNode + + +class HitChecker: + """Checks if nodes can be printed without causing any collisions and interference""" + + def __init__(self, nodes: List[CuraSceneNode]) -> None: + self._hit_map = self._buildHitMap(nodes) + + def anyTwoNodesBlockEachOther(self, nodes: List[CuraSceneNode]) -> bool: + """Returns True if any 2 nodes block each other""" + for a in nodes: + for b in nodes: + if self._hit_map[a][b] and self._hit_map[b][a]: + return True + return False + + def canPrintBefore(self, node: CuraSceneNode, other_nodes: List[CuraSceneNode]) -> bool: + """Returns True if node doesn't block other_nodes and can be printed before them""" + no_hits = all(not self._hit_map[node][other_node] for other_node in other_nodes) + return no_hits + + def canPrintAfter(self, node: CuraSceneNode, other_nodes: List[CuraSceneNode]) -> bool: + """Returns True if node doesn't hit other nodes and can be printed after them""" + no_hits = all(not self._hit_map[other_node][node] for other_node in other_nodes) + return no_hits + + def calculateScore(self, a: CuraSceneNode, b: CuraSceneNode) -> int: + """Calculate score simply sums the number of other objects it 'blocks' + + :param a: node + :param b: node + :return: sum of the number of other objects + """ + + score_a = sum(self._hit_map[a].values()) + score_b = sum(self._hit_map[b].values()) + return score_a - score_b + + def canPrintNodesInProvidedOrder(self, ordered_nodes: List[CuraSceneNode]) -> bool: + """Returns True If nodes don't have any hits in provided order""" + for node_index, node in enumerate(ordered_nodes): + nodes_before = ordered_nodes[:node_index - 1] if node_index - 1 >= 0 else [] + nodes_after = ordered_nodes[node_index + 1:] if node_index + 1 < len(ordered_nodes) else [] + if not self.canPrintBefore(node, nodes_after) or not self.canPrintAfter(node, nodes_before): + return False + return True + + @staticmethod + def _buildHitMap(nodes: List[CuraSceneNode]) -> Dict[CuraSceneNode, CuraSceneNode]: + """Pre-computes all hits between all objects + + :nodes: nodes that need to be checked for collisions + :return: dictionary where hit_map[node1][node2] is False if there node1 can be printed before node2 + """ + hit_map = {j: {i: HitChecker._checkHit(j, i) for i in nodes} for j in nodes} + return hit_map + + @staticmethod + def _checkHit(a: CuraSceneNode, b: CuraSceneNode) -> bool: + """Checks if a can be printed before b + + :param a: node + :param b: node + :return: False if a can be printed before b + """ + + if a == b: + return False + + a_hit_hull = a.callDecoration("getConvexHullBoundary") + b_hit_hull = b.callDecoration("getConvexHullHeadFull") + overlap = a_hit_hull.intersectsPolygon(b_hit_hull) + + if overlap: + return True + + # Adhesion areas must never overlap, regardless of printing order + # This would cause over-extrusion + a_hit_hull = a.callDecoration("getAdhesionArea") + b_hit_hull = b.callDecoration("getAdhesionArea") + overlap = a_hit_hull.intersectsPolygon(b_hit_hull) + + if overlap: + return True + else: + return False diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index 103703e594..e772a8b78e 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -1,5 +1,6 @@ # Copyright (c) 2019 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +import math import numpy from typing import Optional, cast @@ -66,7 +67,7 @@ class LayerPolygon: # Buffering the colors shouldn't be necessary as it is not # re-used and can save a lot of memory usage. self._color_map = LayerPolygon.getColorMap() - self._colors = self._color_map[self._types] # type: numpy.ndarray + self._colors: numpy.ndarray = self._color_map[self._types] # When type is used as index returns true if type == LayerPolygon.InfillType # or type == LayerPolygon.SkinType @@ -74,8 +75,8 @@ class LayerPolygon: # Should be generated in better way, not hardcoded. self._is_infill_or_skin_type_map = numpy.array([0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0], dtype=bool) - self._build_cache_line_mesh_mask = None # type: Optional[numpy.ndarray] - self._build_cache_needed_points = None # type: Optional[numpy.ndarray] + self._build_cache_line_mesh_mask: Optional[numpy.ndarray] = None + self._build_cache_needed_points: Optional[numpy.ndarray] = None def buildCache(self) -> None: # For the line mesh we do not draw Infill or Jumps. Therefore those lines are filtered out. @@ -186,6 +187,11 @@ class LayerPolygon: def types(self): return self._types + @property + def lineLengths(self): + data_array = numpy.array(self._data) + return numpy.linalg.norm(data_array[1:] - data_array[:-1], axis=1) + @property def data(self): return self._data diff --git a/cura/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index cc6560378d..5edee0778f 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -49,7 +49,7 @@ class MachineErrorChecker(QObject): self._keys_to_check = set() # type: Set[str] - self._num_keys_to_check_per_update = 10 + self._num_keys_to_check_per_update = 1 def initialize(self) -> None: self._error_check_timer.timeout.connect(self._rescheduleCheck) diff --git a/cura/Machines/MaterialNode.py b/cura/Machines/MaterialNode.py index 179451ff67..a833ad0470 100644 --- a/cura/Machines/MaterialNode.py +++ b/cura/Machines/MaterialNode.py @@ -21,18 +21,25 @@ class MaterialNode(ContainerNode): Its subcontainers are quality profiles. """ - def __init__(self, container_id: str, variant: "VariantNode") -> None: + def __init__(self, container_id: str, variant: "VariantNode", *, container: ContainerInterface = None) -> None: super().__init__(container_id) self.variant = variant self.qualities = {} # type: Dict[str, QualityNode] # Mapping container IDs to quality profiles. self.materialChanged = Signal() # Triggered when the material is removed or its metadata is updated. container_registry = ContainerRegistry.getInstance() - my_metadata = container_registry.findContainersMetadata(id = container_id)[0] - self.base_file = my_metadata["base_file"] - self.material_type = my_metadata["material"] - self.brand = my_metadata["brand"] - self.guid = my_metadata["GUID"] + + if container is not None: + self.base_file = container.getMetaDataEntry("base_file") + self.material_type = container.getMetaDataEntry("material") + self.brand = container.getMetaDataEntry("brand") + self.guid = container.getMetaDataEntry("GUID") + else: + my_metadata = container_registry.findContainersMetadata(id = container_id)[0] + self.base_file = my_metadata["base_file"] + self.material_type = my_metadata["material"] + self.brand = my_metadata["brand"] + self.guid = my_metadata["GUID"] self._loadAll() container_registry.containerRemoved.connect(self._onRemoved) container_registry.containerMetaDataChanged.connect(self._onMetadataChanged) diff --git a/cura/Machines/Models/ActiveIntentQualitiesModel.py b/cura/Machines/Models/ActiveIntentQualitiesModel.py index 2e13f7dbcb..f9acb9a970 100644 --- a/cura/Machines/Models/ActiveIntentQualitiesModel.py +++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py @@ -54,10 +54,7 @@ class ActiveIntentQualitiesModel(ListModel): self._updateDelayed() def _update(self): - active_extruder_stack = cura.CuraApplication.CuraApplication.getInstance().getMachineManager().activeStack - if active_extruder_stack: - self._intent_category = active_extruder_stack.intent.getMetaDataEntry("intent_category", "") - + self._intent_category = IntentManager.getInstance().currentIntentCategory new_items: List[Dict[str, Any]] = [] global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() if not global_stack: diff --git a/cura/Machines/Models/CompatibleMachineModel.py b/cura/Machines/Models/CompatibleMachineModel.py index 40a3618b31..40369b89a7 100644 --- a/cura/Machines/Models/CompatibleMachineModel.py +++ b/cura/Machines/Models/CompatibleMachineModel.py @@ -51,6 +51,9 @@ class CompatibleMachineModel(ListModel): for output_device in machine_manager.printerOutputDevices: for printer in output_device.printers: extruder_configs = dict() + # If the printer name already exist in the queue skip it + if printer.name in [item["name"] for item in self.items]: + continue # initialize & add current active material: for extruder in printer.extruders: diff --git a/cura/Machines/Models/ExtrudersModel.py b/cura/Machines/Models/ExtrudersModel.py index 2677894bff..f31f7c8717 100644 --- a/cura/Machines/Models/ExtrudersModel.py +++ b/cura/Machines/Models/ExtrudersModel.py @@ -227,7 +227,7 @@ class ExtrudersModel(ListModel): "material_brand": "", "color_name": "", "material_type": "", - "material_label": "" + "material_name": "" } items.append(item) if self._items != items: diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py index e9b94d4233..cf08c53e74 100644 --- a/cura/Machines/Models/IntentCategoryModel.py +++ b/cura/Machines/Models/IntentCategoryModel.py @@ -61,6 +61,11 @@ class IntentCategoryModel(ListModel): "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance.") } + cls._translations["solid"] = { + "name": catalog.i18nc("@label", "Solid"), + "description": catalog.i18nc("@text", + "A highly dense and strong part but at a slower print time. Great for functional parts.") + } return cls._translations def __init__(self, intent_category: str) -> None: diff --git a/cura/Machines/Models/IntentSelectionModel.py b/cura/Machines/Models/IntentSelectionModel.py index 3df94e4ad8..80176f823e 100644 --- a/cura/Machines/Models/IntentSelectionModel.py +++ b/cura/Machines/Models/IntentSelectionModel.py @@ -57,8 +57,9 @@ class IntentSelectionModel(ListModel): self._onChange() - _default_intent_categories = ["default", "visual", "engineering", "quick", "annealing"] - _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter", "annealing": "Anneal"} + _default_intent_categories = ["default", "visual", "engineering", "quick", "annealing", "solid"] + _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter", + "annealing": "Anneal", "solid": "Hammer"} def _onContainerChange(self, container: ContainerInterface) -> None: """Updates the list of intents if an intent profile was added or removed.""" diff --git a/cura/Machines/Models/IntentTranslations.py b/cura/Machines/Models/IntentTranslations.py index 43fe771d67..3a2afcb7c5 100644 --- a/cura/Machines/Models/IntentTranslations.py +++ b/cura/Machines/Models/IntentTranslations.py @@ -24,3 +24,8 @@ intent_translations["quick"] = { "name": catalog.i18nc("@label", "Draft"), "description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction.") } +intent_translations["solid"] = { + "name": catalog.i18nc("@label", "Solid"), + "description": catalog.i18nc("@text", + "A highly dense and strong part but at a slower print time. Great for functional parts.") +} diff --git a/cura/Machines/Models/MachineListModel.py b/cura/Machines/Models/MachineListModel.py index 69a3c53d03..cac52a0e65 100644 --- a/cura/Machines/Models/MachineListModel.py +++ b/cura/Machines/Models/MachineListModel.py @@ -5,7 +5,7 @@ # online cloud connected printers are represented within this ListModel. Additional information such as the number of # connected printers for each printer type is gathered. -from typing import Optional, List, cast +from typing import Optional, List, cast, Dict, Any from PyQt6.QtCore import Qt, QTimer, QObject, pyqtSlot, pyqtProperty, pyqtSignal @@ -30,10 +30,10 @@ class MachineListModel(ListModel): ComponentTypeRole = Qt.ItemDataRole.UserRole + 8 IsNetworkedMachineRole = Qt.ItemDataRole.UserRole + 9 - def __init__(self, parent: Optional[QObject] = None, machines_filter: List[GlobalStack] = None, listenToChanges: bool = True) -> None: + def __init__(self, parent: Optional[QObject] = None, machines_filter: List[GlobalStack] = None, listenToChanges: bool = True, showCloudPrinters: bool = False) -> None: super().__init__(parent) - self._show_cloud_printers = False + self._show_cloud_printers = showCloudPrinters self._machines_filter = machines_filter self._catalog = i18nCatalog("cura") @@ -159,3 +159,8 @@ class MachineListModel(ListModel): "machineCount": machine_count, "catergory": "connected" if is_online else "other", }) + + def getItems(self) -> Dict[str, Any]: + if self.count > 0: + return self.items + return {} \ No newline at end of file diff --git a/cura/Machines/VariantNode.py b/cura/Machines/VariantNode.py index 6c3e9359d0..b976841aa7 100644 --- a/cura/Machines/VariantNode.py +++ b/cura/Machines/VariantNode.py @@ -148,7 +148,7 @@ class VariantNode(ContainerNode): if "empty_material" in self.materials: del self.materials["empty_material"] - self.materials[base_file] = MaterialNode(container.getId(), variant = self) + self.materials[base_file] = MaterialNode(container.getId(), variant = self, container = container) self.materials[base_file].materialChanged.connect(self.materialsChanged) self.materialsChanged.emit(self.materials[base_file]) diff --git a/cura/OAuth2/AuthorizationHelpers.py b/cura/OAuth2/AuthorizationHelpers.py index a654ee4bdb..3e7dabaf08 100644 --- a/cura/OAuth2/AuthorizationHelpers.py +++ b/cura/OAuth2/AuthorizationHelpers.py @@ -16,6 +16,7 @@ from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To downlo catalog = i18nCatalog("cura") TOKEN_TIMESTAMP_FORMAT = "%Y-%m-%d %H:%M:%S" +REQUEST_TIMEOUT = 5 # Seconds class AuthorizationHelpers: @@ -40,6 +41,7 @@ class AuthorizationHelpers: """ data = { "client_id": self._settings.CLIENT_ID if self._settings.CLIENT_ID is not None else "", + "client_secret": self._settings.CLIENT_SECRET if self._settings.CLIENT_SECRET is not None else "", "redirect_uri": self._settings.CALLBACK_URL if self._settings.CALLBACK_URL is not None else "", "grant_type": "authorization_code", "code": authorization_code, @@ -52,7 +54,8 @@ class AuthorizationHelpers: data = urllib.parse.urlencode(data).encode("UTF-8"), headers_dict = headers, callback = lambda response: self.parseTokenResponse(response, callback), - error_callback = lambda response, _: self.parseTokenResponse(response, callback) + error_callback = lambda response, _: self.parseTokenResponse(response, callback), + timeout = REQUEST_TIMEOUT ) def getAccessTokenUsingRefreshToken(self, refresh_token: str, callback: Callable[[AuthenticationResponse], None]) -> None: @@ -64,6 +67,7 @@ class AuthorizationHelpers: Logger.log("d", "Refreshing the access token for [%s]", self._settings.OAUTH_SERVER_URL) data = { "client_id": self._settings.CLIENT_ID if self._settings.CLIENT_ID is not None else "", + "client_secret": self._settings.CLIENT_SECRET if self._settings.CLIENT_SECRET is not None else "", "redirect_uri": self._settings.CALLBACK_URL if self._settings.CALLBACK_URL is not None else "", "grant_type": "refresh_token", "refresh_token": refresh_token, @@ -75,7 +79,9 @@ class AuthorizationHelpers: data = urllib.parse.urlencode(data).encode("UTF-8"), headers_dict = headers, callback = lambda response: self.parseTokenResponse(response, callback), - error_callback = lambda response, _: self.parseTokenResponse(response, callback) + error_callback = lambda response, _: self.parseTokenResponse(response, callback), + urgent = True, + timeout = REQUEST_TIMEOUT ) def parseTokenResponse(self, token_response: QNetworkReply, callback: Callable[[AuthenticationResponse], None]) -> None: @@ -120,7 +126,8 @@ class AuthorizationHelpers: check_token_url, headers_dict = headers, callback = lambda reply: self._parseUserProfile(reply, success_callback, failed_callback), - error_callback = lambda _, _2: failed_callback() if failed_callback is not None else None + error_callback = lambda _, _2: failed_callback() if failed_callback is not None else None, + timeout = REQUEST_TIMEOUT ) def _parseUserProfile(self, reply: QNetworkReply, success_callback: Optional[Callable[[UserProfile], None]], failed_callback: Optional[Callable[[], None]] = None) -> None: diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 62bf31982a..e62e00a793 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import json @@ -6,13 +6,14 @@ from datetime import datetime, timedelta from typing import Callable, Dict, Optional, TYPE_CHECKING, Union from urllib.parse import urlencode, quote_plus -from PyQt6.QtCore import QUrl +from PyQt6.QtCore import QUrl, QTimer from PyQt6.QtGui import QDesktopServices from UM.Logger import Logger from UM.Message import Message from UM.Signal import Signal from UM.i18n import i18nCatalog +from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To download log-in tokens. from cura.OAuth2.AuthorizationHelpers import AuthorizationHelpers, TOKEN_TIMESTAMP_FORMAT from cura.OAuth2.LocalAuthorizationServer import LocalAuthorizationServer from cura.OAuth2.Models import AuthenticationResponse, BaseModel @@ -25,26 +26,32 @@ if TYPE_CHECKING: MYCLOUD_LOGOFF_URL = "https://account.ultimaker.com/logoff?utm_source=cura&utm_medium=software&utm_campaign=change-account-before-adding-printers" +REFRESH_TOKEN_MAX_RETRIES = 15 +REFRESH_TOKEN_RETRY_INTERVAL = 1000 class AuthorizationService: """The authorization service is responsible for handling the login flow, storing user credentials and providing account information. """ - # Emit signal when authentication is completed. - onAuthStateChanged = Signal() + def __init__(self, + settings: "OAuth2Settings", + preferences: Optional["Preferences"] = None, + get_user_profile: bool = True) -> None: + # Emit signal when authentication is completed. + self.onAuthStateChanged = Signal() - # Emit signal when authentication failed. - onAuthenticationError = Signal() + # Emit signal when authentication failed. + self.onAuthenticationError = Signal() - accessTokenChanged = Signal() + self.accessTokenChanged = Signal() - def __init__(self, settings: "OAuth2Settings", preferences: Optional["Preferences"] = None) -> None: self._settings = settings self._auth_helpers = AuthorizationHelpers(settings) self._auth_url = "{}/authorize".format(self._settings.OAUTH_SERVER_URL) self._auth_data: Optional[AuthenticationResponse] = None self._user_profile: Optional["UserProfile"] = None + self._get_user_profile: bool = get_user_profile self._preferences = preferences self._server = LocalAuthorizationServer(self._auth_helpers, self._onAuthStateChanged, daemon=True) self._currently_refreshing_token = False # Whether we are currently in the process of refreshing auth. Don't make new requests while busy. @@ -53,6 +60,12 @@ class AuthorizationService: self.onAuthStateChanged.connect(self._authChanged) + self._refresh_token_retries = 0 + self._refresh_token_retry_timer = QTimer() + self._refresh_token_retry_timer.setInterval(REFRESH_TOKEN_RETRY_INTERVAL) + self._refresh_token_retry_timer.setSingleShot(True) + self._refresh_token_retry_timer.timeout.connect(self.refreshAccessToken) + def _authChanged(self, logged_in): if logged_in and self._unable_to_get_data_message is not None: self._unable_to_get_data_message.hide() @@ -163,16 +176,29 @@ class AuthorizationService: return def process_auth_data(response: AuthenticationResponse) -> None: + self._currently_refreshing_token = False + if response.success: + self._refresh_token_retries = 0 self._storeAuthData(response) + HttpRequestManager.getInstance().setDelayRequests(False) self.onAuthStateChanged.emit(logged_in = True) else: - Logger.warning("Failed to get a new access token from the server.") - self.onAuthStateChanged.emit(logged_in = False) + if self._refresh_token_retries >= REFRESH_TOKEN_MAX_RETRIES: + self._refresh_token_retries = 0 + Logger.warning("Failed to get a new access token from the server, giving up.") + HttpRequestManager.getInstance().setDelayRequests(False) + self.onAuthStateChanged.emit(logged_in = False) + else: + # Retry a bit later, network may be offline right now and will hopefully be back soon + Logger.warning("Failed to get a new access token from the server, retrying later.") + self._refresh_token_retries += 1 + self._refresh_token_retry_timer.start() if self._currently_refreshing_token: Logger.debug("Was already busy refreshing token. Do not start a new request.") return + HttpRequestManager.getInstance().setDelayRequests(True) self._currently_refreshing_token = True self._auth_helpers.getAccessTokenUsingRefreshToken(self._auth_data.refresh_token, process_auth_data) @@ -279,7 +305,8 @@ class AuthorizationService: message_type = Message.MessageType.ERROR) Logger.warning("Unable to get user profile using auth data from preferences.") self._unable_to_get_data_message.show() - self.getUserProfile(callback) + if self._get_user_profile: + self.getUserProfile(callback) except (ValueError, TypeError): Logger.logException("w", "Could not load auth data from preferences") @@ -294,7 +321,8 @@ class AuthorizationService: self._auth_data = auth_data self._currently_refreshing_token = False if auth_data: - self.getUserProfile() + if self._get_user_profile: + self.getUserProfile() self._preferences.setValue(self._settings.AUTH_DATA_PREFERENCE_KEY, json.dumps(auth_data.dump())) else: Logger.log("d", "Clearing the user profile") diff --git a/cura/OAuth2/Models.py b/cura/OAuth2/Models.py index 4c84872a09..3427f1cc3d 100644 --- a/cura/OAuth2/Models.py +++ b/cura/OAuth2/Models.py @@ -16,6 +16,7 @@ class OAuth2Settings(BaseModel): CALLBACK_PORT = None # type: Optional[int] OAUTH_SERVER_URL = None # type: Optional[str] CLIENT_ID = None # type: Optional[str] + CLIENT_SECRET = None # type: Optional[str] CLIENT_SCOPES = None # type: Optional[str] CALLBACK_URL = None # type: Optional[str] AUTH_DATA_PREFERENCE_KEY = "" # type: str diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py index 8bdddba554..1017cfc79e 100644 --- a/cura/OneAtATimeIterator.py +++ b/cura/OneAtATimeIterator.py @@ -7,6 +7,11 @@ from UM.Scene.Iterator import Iterator from UM.Scene.SceneNode import SceneNode from functools import cmp_to_key +from cura.HitChecker import HitChecker +from cura.PrintOrderManager import PrintOrderManager +from cura.Scene.CuraSceneNode import CuraSceneNode + + class OneAtATimeIterator(Iterator.Iterator): """Iterator that returns a list of nodes in the order that they need to be printed @@ -16,8 +21,6 @@ class OneAtATimeIterator(Iterator.Iterator): def __init__(self, scene_node) -> None: super().__init__(scene_node) # Call super to make multiple inheritance work. - self._hit_map = [[]] # type: List[List[bool]] # For each node, which other nodes this hits. A grid of booleans on which nodes hit which. - self._original_node_list = [] # type: List[SceneNode] # The nodes that need to be checked for collisions. def _fillStack(self) -> None: """Fills the ``_node_stack`` with a list of scene nodes that need to be printed in order. """ @@ -38,104 +41,50 @@ class OneAtATimeIterator(Iterator.Iterator): self._node_stack = node_list[:] return - # Copy the list - self._original_node_list = node_list[:] + hit_checker = HitChecker(node_list) - # Initialise the hit map (pre-compute all hits between all objects) - self._hit_map = [[self._checkHit(i, j) for i in node_list] for j in node_list] + if PrintOrderManager.isUserDefinedPrintOrderEnabled(): + self._node_stack = self._getNodesOrderedByUser(hit_checker, node_list) + else: + self._node_stack = self._getNodesOrderedAutomatically(hit_checker, node_list) - # Check if we have to files that block each other. If this is the case, there is no solution! - for a in range(0, len(node_list)): - for b in range(0, len(node_list)): - if a != b and self._hit_map[a][b] and self._hit_map[b][a]: - return + # update print orders so that user can try to arrange the nodes automatically first + # and if result is not satisfactory he/she can switch to manual mode and change it + for index, node in enumerate(self._node_stack): + node.printOrder = index + 1 + + @staticmethod + def _getNodesOrderedByUser(hit_checker: HitChecker, node_list: List[CuraSceneNode]) -> List[CuraSceneNode]: + nodes_ordered_by_user = sorted(node_list, key=lambda n: n.printOrder) + if hit_checker.canPrintNodesInProvidedOrder(nodes_ordered_by_user): + return nodes_ordered_by_user + return [] # No solution + + @staticmethod + def _getNodesOrderedAutomatically(hit_checker: HitChecker, node_list: List[CuraSceneNode]) -> List[CuraSceneNode]: + # Check if we have two files that block each other. If this is the case, there is no solution! + if hit_checker.anyTwoNodesBlockEachOther(node_list): + return [] # No solution # Sort the original list so that items that block the most other objects are at the beginning. # This does not decrease the worst case running time, but should improve it in most cases. - sorted(node_list, key = cmp_to_key(self._calculateScore)) + node_list = sorted(node_list, key = cmp_to_key(hit_checker.calculateScore)) todo_node_list = [_ObjectOrder([], node_list)] while len(todo_node_list) > 0: current = todo_node_list.pop() for node in current.todo: # Check if the object can be placed with what we have and still allows for a solution in the future - if not self._checkHitMultiple(node, current.order) and not self._checkBlockMultiple(node, current.todo): + if hit_checker.canPrintAfter(node, current.order) and hit_checker.canPrintBefore(node, current.todo): # We found a possible result. Create new todo & order list. new_todo_list = current.todo[:] new_todo_list.remove(node) new_order = current.order[:] + [node] if len(new_todo_list) == 0: # We have no more nodes to check, so quit looking. - self._node_stack = new_order - return + return new_order # Solution found! todo_node_list.append(_ObjectOrder(new_order, new_todo_list)) - self._node_stack = [] #No result found! - - - # Check if first object can be printed before the provided list (using the hit map) - def _checkHitMultiple(self, node: SceneNode, other_nodes: List[SceneNode]) -> bool: - node_index = self._original_node_list.index(node) - for other_node in other_nodes: - other_node_index = self._original_node_list.index(other_node) - if self._hit_map[node_index][other_node_index]: - return True - return False - - def _checkBlockMultiple(self, node: SceneNode, other_nodes: List[SceneNode]) -> bool: - """Check for a node whether it hits any of the other nodes. - - :param node: The node to check whether it collides with the other nodes. - :param other_nodes: The nodes to check for collisions. - :return: returns collision between nodes - """ - - node_index = self._original_node_list.index(node) - for other_node in other_nodes: - other_node_index = self._original_node_list.index(other_node) - if self._hit_map[other_node_index][node_index] and node_index != other_node_index: - return True - return False - - def _calculateScore(self, a: SceneNode, b: SceneNode) -> int: - """Calculate score simply sums the number of other objects it 'blocks' - - :param a: node - :param b: node - :return: sum of the number of other objects - """ - - score_a = sum(self._hit_map[self._original_node_list.index(a)]) - score_b = sum(self._hit_map[self._original_node_list.index(b)]) - return score_a - score_b - - def _checkHit(self, a: SceneNode, b: SceneNode) -> bool: - """Checks if a can be printed before b - - :param a: node - :param b: node - :return: true if a can be printed before b - """ - - if a == b: - return False - - a_hit_hull = a.callDecoration("getConvexHullBoundary") - b_hit_hull = b.callDecoration("getConvexHullHeadFull") - overlap = a_hit_hull.intersectsPolygon(b_hit_hull) - - if overlap: - return True - - # Adhesion areas must never overlap, regardless of printing order - # This would cause over-extrusion - a_hit_hull = a.callDecoration("getAdhesionArea") - b_hit_hull = b.callDecoration("getAdhesionArea") - overlap = a_hit_hull.intersectsPolygon(b_hit_hull) - - if overlap: - return True - else: - return False + return [] # No result found! class _ObjectOrder: diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 1ef39de80d..c61f78d86e 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -39,6 +39,11 @@ class PlatformPhysics: Application.getInstance().getPreferences().addPreference("physics/automatic_push_free", False) Application.getInstance().getPreferences().addPreference("physics/automatic_drop_down", True) + self._app_all_model_drop = False + + def setAppAllModelDropDown(self): + self._app_all_model_drop = True + self._onChangeTimerFinished() def _onSceneChanged(self, source): if not source.callDecoration("isSliceable"): @@ -80,9 +85,9 @@ class PlatformPhysics: # Move it downwards if bottom is above platform move_vector = Vector() - if node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): #If an object is grouped, don't move it down + if (node.getSetting(SceneNodeSettings.AutoDropDown, app_automatic_drop_down) or self._app_all_model_drop) and not (node.getParent() and node.getParent().callDecoration("isGroup") or node.getParent() != root) and node.isEnabled(): z_offset = node.callDecoration("getZOffset") if node.getDecorator(ZOffsetDecorator.ZOffsetDecorator) else 0 - move_vector = move_vector.set(y = -bbox.bottom + z_offset) + move_vector = move_vector.set(y=-bbox.bottom + z_offset) # If there is no convex hull for the node, start calculating it and continue. if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh") and node.callDecoration("getLayerData") is None: @@ -168,6 +173,8 @@ class PlatformPhysics: op = PlatformPhysicsOperation.PlatformPhysicsOperation(node, move_vector) op.push() + # setting this drop to model same as app_automatic_drop_down + self._app_all_model_drop = False # After moving, we have to evaluate the boundary checks for nodes build_volume.updateNodeBoundaryCheck() diff --git a/cura/PreviewPass.py b/cura/PreviewPass.py index dd1c71bc5e..2c98107a4a 100644 --- a/cura/PreviewPass.py +++ b/cura/PreviewPass.py @@ -45,17 +45,17 @@ class PreviewPass(RenderPass): This is useful to get a preview image of a scene taken from a different location as the active camera. """ - def __init__(self, width: int, height: int) -> None: + def __init__(self, width: int, height: int, *, root: CuraSceneNode = None) -> None: super().__init__("preview", width, height, 0) - self._camera = None # type: Optional[Camera] + self._camera: Optional[Camera] = None self._renderer = Application.getInstance().getRenderer() - self._shader = None # type: Optional[ShaderProgram] - self._non_printing_shader = None # type: Optional[ShaderProgram] - self._support_mesh_shader = None # type: Optional[ShaderProgram] - self._scene = Application.getInstance().getController().getScene() + self._shader: Optional[ShaderProgram] = None + self._non_printing_shader: Optional[ShaderProgram] = None + self._support_mesh_shader: Optional[ShaderProgram] = None + self._root = Application.getInstance().getController().getScene().getRoot() if root is None else root # Set the camera to be used by this render pass # if it's None, the active camera is used @@ -96,7 +96,7 @@ class PreviewPass(RenderPass): batch_support_mesh = RenderBatch(self._support_mesh_shader) # Fill up the batch with objects that can be sliced. - for node in DepthFirstIterator(self._scene.getRoot()): + for node in DepthFirstIterator(self._root): if hasattr(node, "_outside_buildarea") and not getattr(node, "_outside_buildarea"): if node.callDecoration("isSliceable") and node.getMeshData() and node.isVisible(): per_mesh_stack = node.callDecoration("getStack") diff --git a/cura/PrintOrderManager.py b/cura/PrintOrderManager.py new file mode 100644 index 0000000000..59bbe684f4 --- /dev/null +++ b/cura/PrintOrderManager.py @@ -0,0 +1,174 @@ +from typing import List, Callable, Optional, Any + +from PyQt6.QtCore import pyqtProperty, pyqtSignal, QObject, pyqtSlot +from UM.Application import Application +from UM.Scene.Selection import Selection + +from cura.Scene.CuraSceneNode import CuraSceneNode + + +class PrintOrderManager(QObject): + """Allows to order the object list to set the print sequence manually""" + + def __init__(self, get_nodes: Callable[[], List[CuraSceneNode]]) -> None: + super().__init__() + self._get_nodes = get_nodes + self._configureEvents() + + _settingsChanged = pyqtSignal() + _uiActionsOutdated = pyqtSignal() + printOrderChanged = pyqtSignal() + + @pyqtSlot() + def swapSelectedAndPreviousNodes(self) -> None: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + self._swapPrintOrders(selected_node, previous_node) + + @pyqtSlot() + def swapSelectedAndNextNodes(self) -> None: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + self._swapPrintOrders(selected_node, next_node) + + @pyqtProperty(str, notify=_uiActionsOutdated) + def previousNodeName(self) -> str: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + return self._getNodeName(previous_node) + + @pyqtProperty(str, notify=_uiActionsOutdated) + def nextNodeName(self) -> str: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + return self._getNodeName(next_node) + + @pyqtProperty(bool, notify=_uiActionsOutdated) + def shouldEnablePrintBeforeAction(self) -> bool: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + can_swap_with_previous_node = selected_node is not None and previous_node is not None + return can_swap_with_previous_node + + @pyqtProperty(bool, notify=_uiActionsOutdated) + def shouldEnablePrintAfterAction(self) -> bool: + selected_node, previous_node, next_node = self._getSelectedAndNeighborNodes() + can_swap_with_next_node = selected_node is not None and next_node is not None + return can_swap_with_next_node + + @pyqtProperty(bool, notify=_settingsChanged) + def shouldShowEditPrintOrderActions(self) -> bool: + return PrintOrderManager.isUserDefinedPrintOrderEnabled() + + @staticmethod + def isUserDefinedPrintOrderEnabled() -> bool: + stack = Application.getInstance().getGlobalContainerStack() + is_enabled = stack and \ + stack.getProperty("print_sequence", "value") == "one_at_a_time" and \ + stack.getProperty("user_defined_print_order_enabled", "value") + return bool(is_enabled) + + @staticmethod + def initializePrintOrders(nodes: List[CuraSceneNode]) -> None: + """Just created (loaded from file) nodes have print order 0. + + This method initializes print orders with max value to put nodes at the end of object list""" + max_print_order = max(map(lambda n: n.printOrder, nodes), default=0) + for node in nodes: + if node.printOrder == 0: + max_print_order += 1 + node.printOrder = max_print_order + + @staticmethod + def updatePrintOrdersAfterGroupOperation( + all_nodes: List[CuraSceneNode], + group_node: CuraSceneNode, + grouped_nodes: List[CuraSceneNode] + ) -> None: + group_node.printOrder = min(map(lambda n: n.printOrder, grouped_nodes)) + + all_nodes.append(group_node) + for node in grouped_nodes: + all_nodes.remove(node) + + # reassign print orders so there won't be gaps like 1 2 5 6 7 + sorted_nodes = sorted(all_nodes, key=lambda n: n.printOrder) + for i, node in enumerate(sorted_nodes): + node.printOrder = i + 1 + + @staticmethod + def updatePrintOrdersAfterUngroupOperation( + all_nodes: List[CuraSceneNode], + group_node: CuraSceneNode, + ungrouped_nodes: List[CuraSceneNode] + ) -> None: + all_nodes.remove(group_node) + nodes_to_update_print_order = filter(lambda n: n.printOrder > group_node.printOrder, all_nodes) + for node in nodes_to_update_print_order: + node.printOrder += len(ungrouped_nodes) - 1 + + for i, child in enumerate(ungrouped_nodes): + child.printOrder = group_node.printOrder + i + all_nodes.append(child) + + def _swapPrintOrders(self, node1: CuraSceneNode, node2: CuraSceneNode) -> None: + if node1 and node2: + node1.printOrder, node2.printOrder = node2.printOrder, node1.printOrder # swap print orders + self.printOrderChanged.emit() # update object list first + self._uiActionsOutdated.emit() # then update UI actions + + def _getSelectedAndNeighborNodes(self + ) -> (Optional[CuraSceneNode], Optional[CuraSceneNode], Optional[CuraSceneNode]): + nodes = self._get_nodes() + ordered_nodes = sorted(nodes, key=lambda n: n.printOrder) + for i, node in enumerate(ordered_nodes, 1): + node.printOrder = i + + selected_node = PrintOrderManager._getSingleSelectedNode() + if selected_node and selected_node in ordered_nodes: + selected_node_index = ordered_nodes.index(selected_node) + else: + selected_node_index = None + + if selected_node_index is not None and selected_node_index - 1 >= 0: + previous_node = ordered_nodes[selected_node_index - 1] + else: + previous_node = None + + if selected_node_index is not None and selected_node_index + 1 < len(ordered_nodes): + next_node = ordered_nodes[selected_node_index + 1] + else: + next_node = None + + return selected_node, previous_node, next_node + + @staticmethod + def _getNodeName(node: CuraSceneNode, max_length: int = 30) -> str: + node_name = node.getName() if node else "" + truncated_node_name = node_name[:max_length] + return truncated_node_name + + @staticmethod + def _getSingleSelectedNode() -> Optional[CuraSceneNode]: + if len(Selection.getAllSelectedObjects()) == 1: + selected_node = Selection.getSelectedObject(0) + return selected_node + return None + + def _configureEvents(self) -> None: + Selection.selectionChanged.connect(self._onSelectionChanged) + self._global_stack = None + Application.getInstance().globalContainerStackChanged.connect(self._onGlobalStackChanged) + self._onGlobalStackChanged() + + def _onGlobalStackChanged(self) -> None: + if self._global_stack: + self._global_stack.propertyChanged.disconnect(self._onSettingsChanged) + self._global_stack.containersChanged.disconnect(self._onSettingsChanged) + + self._global_stack = Application.getInstance().getGlobalContainerStack() + + if self._global_stack: + self._global_stack.propertyChanged.connect(self._onSettingsChanged) + self._global_stack.containersChanged.connect(self._onSettingsChanged) + + def _onSettingsChanged(self, *args: Any) -> None: + self._settingsChanged.emit() + + def _onSelectionChanged(self) -> None: + self._uiActionsOutdated.emit() diff --git a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py index d54092b8c9..1c68ecce92 100644 --- a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py +++ b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py @@ -40,9 +40,22 @@ class ExtruderConfigurationModel(QObject): def setHotendID(self, hotend_id: Optional[str]) -> None: if self._hotend_id != hotend_id: - self._hotend_id = hotend_id + self._hotend_id = ExtruderConfigurationModel.applyNameMappingHotend(hotend_id) self.extruderConfigurationChanged.emit() + @staticmethod + def applyNameMappingHotend(hotendId) -> str: + _EXTRUDER_NAME_MAP = { + "mk14_hot":"1XA", + "mk14_hot_s":"2XA", + "mk14_c":"1C", + "mk14":"1A", + "mk14_s":"2A" + } + if hotendId in _EXTRUDER_NAME_MAP: + return _EXTRUDER_NAME_MAP[hotendId] + return hotendId + @pyqtProperty(str, fset = setHotendID, notify = extruderConfigurationChanged) def hotendID(self) -> Optional[str]: return self._hotend_id diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 89509ace72..f9125278f0 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -9,6 +9,8 @@ from PyQt6.QtCore import pyqtProperty, QObject class MaterialOutputModel(QObject): def __init__(self, guid: Optional[str], type: str, color: str, brand: str, name: str, parent = None) -> None: super().__init__(parent) + + name, guid = MaterialOutputModel.getMaterialFromDefinition(guid, type, brand, name) self._guid = guid self._type = type self._color = color @@ -19,6 +21,34 @@ class MaterialOutputModel(QObject): def guid(self) -> str: return self._guid if self._guid else "" + @staticmethod + def getMaterialFromDefinition(guid, type, brand, name): + + _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, + "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, + "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, + "asa" :{"name" :"ASA" ,"guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, + "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, + "nylon" :{"name" :"Nylon" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, + "pc" :{"name" :"PC" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, + "petg" :{"name" :"PETG" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, + "pla" :{"name" :"PLA" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, + "pva" :{"name" :"PVA" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, + "wss1" :{"name" :"RapidRinse" ,"guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, + "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, + "bvoh" :{"name" :"BVOH" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, + "cpe" :{"name" :"CPE" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, + "hips" :{"name" :"HIPS" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, + "tpu" :{"name" :"TPU 95A" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"} + } + + + if guid is None and brand != "empty" and type in _MATERIAL_MAP: + name = _MATERIAL_MAP[type]["name"] + guid = _MATERIAL_MAP[type]["guid"] + return name, guid + + @pyqtProperty(str, constant = True) def type(self) -> str: return self._type diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 0fc387a53f..2a683966db 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -415,7 +415,19 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): @pyqtProperty(str, constant = True) def printerType(self) -> str: - return self._properties.get(b"printer_type", b"Unknown").decode("utf-8") + return NetworkedPrinterOutputDevice.applyPrinterTypeMapping(self._properties.get(b"printer_type", b"Unknown").decode("utf-8")) + + @staticmethod + def applyPrinterTypeMapping(printer_type): + _PRINTER_TYPE_NAME = { + "fire_e": "ultimaker_method", + "lava_f": "ultimaker_methodx", + "magma_10": "ultimaker_methodxl", + "sketch": "ultimaker_sketch" + } + if printer_type in _PRINTER_TYPE_NAME: + return _PRINTER_TYPE_NAME[printer_type] + return printer_type @pyqtProperty(str, constant = True) def ipAddress(self) -> str: diff --git a/cura/Scene/CuraSceneNode.py b/cura/Scene/CuraSceneNode.py index 5fbaded650..65b7c1e593 100644 --- a/cura/Scene/CuraSceneNode.py +++ b/cura/Scene/CuraSceneNode.py @@ -11,6 +11,7 @@ from UM.Scene.SceneNode import SceneNode from UM.Scene.SceneNodeDecorator import SceneNodeDecorator # To cast the deepcopy of every decorator back to SceneNodeDecorator. import cura.CuraApplication # To get the build plate. +from UM.Scene.SceneNodeSettings import SceneNodeSettings from cura.Settings.ExtruderStack import ExtruderStack # For typing. from cura.Settings.SettingOverrideDecorator import SettingOverrideDecorator # For per-object settings. @@ -25,13 +26,26 @@ class CuraSceneNode(SceneNode): if not no_setting_override: self.addDecorator(SettingOverrideDecorator()) # Now we always have a getActiveExtruderPosition, unless explicitly disabled self._outside_buildarea = False + self._print_order = 0 def setOutsideBuildArea(self, new_value: bool) -> None: self._outside_buildarea = new_value + @property + def printOrder(self): + return self._print_order + + @printOrder.setter + def printOrder(self, new_value): + self._print_order = new_value + def isOutsideBuildArea(self) -> bool: return self._outside_buildarea or self.callDecoration("getBuildPlateNumber") < 0 + @property + def isDropDownEnabled(self) ->bool: + return self.getSetting(SceneNodeSettings.AutoDropDown, Application.getInstance().getPreferences().getValue("physics/automatic_drop_down")) + def isVisible(self) -> bool: return super().isVisible() and self.callDecoration("getBuildPlateNumber") == cura.CuraApplication.CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate @@ -157,3 +171,6 @@ class CuraSceneNode(SceneNode): def transformChanged(self) -> None: self._transformChanged() + + def __repr__(self) -> str: + return "{print_order}. {name}".format(print_order = self._print_order, name = self.getName()) diff --git a/cura/Settings/CuraStackBuilder.py b/cura/Settings/CuraStackBuilder.py index a25a487c6e..8bc8939e19 100644 --- a/cura/Settings/CuraStackBuilder.py +++ b/cura/Settings/CuraStackBuilder.py @@ -284,16 +284,20 @@ class CuraStackBuilder: abstract_machines = registry.findContainerStacks(id = abstract_machine_id) if abstract_machines: return cast(GlobalStack, abstract_machines[0]) + definitions = registry.findDefinitionContainers(id=definition_id) name = "" - if definitions: name = definitions[0].getName() + stack = cls.createMachine(abstract_machine_id, definition_id, show_warning_message=False) if not stack: return None + if not stack.getMetaDataEntry("visible", True): + return None + stack.setName(name) stack.setMetaDataEntry("is_abstract_machine", True) diff --git a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py index 4b1deae356..b0293c5904 100644 --- a/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py +++ b/cura/Settings/DatabaseHandlers/VariantDatabaseHandler.py @@ -10,13 +10,16 @@ class VariantDatabaseHandler(DatabaseMetadataContainerController): """The Database handler for Variant containers""" def __init__(self): - super().__init__(SQLQueryFactory(table = "variant", - fields = { - "id": "text", - "name": "text", - "hardware_type": "text", - "definition": "text", - "version": "text", - "setting_version": "text" - })) + super().__init__(SQLQueryFactory( + table="variant", + fields={ + "id": "text", + "name": "text", + "hardware_type": "text", + "definition": "text", + "version": "text", + "setting_version": "text", + "reference_extruder_id": "text", + }, + )) self._container_type = InstanceContainer diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 6a152ab51b..3ce83d27e3 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -316,7 +316,13 @@ class ExtruderManager(QObject): # Starts with the adhesion extruder. adhesion_type = global_stack.getProperty("adhesion_type", "value") if adhesion_type in {"skirt", "brim"}: - return max(0, int(global_stack.getProperty("skirt_brim_extruder_nr", "value"))) # optional skirt/brim extruder defaults to zero + skirt_brim_extruder_nr = global_stack.getProperty("skirt_brim_extruder_nr", "value") + # if the skirt_brim_extruder_nr is -1, then we use the first used extruder + if skirt_brim_extruder_nr == -1: + used_extruders = self.getUsedExtruderStacks() + return used_extruders[0].position + else: + return skirt_brim_extruder_nr if adhesion_type == "raft": return global_stack.getProperty("raft_base_extruder_nr", "value") diff --git a/cura/Settings/IntentManager.py b/cura/Settings/IntentManager.py index 7d3e2659bf..df8c1dc9e1 100644 --- a/cura/Settings/IntentManager.py +++ b/cura/Settings/IntentManager.py @@ -145,10 +145,24 @@ class IntentManager(QObject): @pyqtProperty(str, notify = intentCategoryChanged) def currentIntentCategory(self) -> str: application = cura.CuraApplication.CuraApplication.getInstance() - active_extruder_stack = application.getMachineManager().activeStack - if active_extruder_stack is None: - return "" - return active_extruder_stack.intent.getMetaDataEntry("intent_category", "") + global_stack = application.getGlobalContainerStack() + + active_intent = "default" + if global_stack is None: + return active_intent + + # Loop over all active extruders and check if they have an intent that isn't default. + # The logic behind this is that support materials (for instance, PVA) don't have intents, but they should be + # combinable with all other intents. So if one extruder has "engineering" as an intent and the other has + # "default" the 'dominant' intent is "engineering" + for extruder_stack in global_stack.extruderList: + if not extruder_stack.isEnabled: # Ignore disabled stacks + continue + extruder_intent = extruder_stack.intent.getMetaDataEntry("intent_category", "") + if extruder_intent != "default": + active_intent = extruder_intent + + return active_intent @pyqtSlot(str, str) def selectIntent(self, intent_category: str, quality_type: str) -> None: diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 11b55e8507..851e852800 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -48,6 +48,8 @@ from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") from cura.Settings.GlobalStack import GlobalStack if TYPE_CHECKING: + from PyQt6.QtCore import QVariantList + from cura.CuraApplication import CuraApplication from cura.Machines.MaterialNode import MaterialNode from cura.Machines.QualityChangesGroup import QualityChangesGroup @@ -581,6 +583,10 @@ class MachineManager(QObject): def activeMachine(self) -> Optional["GlobalStack"]: return self._global_container_stack + @pyqtProperty("QVariantList", notify=activeVariantChanged) + def activeMachineExtruders(self) -> Optional["QVariantList"]: + return self._global_container_stack.extruderList if self._global_container_stack else None + @pyqtProperty(str, notify = activeStackChanged) def activeStackId(self) -> str: if self._active_container_stack: @@ -841,6 +847,24 @@ class MachineManager(QObject): return result + @pyqtProperty(bool, notify = currentConfigurationChanged) + def variantCoreUsableForFactor4(self) -> bool: + """The selected core is usable if it is in second extruder of Factor4 + """ + result = True + if not self._global_container_stack: + return result + if self.activeMachine.definition.id != "ultimaker_factor4": + return result + + for extruder_container in self._global_container_stack.extruderList: + if extruder_container.definition.id.startswith("ultimaker_factor4_extruder_right"): + if extruder_container.material == empty_material_container: + return True + if extruder_container.variant.id.startswith("ultimaker_factor4_bb"): + return False + return True + @pyqtSlot(str, result = str) def getDefinitionByMachineId(self, machine_id: str) -> Optional[str]: """Get the Definition ID of a machine (specified by ID) diff --git a/cura/Settings/SettingInheritanceManager.py b/cura/Settings/SettingInheritanceManager.py index 5ae00ae271..a49aa254fe 100644 --- a/cura/Settings/SettingInheritanceManager.py +++ b/cura/Settings/SettingInheritanceManager.py @@ -1,6 +1,6 @@ # Copyright (c) 2017 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import List, Optional, TYPE_CHECKING +from typing import List, Optional, Set, TYPE_CHECKING from PyQt6.QtCore import QObject, QTimer, pyqtProperty, pyqtSignal from UM.FlameProfiler import pyqtSlot @@ -168,37 +168,26 @@ class SettingInheritanceManager(QObject): def settingsWithInheritanceWarning(self) -> List[str]: return self._settings_with_inheritance_warning - def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = None) -> bool: - """Check if a setting has an inheritance function that is overwritten""" + def _userSettingIsOverwritingInheritance(self, key: str, stack: ContainerStack, all_keys: Set[str] = set()) -> bool: + """Check if a setting known as having a User state has an inheritance function that is overwritten""" has_setting_function = False - if not stack: - stack = self._active_container_stack - if not stack: # No active container stack yet! - return False - - if self._active_container_stack is None: - return False - all_keys = self._active_container_stack.getAllKeys() containers = [] # type: List[ContainerInterface] - has_user_state = stack.getProperty(key, "state") == InstanceState.User - """Check if the setting has a user state. If not, it is never overwritten.""" - - if not has_user_state: - return False - # If a setting is not enabled, don't label it as overwritten (It's never visible anyway). if not stack.getProperty(key, "enabled"): return False user_container = stack.getTop() - """Also check if the top container is not a setting function (this happens if the inheritance is restored).""" + # Also check if the top container is not a setting function (this happens if the inheritance is restored). if user_container and isinstance(user_container.getProperty(key, "value"), SettingFunction): return False + if not all_keys: + all_keys = self._active_container_stack.getAllKeys() + ## Mash all containers for all the stacks together. while stack: containers.extend(stack.getContainers()) @@ -229,17 +218,35 @@ class SettingInheritanceManager(QObject): break # There is a setting function somewhere, stop looking deeper. return has_setting_function and has_non_function_value + def _settingIsOverwritingInheritance(self, key: str, stack: ContainerStack = None) -> bool: + """Check if a setting has an inheritance function that is overwritten""" + + if not stack: + stack = self._active_container_stack + if not stack: # No active container stack yet! + return False + + if self._active_container_stack is None: + return False + + has_user_state = stack.getProperty(key, "state") == InstanceState.User + + if not has_user_state: + return False + + return self._userSettingIsOverwritingInheritance(key, stack) + def _update(self) -> None: self._settings_with_inheritance_warning = [] # Reset previous data. # Make sure that the GlobalStack is not None. sometimes the globalContainerChanged signal gets here late. - if self._global_container_stack is None: + if self._global_container_stack is None or self._active_container_stack is None: return - # Check all setting keys that we know of and see if they are overridden. - for setting_key in self._global_container_stack.getAllKeys(): - override = self._settingIsOverwritingInheritance(setting_key) - if override: + # Check all user setting keys that we know of and see if they are overridden. + all_keys = self._active_container_stack.getAllKeys() + for setting_key in self._active_container_stack.getAllKeysWithUserState(): + if self._userSettingIsOverwritingInheritance(setting_key, self._active_container_stack, all_keys): self._settings_with_inheritance_warning.append(setting_key) # Check all the categories if any of their children have their inheritance overwritten. diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index 61ab1204fe..0448ddc647 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -5,16 +5,18 @@ import json import os from typing import List, Optional +from PyQt6.QtCore import QUrl from PyQt6.QtNetwork import QLocalServer, QLocalSocket -from UM.Qt.QtApplication import QtApplication #For typing. +from UM.Qt.QtApplication import QtApplication # For typing. from UM.Logger import Logger class SingleInstance: - def __init__(self, application: QtApplication, files_to_open: Optional[List[str]]) -> None: + def __init__(self, application: QtApplication, files_to_open: Optional[List[str]], url_to_open: Optional[List[str]]) -> None: self._application = application self._files_to_open = files_to_open + self._url_to_open = url_to_open self._single_instance_server = None @@ -33,7 +35,7 @@ class SingleInstance: return False # We only send the files that need to be opened. - if not self._files_to_open: + if not self._files_to_open and not self._url_to_open: Logger.log("i", "No file need to be opened, do nothing.") return True @@ -55,8 +57,12 @@ class SingleInstance: payload = {"command": "open", "filePath": os.path.abspath(filename)} single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + for url in self._url_to_open: + payload = {"command": "open-url", "urlPath": url.toString()} + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) + payload = {"command": "close-connection"} - single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding = "ascii")) + single_instance_socket.write(bytes(json.dumps(payload) + "\n", encoding="ascii")) single_instance_socket.flush() single_instance_socket.waitForDisconnected() @@ -72,7 +78,7 @@ class SingleInstance: def _onClientConnected(self) -> None: Logger.log("i", "New connection received on our single-instance server") - connection = None #type: Optional[QLocalSocket] + connection = None # type: Optional[QLocalSocket] if self._single_instance_server: connection = self._single_instance_server.nextPendingConnection() @@ -81,7 +87,7 @@ class SingleInstance: def __readCommands(self, connection: QLocalSocket) -> None: line = connection.readLine() - while len(line) != 0: # There is also a .canReadLine() + while len(line) != 0: # There is also a .canReadLine() try: payload = json.loads(str(line, encoding = "ascii").strip()) command = payload["command"] @@ -94,13 +100,19 @@ class SingleInstance: elif command == "open": self._application.callLater(lambda f = payload["filePath"]: self._application._openFile(f)) + #command: Load a url link in Cura + elif command == "open-url": + url = QUrl(payload["urlPath"]) + self._application.callLater(lambda: self._application._openUrl(url)) + + # Command: Activate the window and bring it to the top. elif command == "focus": # Operating systems these days prevent windows from moving around by themselves. # 'alert' or flashing the icon in the taskbar is the best thing we do now. main_window = self._application.getMainWindow() if main_window is not None: - self._application.callLater(lambda: main_window.alert(0)) # type: ignore # I don't know why MyPy complains here + self._application.callLater(lambda: main_window.alert(0)) # type: ignore # I don't know why MyPy complains here # Command: Close the socket connection. We're done. elif command == "close-connection": diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 1266d3dcb1..65a51539cc 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -1,7 +1,9 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import numpy +from typing import Optional + from PyQt6 import QtCore from PyQt6.QtCore import QCoreApplication from PyQt6.QtGui import QImage @@ -10,30 +12,133 @@ from UM.Logger import Logger from cura.PreviewPass import PreviewPass from UM.Application import Application +from UM.Math.AxisAlignedBox import AxisAlignedBox from UM.Math.Matrix import Matrix from UM.Math.Vector import Vector from UM.Scene.Camera import Camera from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator - +from UM.Scene.SceneNode import SceneNode +from UM.Qt.QtRenderer import QtRenderer class Snapshot: + + DEFAULT_WIDTH_HEIGHT = 300 + MAX_RENDER_DISTANCE = 10000 + BOUND_BOX_FACTOR = 1.75 + CAMERA_FOVY = 30 + ATTEMPTS_FOR_SNAPSHOT = 10 + @staticmethod - def getImageBoundaries(image: QImage): - # Look at the resulting image to get a good crop. - # Get the pixels as byte array + def getNonZeroPixels(image: QImage): pixel_array = image.bits().asarray(image.sizeInBytes()) width, height = image.width(), image.height() - # Convert to numpy array, assume it's 32 bit (it should always be) pixels = numpy.frombuffer(pixel_array, dtype=numpy.uint8).reshape([height, width, 4]) # Find indices of non zero pixels - nonzero_pixels = numpy.nonzero(pixels) + return numpy.nonzero(pixels) + + @staticmethod + def getImageBoundaries(image: QImage): + nonzero_pixels = Snapshot.getNonZeroPixels(image) min_y, min_x, min_a_ = numpy.amin(nonzero_pixels, axis=1) # type: ignore max_y, max_x, max_a_ = numpy.amax(nonzero_pixels, axis=1) # type: ignore return min_x, max_x, min_y, max_y @staticmethod - def snapshot(width = 300, height = 300): + def isometricSnapshot(width: int = DEFAULT_WIDTH_HEIGHT, height: int = DEFAULT_WIDTH_HEIGHT, *, node: Optional[SceneNode] = None) -> Optional[QImage]: + """ + Create an isometric snapshot of the scene. + + :param width: width of the aspect ratio default 300 + :param height: height of the aspect ratio default 300 + :param node: node of the scene default is the root of the scene + :return: None when there is no model on the build plate otherwise it will return an image + + """ + + if node is None: + node = Application.getInstance().getController().getScene().getRoot() + + # the direction the camera is looking at to create the isometric view + iso_view_dir = Vector(-1, -1, -1).normalized() + + bounds = Snapshot.nodeBounds(node) + if bounds is None: + Logger.log("w", "There appears to be nothing to render") + return None + + camera = Camera("snapshot") + + # find local x and y directional vectors of the camera + tangent_space_x_direction = iso_view_dir.cross(Vector.Unit_Y).normalized() + tangent_space_y_direction = tangent_space_x_direction.cross(iso_view_dir).normalized() + + # find extreme screen space coords of the scene + x_points = [p.dot(tangent_space_x_direction) for p in bounds.points] + y_points = [p.dot(tangent_space_y_direction) for p in bounds.points] + min_x = min(x_points) + max_x = max(x_points) + min_y = min(y_points) + max_y = max(y_points) + camera_width = max_x - min_x + camera_height = max_y - min_y + + if camera_width == 0 or camera_height == 0: + Logger.log("w", "There appears to be nothing to render") + return None + + # increase either width or height to match the aspect ratio of the image + if camera_width / camera_height > width / height: + camera_height = camera_width * height / width + else: + camera_width = camera_height * width / height + + # Configure camera for isometric view + ortho_matrix = Matrix() + ortho_matrix.setOrtho( + -camera_width / 2, + camera_width / 2, + -camera_height / 2, + camera_height / 2, + -Snapshot.MAX_RENDER_DISTANCE, + Snapshot.MAX_RENDER_DISTANCE + ) + camera.setPerspective(False) + camera.setProjectionMatrix(ortho_matrix) + camera.setPosition(bounds.center) + camera.lookAt(bounds.center + iso_view_dir) + + # Render the scene + renderer = QtRenderer() + render_pass = PreviewPass(width, height, root=node) + renderer.setViewportSize(width, height) + renderer.setWindowSize(width, height) + render_pass.setCamera(camera) + renderer.addRenderPass(render_pass) + renderer.beginRendering() + renderer.render() + + return render_pass.getOutput() + + @staticmethod + def isNodeRenderable(node): + return not getattr(node, "_outside_buildarea", False) and node.callDecoration( + "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration( + "isNonThumbnailVisibleMesh") + + @staticmethod + def nodeBounds(root_node: SceneNode) -> Optional[AxisAlignedBox]: + axis_aligned_box = None + for node in DepthFirstIterator(root_node): + if Snapshot.isNodeRenderable(node): + if axis_aligned_box is None: + axis_aligned_box = node.getBoundingBox() + else: + axis_aligned_box = axis_aligned_box + node.getBoundingBox() + return axis_aligned_box + + @staticmethod + def snapshot(width = DEFAULT_WIDTH_HEIGHT, height = DEFAULT_WIDTH_HEIGHT, number_of_attempts = ATTEMPTS_FOR_SNAPSHOT): """Return a QImage of the scene Uses PreviewPass that leaves out some elements Aspect ratio assumes a square @@ -55,14 +160,7 @@ class Snapshot: camera = Camera("snapshot", root) # determine zoom and look at - bbox = None - for node in DepthFirstIterator(root): - if not getattr(node, "_outside_buildarea", False): - if node.callDecoration("isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration("isNonThumbnailVisibleMesh"): - if bbox is None: - bbox = node.getBoundingBox() - else: - bbox = bbox + node.getBoundingBox() + bbox = Snapshot.nodeBounds(root) # If there is no bounding box, it means that there is no model in the buildplate if bbox is None: Logger.log("w", "Unable to create snapshot as we seem to have an empty buildplate") @@ -76,13 +174,13 @@ class Snapshot: looking_from_offset = Vector(-1, 1, 2) if size > 0: # determine the watch distance depending on the size - looking_from_offset = looking_from_offset * size * 1.75 + looking_from_offset = looking_from_offset * size * Snapshot.BOUND_BOX_FACTOR camera.setPosition(look_at + looking_from_offset) camera.lookAt(look_at) satisfied = False size = None - fovy = 30 + fovy = Snapshot.CAMERA_FOVY while not satisfied: if size is not None: @@ -97,9 +195,14 @@ class Snapshot: pixel_output = preview_pass.getOutput() try: min_x, max_x, min_y, max_y = Snapshot.getImageBoundaries(pixel_output) - except (ValueError, AttributeError): - Logger.logException("w", "Failed to crop the snapshot!") - return None + except (ValueError, AttributeError) as e: + if number_of_attempts == 0: + Logger.warning( f"Failed to crop the snapshot even after {Snapshot.ATTEMPTS_FOR_SNAPSHOT} attempts!") + return None + else: + number_of_attempts = number_of_attempts - 1 + Logger.info("Trying to get the snapshot again.") + return Snapshot.snapshot(width, height, number_of_attempts) size = max((max_x - min_x) / render_width, (max_y - min_y) / render_height) if size > 0.5 or satisfied: diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py index 4f64270247..4d5a4dfc81 100644 --- a/cura/UI/ObjectsModel.py +++ b/cura/UI/ObjectsModel.py @@ -14,6 +14,9 @@ from UM.Scene.SceneNode import SceneNode from UM.Scene.Selection import Selection from UM.i18n import i18nCatalog +from cura.PrintOrderManager import PrintOrderManager +from cura.Scene.CuraSceneNode import CuraSceneNode + catalog = i18nCatalog("cura") @@ -76,6 +79,9 @@ class ObjectsModel(ListModel): self._build_plate_number = nr self._update() + def getNodes(self) -> List[CuraSceneNode]: + return list(map(lambda n: n["node"], self.items)) + def _updateSceneDelayed(self, source) -> None: if not isinstance(source, Camera): self._update_timer.start() @@ -175,6 +181,10 @@ class ObjectsModel(ListModel): all_nodes = self._renameNodes(name_to_node_info_dict) + user_defined_print_order_enabled = PrintOrderManager.isUserDefinedPrintOrderEnabled() + if user_defined_print_order_enabled: + PrintOrderManager.initializePrintOrders(all_nodes) + for node in all_nodes: if hasattr(node, "isOutsideBuildArea"): is_outside_build_area = node.isOutsideBuildArea() # type: ignore @@ -223,8 +233,13 @@ class ObjectsModel(ListModel): # for anti overhang meshes and groups the extruder nr is irrelevant extruder_number = -1 + if not user_defined_print_order_enabled: + name = node.getName() + else: + name = "{print_order}. {name}".format(print_order = node.printOrder, name = node.getName()) + nodes.append({ - "name": node.getName(), + "name": name, "selected": Selection.isSelected(node), "outside_build_area": is_outside_build_area, "buildplate_number": node_build_plate_number, @@ -234,5 +249,5 @@ class ObjectsModel(ListModel): "node": node }) - nodes = sorted(nodes, key=lambda n: n["name"]) + nodes = sorted(nodes, key=lambda n: n["name"] if not user_defined_print_order_enabled else n["node"].printOrder) self.setItems(nodes) diff --git a/cura_app.py b/cura_app.py index 905d8f4ee0..bcea032789 100755 --- a/cura_app.py +++ b/cura_app.py @@ -15,6 +15,10 @@ if "" in sys.path: import argparse import faulthandler import os + +# set the environment variable QT_QUICK_FLICKABLE_WHEEL_DECELERATION to 5000 as mentioned in qt6.6 update log to overcome scroll related issues +os.environ["QT_QUICK_FLICKABLE_WHEEL_DECELERATION"] = str(int(os.environ.get("QT_QUICK_FLICKABLE_WHEEL_DECELERATION", "5000"))) + if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 574809be88..9090a5f209 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -14,38 +14,9 @@ AppDir: - amd64 allow_unauthenticated: true sources: - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy main restricted - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy-updates main restricted - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy universe - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy-updates universe - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy multiverse - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy-updates multiverse - - sourceline: deb http://nl.archive.ubuntu.com/ubuntu/ jammy-backports main restricted - universe multiverse - - sourceline: deb http://security.ubuntu.com/ubuntu jammy-security main restricted - - sourceline: deb http://security.ubuntu.com/ubuntu jammy-security universe - - sourceline: deb http://security.ubuntu.com/ubuntu jammy-security multiverse - - sourceline: deb https://releases.jfrog.io/artifactory/jfrog-debs xenial contrib - - sourceline: deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-14 main - - sourceline: deb https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu/ - jammy main - - sourceline: deb https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu/ jammy - main - - sourceline: deb [arch=amd64] https://packages.microsoft.com/repos/ms-teams stable - main - - sourceline: deb https://ppa.launchpadcontent.net/ppa-verse/cling/ubuntu/ jammy - main - - sourceline: deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable - main - - sourceline: deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_14.x - jammy main - - sourceline: deb [arch=amd64 signed-by=/usr/share/keyrings/transip-stack.gpg] - https://mirror.transip.net/stack/software/deb/Ubuntu_22.04/ ./ - - sourceline: deb http://repository.spotify.com stable non-free - - sourceline: deb [arch=amd64,arm64,armhf] http://packages.microsoft.com/repos/code - stable main - - sourceline: deb https://packagecloud.io/slacktechnologies/slack/debian/ jessie - main + - sourceline: deb http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse + - sourceline: deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse + - sourceline: deb http://security.ubuntu.com/ubuntu jammy-security main restricted universe multiverse include: - xdg-desktop-portal-kde - libgtk-3-0 @@ -67,6 +38,7 @@ AppDir: - usr/share/doc/*/changelog.* - usr/share/doc/*/NEWS.* - usr/share/doc/*/TODO.* + - usr/lib/x86_64-linux-gnu/libssl.so* runtime: env: APPDIR_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" diff --git a/packaging/MacOS/build_macos.py b/packaging/MacOS/build_macos.py index eae9afceff..fc78abf76f 100644 --- a/packaging/MacOS/build_macos.py +++ b/packaging/MacOS/build_macos.py @@ -87,15 +87,16 @@ def notarize_file(dist_path: str, filename: str) -> None: """ Notarize a file. This takes 5+ minutes, there is indication that this step is successful.""" notarize_user = os.environ.get("MAC_NOTARIZE_USER") notarize_password = os.environ.get("MAC_NOTARIZE_PASS") - altool_executable = os.environ.get("ALTOOL_EXECUTABLE", "altool") + notarize_team = os.environ.get("MACOS_CERT_USER") + notary_executable = os.environ.get("NOTARY_TOOL_EXECUTABLE", "notarytool") notarize_arguments = [ - "xcrun", altool_executable, - "--notarize-app", - "--primary-bundle-id", ULTIMAKER_CURA_DOMAIN, - "--username", notarize_user, + "xcrun", notary_executable, + "submit", + "--apple-id", notarize_user, "--password", notarize_password, - "--file", Path(dist_path, filename) + "--team-id", notarize_team, + Path(dist_path, filename) ] subprocess.run(notarize_arguments) diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 9996b24773..0a2ce0f517 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -144,6 +144,23 @@ SectionEnd ###################################################################### +Section UrlProtocol + +WriteRegStr HKCR "cura" "" "URL:cura" +WriteRegStr HKCR "cura" "URL Protocol" "" +WriteRegStr HKCR "cura\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" +WriteRegStr HKCR "cura\shell" "" "open" +WriteRegStr HKCR "cura\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + +WriteRegStr HKCR "slicer" "" "URL:slicer" +WriteRegStr HKCR "slicer" "URL Protocol" "" +WriteRegStr HKCR "slicer\DefaultIcon" "" "$INSTDIR\${MAIN_APP_EXE},1" +WriteRegStr HKCR "slicer\shell" "" "open" +WriteRegStr HKCR "slicer\shell\open\command" "" '"$INSTDIR\${MAIN_APP_EXE}" "%1"' + +SectionEnd +###################################################################### + Section Uninstall ${INSTALL_TYPE}{% for files in mapped_out_paths.values() %}{% for file in files %} Delete "{{ file[1] }}"{% endfor %}{% endfor %}{% for rem_dir in rmdir_paths %} @@ -187,8 +204,13 @@ RmDir "$SMPROGRAMS\{{ app_name }}" !insertmacro APP_UNASSOCIATE "stl" "Cura.model" !insertmacro APP_UNASSOCIATE "3mf" "Cura.project" +; Unassociate file associations for 'cura' protocol +DeleteRegKey HKCR "cura" + +; Unassociate file associations for 'slicer' protocol +DeleteRegKey HKCR "slicer" + DeleteRegKey ${REG_ROOT} "${REG_APP_PATH}" DeleteRegKey ${REG_ROOT} "${UNINSTALL_PATH}" SectionEnd -###################################################################### diff --git a/packaging/msi/UltiMaker-Cura.wxs.jinja b/packaging/msi/UltiMaker-Cura.wxs.jinja index a183a97d5f..21f017c813 100644 --- a/packaging/msi/UltiMaker-Cura.wxs.jinja +++ b/packaging/msi/UltiMaker-Cura.wxs.jinja @@ -33,6 +33,21 @@ /> + + + + + {% if "Enterprise" in app_name %} @@ -144,11 +159,32 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins/3MFReader/SpecificSettingsModel.py b/plugins/3MFReader/SpecificSettingsModel.py new file mode 100644 index 0000000000..1b1319d391 --- /dev/null +++ b/plugins/3MFReader/SpecificSettingsModel.py @@ -0,0 +1,62 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import Qt, pyqtSignal + +from UM import i18nCatalog +from UM.Logger import Logger +from UM.Settings.SettingDefinition import SettingDefinition +from UM.Qt.ListModel import ListModel + + +class SpecificSettingsModel(ListModel): + CategoryRole = Qt.ItemDataRole.UserRole + 1 + LabelRole = Qt.ItemDataRole.UserRole + 2 + ValueRole = Qt.ItemDataRole.UserRole + 3 + + def __init__(self, parent = None): + super().__init__(parent = parent) + self.addRoleName(self.CategoryRole, "category") + self.addRoleName(self.LabelRole, "label") + self.addRoleName(self.ValueRole, "value") + + self._settings_catalog = i18nCatalog("fdmprinter.def.json") + self._update() + + modelChanged = pyqtSignal() + + + def addSettingsFromStack(self, stack, category, settings): + for setting, value in settings.items(): + unit = stack.getProperty(setting, "unit") + + setting_type = stack.getProperty(setting, "type") + if setting_type is not None: + # This is not very good looking, but will do for now + value = str(SettingDefinition.settingValueToString(setting_type, value)) + if unit: + value += " " + str(unit) + if setting_type == "enum": + options = stack.getProperty(setting, "options") + value_msgctxt = f"{str(setting)} option {str(value)}" + value_msgid = options[stack.getProperty(setting, "value")] + value = self._settings_catalog.i18nc(value_msgctxt, value_msgid) + else: + value = str(value) + + label_msgctxt = f"{str(setting)} label" + label_msgid = stack.getProperty(setting, "label") + label = self._settings_catalog.i18nc(label_msgctxt, label_msgid) + + self.appendItem({ + "category": category, + "label": label, + "value": value + }) + self.modelChanged.emit() + + def _update(self): + Logger.debug(f"Updating {self.__class__.__name__}") + self.setItems([]) + self.modelChanged.emit() + return diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index cf8079d75d..99852d84ce 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -16,6 +16,7 @@ from UM.Mesh.MeshReader import MeshReader from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.Scene.GroupDecorator import GroupDecorator from UM.Scene.SceneNode import SceneNode # For typing. +from UM.Scene.SceneNodeSettings import SceneNodeSettings from cura.CuraApplication import CuraApplication from cura.Machines.ContainerTree import ContainerTree from cura.Scene.BuildPlateDecorator import BuildPlateDecorator @@ -41,7 +42,7 @@ class ThreeMFReader(MeshReader): MimeTypeDatabase.addMimeType( MimeType( - name = "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + name="application/vnd.ms-package.3dmanufacturing-3dmodel+xml", comment="3MF", suffixes=["3mf"] ) @@ -177,6 +178,12 @@ class ThreeMFReader(MeshReader): else: Logger.log("w", "Unable to find extruder in position %s", setting_value) continue + if key == "print_order": + um_node.printOrder = int(setting_value) + continue + if key =="drop_to_buildplate": + um_node.setSetting(SceneNodeSettings.AutoDropDown, eval(setting_value)) + continue if key in known_setting_keys: setting_container.setProperty(key, "value", setting_value) else: @@ -233,8 +240,7 @@ class ThreeMFReader(MeshReader): if mesh_data is not None: extents = mesh_data.getExtents() if extents is not None: - # We use a different coordinate space, so flip Z and Y - center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) + center_vector = Vector(extents.center.x, extents.center.y, extents.center.z) transform_matrix.setByTranslation(center_vector) transform_matrix.multiply(um_node.getLocalTransformation()) um_node.setTransformation(transform_matrix) diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 4e3962fd10..3769db4d14 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -5,10 +5,13 @@ from configparser import ConfigParser import zipfile import os import json +import re from typing import cast, Dict, List, Optional, Tuple, Any, Set import xml.etree.ElementTree as ET +from UM.Math.AxisAlignedBox import AxisAlignedBox +from UM.Math.Vector import Vector from UM.Util import parseBool from UM.Workspace.WorkspaceReader import WorkspaceReader from UM.Application import Application @@ -57,6 +60,7 @@ _ignored_machine_network_metadata: Set[str] = { "is_abstract_machine" } +USER_SETTINGS_PATH = "Cura/user-settings.json" class ContainerInfo: def __init__(self, file_name: Optional[str], serialized: Optional[str], parser: Optional[ConfigParser]) -> None: @@ -115,6 +119,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._supported_extensions = [".3mf"] self._dialog = WorkspaceDialog() self._3mf_mesh_reader = None + self._is_ucp = None self._container_registry = ContainerRegistry.getInstance() # suffixes registered with the MimeTypes don't start with a dot '.' @@ -141,10 +146,16 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._old_new_materials: Dict[str, str] = {} self._machine_info = None + self._user_settings: Dict[str, Dict[str, Any]] = {} + def _clearState(self): self._id_mapping = {} self._old_new_materials = {} self._machine_info = None + self._user_settings = {} + + def clearOpenAsUcp(self): + self._is_ucp = None def getNewId(self, old_id: str): """Get a unique name based on the old_id. This is different from directly calling the registry in that it caches results. @@ -200,6 +211,16 @@ class ThreeMFWorkspaceReader(WorkspaceReader): return global_stack_file_list[0], extruder_stack_file_list + def _isProjectUcp(self, file_name) -> bool: + if self._is_ucp == None: + archive = zipfile.ZipFile(file_name, "r") + cura_file_names = [name for name in archive.namelist() if name.startswith("Cura/")] + self._is_ucp =True if USER_SETTINGS_PATH in cura_file_names else False + + def getIsProjectUcp(self) -> bool: + return self._is_ucp + + def preRead(self, file_name, show_dialog=True, *args, **kwargs): """Read some info so we can make decisions @@ -208,7 +229,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): we don't want to show a dialog. """ self._clearState() - + self._isProjectUcp(file_name) self._3mf_mesh_reader = Application.getInstance().getMeshFileHandler().getReaderForFile(file_name) if self._3mf_mesh_reader and self._3mf_mesh_reader.preRead(file_name) == WorkspaceReader.PreReadResult.accepted: pass @@ -228,11 +249,14 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._resolve_strategies = {k: None for k in resolve_strategy_keys} containers_found_dict = {k: False for k in resolve_strategy_keys} + # Check whether the file is a UCP, which changes some import options + is_ucp = USER_SETTINGS_PATH in cura_file_names + # # Read definition containers # machine_definition_id = None - updatable_machines = [] + updatable_machines = None if self._is_ucp else [] machine_definition_container_count = 0 extruder_definition_container_count = 0 definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] @@ -250,7 +274,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): if definition_container_type == "machine": machine_definition_id = container_id machine_definition_containers = self._container_registry.findDefinitionContainers(id = machine_definition_id) - if machine_definition_containers: + if machine_definition_containers and updatable_machines is not None: updatable_machines = [machine for machine in self._container_registry.findContainerStacks(type = "machine") if machine.definition == machine_definition_containers[0]] machine_type = definition_container["name"] variant_type_name = definition_container.get("variants_name", variant_type_name) @@ -597,6 +621,39 @@ class ThreeMFWorkspaceReader(WorkspaceReader): package_metadata = self._parse_packages_metadata(archive) missing_package_metadata = self._filter_missing_package_metadata(package_metadata) + # Load the user specifically exported settings + self._dialog.exportedSettingModel.clear() + self._dialog.setCurrentMachineName("") + if self._is_ucp: + try: + self._user_settings = json.loads(archive.open("Cura/user-settings.json").read().decode("utf-8")) + any_extruder_stack = ExtruderManager.getInstance().getExtruderStack(0) + actual_global_stack = CuraApplication.getInstance().getGlobalContainerStack() + self._dialog.setCurrentMachineName(actual_global_stack.id) + + for stack_name, settings in self._user_settings.items(): + if stack_name == 'global': + self._dialog.exportedSettingModel.addSettingsFromStack(actual_global_stack, i18n_catalog.i18nc("@label", "Global"), settings) + else: + extruder_match = re.fullmatch('extruder_([0-9]+)', stack_name) + if extruder_match is not None: + extruder_nr = int(extruder_match.group(1)) + self._dialog.exportedSettingModel.addSettingsFromStack(any_extruder_stack, + i18n_catalog.i18nc("@label", + "Extruder {0}", extruder_nr + 1), + settings) + except KeyError as e: + # If there is no user settings file, it's not a UCP, so notify user of failure. + Logger.log("w", "File %s is not a valid UCP.", file_name) + message = Message( + i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", + "Project file {0} is corrupt: {1}.", + file_name, str(e)), + title=i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type=Message.MessageType.ERROR) + message.show() + return WorkspaceReader.PreReadResult.failed + # Show the dialog, informing the user what is about to happen. self._dialog.setMachineConflict(machine_conflict) self._dialog.setIsPrinterGroup(is_printer_group) @@ -606,7 +663,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._dialog.setNumVisibleSettings(num_visible_settings) self._dialog.setQualityName(quality_name) self._dialog.setQualityType(quality_type) - self._dialog.setIntentName(intent_name) + self._dialog.setIntentName(intent_category) self._dialog.setNumSettingsOverriddenByQualityChanges(num_settings_overridden_by_quality_changes) self._dialog.setNumUserSettings(num_user_settings) self._dialog.setActiveMode(active_mode) @@ -617,12 +674,15 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._dialog.setVariantType(variant_type_name) self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) self._dialog.setMissingPackagesMetadata(missing_package_metadata) + self._dialog.setAllowCreatemachine(not self._is_ucp) + self._dialog.setIsUcp(self._is_ucp) self._dialog.show() + # Choosing the initially selected printer in MachineSelector is_networked_machine = False is_abstract_machine = False - if global_stack and isinstance(global_stack, GlobalStack): + if global_stack and isinstance(global_stack, GlobalStack) and not self._is_ucp: # The machine included in the project file exists locally already, no need to change selected printers. is_networked_machine = global_stack.hasNetworkedConnection() is_abstract_machine = parseBool(existing_global_stack.getMetaDataEntry("is_abstract_machine", False)) @@ -631,7 +691,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): elif self._dialog.updatableMachinesModel.count > 0: # The machine included in the project file does not exist. There is another machine of the same type. # This will always default to an abstract machine first. - machine = self._dialog.updatableMachinesModel.getItem(0) + machine = self._dialog.updatableMachinesModel.getItem(self._dialog.currentMachinePositionIndex) machine_name = machine["name"] is_networked_machine = machine["isNetworked"] is_abstract_machine = machine["isAbstractMachine"] @@ -648,6 +708,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._dialog.setIsNetworkedMachine(is_networked_machine) self._dialog.setIsAbstractMachine(is_abstract_machine) self._dialog.setMachineName(machine_name) + self._dialog.updateCompatibleMachine() # Block until the dialog is closed. self._dialog.waitForClose() @@ -669,7 +730,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): if key not in containers_found_dict or strategy is not None: continue self._resolve_strategies[key] = "override" if containers_found_dict[key] else "new" - return WorkspaceReader.PreReadResult.accepted @call_on_qt_thread @@ -690,16 +750,16 @@ class ThreeMFWorkspaceReader(WorkspaceReader): except EnvironmentError as e: message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", "Project file {0} is suddenly inaccessible: {1}.", file_name, str(e)), - title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), - message_type = Message.MessageType.ERROR) + title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") return [], {} except zipfile.BadZipFile as e: message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tags or !", "Project file {0} is corrupt: {1}.", file_name, str(e)), - title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), - message_type = Message.MessageType.ERROR) + title = i18n_catalog.i18nc("@info:title", "Can't Open Project File"), + message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") return [], {} @@ -761,9 +821,9 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # Find the machine which will be overridden global_stacks = self._container_registry.findContainerStacks(id = self._dialog.getMachineToOverride(), type = "machine") if not global_stacks: - message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag !", + message = Message(i18n_catalog.i18nc("@info:error Don't translate the XML tag !", "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura.", file_name), - message_type = Message.MessageType.ERROR) + message_type = Message.MessageType.ERROR) message.show() self.setWorkspaceName("") return [], {} @@ -777,84 +837,86 @@ class ThreeMFWorkspaceReader(WorkspaceReader): for stack in extruder_stacks: stack.setNextStack(global_stack, connect_signals = False) - Logger.log("d", "Workspace loading is checking definitions...") - # Get all the definition files & check if they exist. If not, add them. - definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] - for definition_container_file in definition_container_files: - container_id = self._stripFileToId(definition_container_file) + if not self._is_ucp: + Logger.log("d", "Workspace loading is checking definitions...") + # Get all the definition files & check if they exist. If not, add them. + definition_container_files = [name for name in cura_file_names if name.endswith(self._definition_container_suffix)] + for definition_container_file in definition_container_files: + container_id = self._stripFileToId(definition_container_file) - definitions = self._container_registry.findDefinitionContainersMetadata(id = container_id) - if not definitions: - definition_container = DefinitionContainer(container_id) - try: - definition_container.deserialize(archive.open(definition_container_file).read().decode("utf-8"), - file_name = definition_container_file) - except ContainerFormatError: - # We cannot just skip the definition file because everything else later will just break if the - # machine definition cannot be found. - Logger.logException("e", "Failed to deserialize definition file %s in project file %s", - definition_container_file, file_name) - definition_container = self._container_registry.findDefinitionContainers(id = "fdmprinter")[0] #Fall back to defaults. - self._container_registry.addContainer(definition_container) - Job.yieldThread() - QCoreApplication.processEvents() # Ensure that the GUI does not freeze. - - Logger.log("d", "Workspace loading is checking materials...") - # Get all the material files and check if they exist. If not, add them. - xml_material_profile = self._getXmlProfileClass() - if self._material_container_suffix is None: - self._material_container_suffix = ContainerRegistry.getMimeTypeForContainer(xml_material_profile).suffixes[0] - if xml_material_profile: - material_container_files = [name for name in cura_file_names if name.endswith(self._material_container_suffix)] - for material_container_file in material_container_files: - to_deserialize_material = False - container_id = self._stripFileToId(material_container_file) - need_new_name = False - materials = self._container_registry.findInstanceContainers(id = container_id) - - if not materials: - # No material found, deserialize this material later and add it - to_deserialize_material = True - else: - material_container = materials[0] - old_material_root_id = material_container.getMetaDataEntry("base_file") - if old_material_root_id is not None and not self._container_registry.isReadOnly(old_material_root_id): # Only create new materials if they are not read only. - to_deserialize_material = True - - if self._resolve_strategies["material"] == "override": - # Remove the old materials and then deserialize the one from the project - root_material_id = material_container.getMetaDataEntry("base_file") - application.getContainerRegistry().removeContainer(root_material_id) - elif self._resolve_strategies["material"] == "new": - # Note that we *must* deserialize it with a new ID, as multiple containers will be - # auto created & added. - container_id = self.getNewId(container_id) - self._old_new_materials[old_material_root_id] = container_id - need_new_name = True - - if to_deserialize_material: - material_container = xml_material_profile(container_id) + definitions = self._container_registry.findDefinitionContainersMetadata(id = container_id) + if not definitions: + definition_container = DefinitionContainer(container_id) try: - material_container.deserialize(archive.open(material_container_file).read().decode("utf-8"), - file_name = container_id + "." + self._material_container_suffix) + definition_container.deserialize(archive.open(definition_container_file).read().decode("utf-8"), + file_name = definition_container_file) except ContainerFormatError: - Logger.logException("e", "Failed to deserialize material file %s in project file %s", - material_container_file, file_name) - continue - if need_new_name: - new_name = ContainerRegistry.getInstance().uniqueName(material_container.getName()) - material_container.setName(new_name) - material_container.setDirty(True) - self._container_registry.addContainer(material_container) + # We cannot just skip the definition file because everything else later will just break if the + # machine definition cannot be found. + Logger.logException("e", "Failed to deserialize definition file %s in project file %s", + definition_container_file, file_name) + definition_container = self._container_registry.findDefinitionContainers(id = "fdmprinter")[0] #Fall back to defaults. + self._container_registry.addContainer(definition_container) Job.yieldThread() QCoreApplication.processEvents() # Ensure that the GUI does not freeze. - if global_stack: - # Handle quality changes if any - self._processQualityChanges(global_stack) + Logger.log("d", "Workspace loading is checking materials...") + # Get all the material files and check if they exist. If not, add them. + xml_material_profile = self._getXmlProfileClass() + if self._material_container_suffix is None: + self._material_container_suffix = ContainerRegistry.getMimeTypeForContainer(xml_material_profile).suffixes[0] + if xml_material_profile: + material_container_files = [name for name in cura_file_names if name.endswith(self._material_container_suffix)] + for material_container_file in material_container_files: + to_deserialize_material = False + container_id = self._stripFileToId(material_container_file) + need_new_name = False + materials = self._container_registry.findInstanceContainers(id = container_id) - # Prepare the machine - self._applyChangesToMachine(global_stack, extruder_stack_dict) + if not materials: + # No material found, deserialize this material later and add it + to_deserialize_material = True + else: + material_container = materials[0] + old_material_root_id = material_container.getMetaDataEntry("base_file") + if old_material_root_id is not None and not self._container_registry.isReadOnly(old_material_root_id): # Only create new materials if they are not read only. + to_deserialize_material = True + + if self._resolve_strategies["material"] == "override": + # Remove the old materials and then deserialize the one from the project + root_material_id = material_container.getMetaDataEntry("base_file") + application.getContainerRegistry().removeContainer(root_material_id) + elif self._resolve_strategies["material"] == "new": + # Note that we *must* deserialize it with a new ID, as multiple containers will be + # auto created & added. + container_id = self.getNewId(container_id) + self._old_new_materials[old_material_root_id] = container_id + need_new_name = True + + if to_deserialize_material: + material_container = xml_material_profile(container_id) + try: + material_container.deserialize(archive.open(material_container_file).read().decode("utf-8"), + file_name = container_id + "." + self._material_container_suffix) + except ContainerFormatError: + Logger.logException("e", "Failed to deserialize material file %s in project file %s", + material_container_file, file_name) + continue + if need_new_name: + new_name = ContainerRegistry.getInstance().uniqueName(material_container.getName()) + material_container.setName(new_name) + material_container.setDirty(True) + self._container_registry.addContainer(material_container) + Job.yieldThread() + QCoreApplication.processEvents() # Ensure that the GUI does not freeze. + + if global_stack: + if not self._is_ucp: + # Handle quality changes if any + self._processQualityChanges(global_stack) + + # Prepare the machine + self._applyChangesToMachine(global_stack, extruder_stack_dict) Logger.log("d", "Workspace loading is notifying rest of the code of changes...") # Actually change the active machine. @@ -864,16 +926,40 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # function is running on the main thread (Qt thread), although those "changed" signals have been emitted, but # they won't take effect until this function is done. # To solve this, we schedule _updateActiveMachine() for later so it will have the latest data. + self._updateActiveMachine(global_stack) + if self._is_ucp: + # Now we have switched, apply the user settings + self._applyUserSettings(global_stack, extruder_stack_dict, self._user_settings) + # Load all the nodes / mesh data of the workspace nodes = self._3mf_mesh_reader.read(file_name) if nodes is None: nodes = [] + if self._is_ucp: + # We might be on a different printer than the one this project was made on. + # The offset to the printers' center isn't saved; instead, try to just fit everything on the buildplate. + full_extents = None + for node in nodes: + extents = node.getMeshData().getExtents() if node.getMeshData() else None + if extents is not None: + pos = node.getPosition() + node_box = AxisAlignedBox(extents.minimum + pos, extents.maximum + pos) + if full_extents is None: + full_extents = node_box + else: + full_extents = full_extents + node_box + if full_extents and full_extents.isValid(): + for node in nodes: + pos = node.getPosition() + node.setPosition(Vector(pos.x - full_extents.center.x, pos.y, pos.z - full_extents.center.z)) + base_file_name = os.path.basename(file_name) self.setWorkspaceName(base_file_name) + self._is_ucp = None return nodes, self._loadMetadata(file_name) @staticmethod @@ -1159,7 +1245,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): node = machine_node.variants.get(machine_node.preferred_variant_name, next(iter(machine_node.variants.values()))) else: variant_name = extruder_info.variant_info.parser["general"]["name"] - node = ContainerTree.getInstance().machines[global_stack.definition.getId()].variants[variant_name] + node = ContainerTree.getInstance().machines[global_stack.definition.getId()].variants.get(variant_name, next(iter(machine_node.variants.values()))) extruder_stack.variant = node.container def _applyMaterials(self, global_stack, extruder_stack_dict): @@ -1174,24 +1260,50 @@ class ThreeMFWorkspaceReader(WorkspaceReader): root_material_id = extruder_info.root_material_id root_material_id = self._old_new_materials.get(root_material_id, root_material_id) - material_node = machine_node.variants[extruder_stack.variant.getName()].materials[root_material_id] + available_materials = machine_node.variants[extruder_stack.variant.getName()].materials + if root_material_id not in available_materials: + continue + material_node = available_materials[root_material_id] extruder_stack.material = material_node.container - def _applyChangesToMachine(self, global_stack, extruder_stack_dict): - # Clear all first + def _clearMachineSettings(self, global_stack, extruder_stack_dict): self._clearStack(global_stack) for extruder_stack in extruder_stack_dict.values(): self._clearStack(extruder_stack) + self._quality_changes_to_apply = None + self._quality_type_to_apply = None + self._intent_category_to_apply = None + self._user_settings_to_apply = None + + def _applyUserSettings(self, global_stack, extruder_stack_dict, user_settings): + for stack_name, settings in user_settings.items(): + if stack_name == 'global': + ThreeMFWorkspaceReader._applyUserSettingsOnStack(global_stack, settings) + else: + extruder_match = re.fullmatch('extruder_([0-9]+)', stack_name) + if extruder_match is not None: + extruder_nr = extruder_match.group(1) + if extruder_nr in extruder_stack_dict: + ThreeMFWorkspaceReader._applyUserSettingsOnStack(extruder_stack_dict[extruder_nr], settings) + + @staticmethod + def _applyUserSettingsOnStack(stack, user_settings): + user_settings_container = stack.userChanges + + for setting_to_import, setting_value in user_settings.items(): + user_settings_container.setProperty(setting_to_import, 'value', setting_value) + + def _applyChangesToMachine(self, global_stack, extruder_stack_dict): + # Clear all first + self._clearMachineSettings(global_stack, extruder_stack_dict) + self._applyDefinitionChanges(global_stack, extruder_stack_dict) self._applyUserChanges(global_stack, extruder_stack_dict) self._applyVariants(global_stack, extruder_stack_dict) self._applyMaterials(global_stack, extruder_stack_dict) # prepare the quality to select - self._quality_changes_to_apply = None - self._quality_type_to_apply = None - self._intent_category_to_apply = None if self._machine_info.quality_changes_info is not None: self._quality_changes_to_apply = self._machine_info.quality_changes_info.name else: @@ -1229,39 +1341,40 @@ class ThreeMFWorkspaceReader(WorkspaceReader): machine_manager.setActiveMachine(global_stack.getId()) # Set metadata fields that are missing from the global stack - for key, value in self._machine_info.metadata_dict.items(): - if key not in global_stack.getMetaData() and key not in _ignored_machine_network_metadata: - global_stack.setMetaDataEntry(key, value) + if not self._is_ucp: + for key, value in self._machine_info.metadata_dict.items(): + if key not in global_stack.getMetaData() and key not in _ignored_machine_network_metadata: + global_stack.setMetaDataEntry(key, value) - if self._quality_changes_to_apply: - quality_changes_group_list = container_tree.getCurrentQualityChangesGroups() - quality_changes_group = next((qcg for qcg in quality_changes_group_list if qcg.name == self._quality_changes_to_apply), None) - if not quality_changes_group: - Logger.log("e", "Could not find quality_changes [%s]", self._quality_changes_to_apply) - return - machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True) - else: - self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None - quality_group_dict = container_tree.getCurrentQualityGroups() - if self._quality_type_to_apply in quality_group_dict: - quality_group = quality_group_dict[self._quality_type_to_apply] + if self._quality_changes_to_apply !=None: + quality_changes_group_list = container_tree.getCurrentQualityChangesGroups() + quality_changes_group = next((qcg for qcg in quality_changes_group_list if qcg.name == self._quality_changes_to_apply), None) + if not quality_changes_group: + Logger.log("e", "Could not find quality_changes [%s]", self._quality_changes_to_apply) + return + machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True) else: - Logger.log("i", "Could not find quality type [%s], switch to default", self._quality_type_to_apply) - preferred_quality_type = global_stack.getMetaDataEntry("preferred_quality_type") - quality_group = quality_group_dict.get(preferred_quality_type) - if quality_group is None: - Logger.log("e", "Could not get preferred quality type [%s]", preferred_quality_type) - - if quality_group is not None: - machine_manager.setQualityGroup(quality_group, no_dialog = True) - - # Also apply intent if available - available_intent_category_list = IntentManager.getInstance().currentAvailableIntentCategories() - if self._intent_category_to_apply is not None and self._intent_category_to_apply in available_intent_category_list: - machine_manager.setIntentByCategory(self._intent_category_to_apply) + self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None + quality_group_dict = container_tree.getCurrentQualityGroups() + if self._quality_type_to_apply in quality_group_dict: + quality_group = quality_group_dict[self._quality_type_to_apply] else: - # if no intent is provided, reset to the default (balanced) intent - machine_manager.resetIntents() + Logger.log("i", "Could not find quality type [%s], switch to default", self._quality_type_to_apply) + preferred_quality_type = global_stack.getMetaDataEntry("preferred_quality_type") + quality_group = quality_group_dict.get(preferred_quality_type) + if quality_group is None: + Logger.log("e", "Could not get preferred quality type [%s]", preferred_quality_type) + + if quality_group is not None: + machine_manager.setQualityGroup(quality_group, no_dialog = True) + + # Also apply intent if available + available_intent_category_list = IntentManager.getInstance().currentAvailableIntentCategories() + if self._intent_category_to_apply is not None and self._intent_category_to_apply in available_intent_category_list: + machine_manager.setIntentByCategory(self._intent_category_to_apply) + else: + # if no intent is provided, reset to the default (balanced) intent + machine_manager.resetIntents() # Notify everything/one that is to notify about changes. global_stack.containersChanged.emit(global_stack.getTop()) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index 135cf58435..c3e4187652 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -6,6 +6,7 @@ from PyQt6.QtGui import QDesktopServices from typing import List, Optional, Dict, cast from cura.Machines.Models.MachineListModel import MachineListModel +from cura.Machines.Models.IntentTranslations import intent_translations from cura.Settings.GlobalStack import GlobalStack from UM.Application import Application from UM.FlameProfiler import pyqtSlot @@ -21,6 +22,8 @@ import time from cura.CuraApplication import CuraApplication +from .SpecificSettingsModel import SpecificSettingsModel + i18n_catalog = i18nCatalog("cura") @@ -60,16 +63,23 @@ class WorkspaceDialog(QObject): self._machine_name = "" self._machine_type = "" self._variant_type = "" + self._current_machine_name = "" self._material_labels = [] self._extruders = [] self._objects_on_plate = False self._is_printer_group = False - self._updatable_machines_model = MachineListModel(self, listenToChanges=False) + self._updatable_machines_model = MachineListModel(self, listenToChanges = False, showCloudPrinters = True) self._missing_package_metadata: List[Dict[str, str]] = [] self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() self._install_missing_package_dialog: Optional[QObject] = None self._is_abstract_machine = False self._is_networked_machine = False + self._is_compatible_machine = False + self._allow_create_machine = True + self._exported_settings_model = SpecificSettingsModel() + self._exported_settings_model.modelChanged.connect(self.exportedSettingModelChanged.emit) + self._current_machine_pos_index = 0 + self._is_ucp = False machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -93,6 +103,9 @@ class WorkspaceDialog(QObject): extrudersChanged = pyqtSignal() isPrinterGroupChanged = pyqtSignal() missingPackagesChanged = pyqtSignal() + isCompatibleMachineChanged = pyqtSignal() + isUcpChanged = pyqtSignal() + exportedSettingModelChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) def isPrinterGroup(self) -> bool: @@ -165,8 +178,30 @@ class WorkspaceDialog(QObject): self._machine_name = machine_name self.machineNameChanged.emit() + def setCurrentMachineName(self, machine: str) -> None: + self._current_machine_name = machine + + @pyqtProperty(str, notify = machineNameChanged) + def currentMachineName(self) -> str: + return self._current_machine_name + + @staticmethod + def getIndexOfCurrentMachine(list_of_dicts, key, value, defaultIndex): + for i, d in enumerate(list_of_dicts): + if d.get(key) == value: # found the dictionary + return i + return defaultIndex + + @pyqtProperty(int, notify = machineNameChanged) + def currentMachinePositionIndex(self): + return self._current_machine_pos_index + @pyqtProperty(QObject, notify = updatableMachinesChanged) def updatableMachinesModel(self) -> MachineListModel: + if self._current_machine_name != "": + self._current_machine_pos_index = self.getIndexOfCurrentMachine(self._updatable_machines_model.getItems(), "id", self._current_machine_name, defaultIndex = 0) + else: + self._current_machine_pos_index = 0 return cast(MachineListModel, self._updatable_machines_model) def setUpdatableMachines(self, updatable_machines: List[GlobalStack]) -> None: @@ -223,7 +258,14 @@ class WorkspaceDialog(QObject): def setIntentName(self, intent_name: str) -> None: if self._intent_name != intent_name: - self._intent_name = intent_name + try: + self._intent_name = intent_translations[intent_name]["name"] + except: + self._intent_name = intent_name.title() + self.intentNameChanged.emit() + + if not self._intent_name: + self._intent_name = intent_translations["default"]["name"] self.intentNameChanged.emit() @pyqtProperty(str, notify=activeModeChanged) @@ -284,7 +326,49 @@ class WorkspaceDialog(QObject): @pyqtSlot(str) def setMachineToOverride(self, machine_name: str) -> None: self._override_machine = machine_name + self.updateCompatibleMachine() + def updateCompatibleMachine(self): + registry = ContainerRegistry.getInstance() + containers_expected = registry.findDefinitionContainers(name=self._machine_type) + containers_selected = registry.findContainerStacks(id=self._override_machine) + if len(containers_expected) == 1 and len(containers_selected) == 1: + new_compatible_machine = (containers_expected[0] == containers_selected[0].definition) + if new_compatible_machine != self._is_compatible_machine: + self._is_compatible_machine = new_compatible_machine + self.isCompatibleMachineChanged.emit() + + @pyqtProperty(bool, notify = isCompatibleMachineChanged) + def isCompatibleMachine(self) -> bool: + return self._is_compatible_machine + + def setIsUcp(self, isUcp: bool) -> None: + if isUcp != self._is_ucp: + self._is_ucp = isUcp + self.isUcpChanged.emit() + + @pyqtProperty(bool, notify=isUcpChanged) + def isUcp(self): + return self._is_ucp + + def setAllowCreatemachine(self, allow_create_machine): + self._allow_create_machine = allow_create_machine + + @pyqtProperty(bool, constant = True) + def allowCreateMachine(self): + return self._allow_create_machine + + @pyqtProperty(QObject, notify=exportedSettingModelChanged) + def exportedSettingModel(self): + return self._exported_settings_model + + @pyqtProperty("QVariantList", notify=exportedSettingModelChanged) + def exportedSettingModelItems(self): + return self._exported_settings_model.items + + @pyqtProperty(int, notify=exportedSettingModelChanged) + def exportedSettingModelRowCount(self): + return self._exported_settings_model.rowCount() @pyqtSlot() def closeBackend(self) -> None: """Close the backend: otherwise one could end up with "Slicing...""" diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index d5f9b1817d..adb070e862 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -6,13 +6,13 @@ import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 -import UM 1.5 as UM +import UM 1.6 as UM import Cura 1.1 as Cura UM.Dialog { id: workspaceDialog - title: catalog.i18nc("@title:window", "Open Project") + title: manager.isUcp? catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Open Universal Cura Project (UCP)"): catalog.i18nc("@title:window", "Open Project") margin: UM.Theme.getSize("default_margin").width minimumWidth: UM.Theme.getSize("modal_window_minimum").width @@ -24,16 +24,34 @@ UM.Dialog { height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height color: UM.Theme.getColor("main_background") - - UM.Label + ColumnLayout { - id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Cura Project") - font: UM.Theme.getFont("large") + id: headerColumn + anchors.top: parent.top anchors.left: parent.left + anchors.right: parent.right anchors.topMargin: UM.Theme.getSize("default_margin").height - anchors.leftMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.rightMargin: anchors.leftMargin + RowLayout + { + UM.Label + { + id: titleLabel + text: manager.isUcp? catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Open Universal Cura Project (UCP)"): catalog.i18nc("@action:title", "Summary - Cura Project") + font: UM.Theme.getFont("large") + } + Cura.TertiaryButton + { + id: learnMoreButton + visible: manager.isUcp + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + } + } } } @@ -96,7 +114,7 @@ UM.Dialog WorkspaceRow { leftLabelText: catalog.i18nc("@action:label", manager.isPrinterGroup ? "Printer Group" : "Printer Name") - rightLabelText: manager.machineName == catalog.i18nc("@button", "Create new") ? "" : manager.machineName + rightLabelText: manager.isUcp? manager.machineType: manager.machineName == catalog.i18nc("@button", "Create new") ? "" : manager.machineName } } @@ -120,13 +138,17 @@ UM.Dialog minDropDownWidth: machineSelector.width - buttons: [ + Component + { + id: componentNewPrinter + Cura.SecondaryButton { id: createNewPrinter text: catalog.i18nc("@button", "Create new") fixedWidthMode: true width: parent.width - leftPadding * 1.5 + visible: manager.allowCreateMachine onClicked: { toggleContent() @@ -136,7 +158,9 @@ UM.Dialog manager.setIsNetworkedMachine(false) } } - ] + } + + buttons: manager.allowCreateMachine ? [componentNewPrinter.createObject()] : [] onSelectPrinter: function(machine) { @@ -152,39 +176,56 @@ UM.Dialog WorkspaceSection { - id: profileSection - title: catalog.i18nc("@action:label", "Profile settings") - iconSource: UM.Theme.getIcon("Sliders") + id: ucpProfileSection + visible: manager.isUcp + title: catalog.i18nc("@action:label", "Settings Loaded from UCP file") + iconSource: UM.Theme.getIcon("Settings") + content: Column { - id: profileSettingsValuesTable + id: ucpProfileSettingsValuesTable spacing: UM.Theme.getSize("default_margin").height leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width WorkspaceRow { - leftLabelText: catalog.i18nc("@action:label", "Name") - rightLabelText: manager.qualityName + id: numberOfOverrides + leftLabelText: catalog.i18nc("@action:label", "Settings Loaded from UCP file") + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.exportedSettingModelRowCount).arg(manager.exportedSettingModelRowCount) + buttonText: tableViewSpecificSettings.shouldBeVisible ? catalog.i18nc("@action:button", "Hide settings") : catalog.i18nc("@action:button", "Show settings") + onButtonClicked: tableViewSpecificSettings.shouldBeVisible = !tableViewSpecificSettings.shouldBeVisible } - - WorkspaceRow + Cura.TableView { - leftLabelText: catalog.i18nc("@action:label", "Intent") - rightLabelText: manager.intentName - } + id: tableViewSpecificSettings + width: parent.width - parent.leftPadding - UM.Theme.getSize("default_margin").width + height: UM.Theme.getSize("card").height + visible: shouldBeVisible && manager.isUcp + property bool shouldBeVisible: true - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Not in profile") - rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - visible: manager.numUserSettings != 0 - } + columnHeaders: + [ + catalog.i18nc("@title:column", "Applies on"), + catalog.i18nc("@title:column", "Setting"), + catalog.i18nc("@title:column", "Value") + ] - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Derivative from") - rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - visible: manager.numSettingsOverridenByQualityChanges != 0 + model: UM.TableModel + { + id: tableModel + headers: ["category", "label", "value"] + rows: manager.exportedSettingModelItems + } + + Connections + { + target: manager + function onExportedSettingModelChanged() + { + tableModel.clear() + tableModel.rows = manager.exportedSettingModelItems + } + } } } @@ -194,7 +235,7 @@ UM.Dialog id: qualityChangesResolveComboBox model: resolveStrategiesModel textRole: "label" - visible: manager.qualityChangesConflict + visible: manager.qualityChangesConflict && !manager.isUcp contentLeftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width textFont: UM.Theme.getFont("medium") @@ -220,10 +261,51 @@ UM.Dialog } } + WorkspaceSection + { + id: profileSection + title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Profile settings"):catalog.i18nc("@action:label", "Profile settings") + iconSource: UM.Theme.getIcon("Sliders") + content: Column + { + id: profileSettingsValuesTable + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Name") + rightLabelText: manager.qualityName + visible: manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Intent") + rightLabelText: manager.intentName + visible: manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Not in profile") + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) + visible: manager.numUserSettings != 0 && !manager.isUcp + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Derivative from") + rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) + visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine + } + } + } + WorkspaceSection { id: materialSection - title: catalog.i18nc("@action:label", "Material settings") + title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Material settings"): catalog.i18nc("@action:label", "Material settings") iconSource: UM.Theme.getIcon("Spool") content: Column { @@ -248,7 +330,7 @@ UM.Dialog id: materialResolveComboBox model: resolveStrategiesModel textRole: "label" - visible: manager.materialConflict + visible: manager.materialConflict && !manager.isUcp contentLeftPadding: UM.Theme.getSize("default_margin").width + UM.Theme.getSize("narrow_margin").width textFont: UM.Theme.getFont("medium") @@ -279,6 +361,7 @@ UM.Dialog id: visibilitySection title: catalog.i18nc("@action:label", "Setting visibility") iconSource: UM.Theme.getIcon("Eye") + visible : !manager.isUcp content: Column { spacing: UM.Theme.getSize("default_margin").height @@ -416,12 +499,13 @@ UM.Dialog { if (visible) { - // Force relead the comboboxes + // Force reload the comboboxes // Since this dialog is only created once the first time you open it, these comboxes need to be reloaded // each time it is shown after the first time so that the indexes will update correctly. materialSection.reloadValues() profileSection.reloadValues() printerSection.reloadValues() + ucpProfileSection.reloadValues() } } } diff --git a/plugins/3MFReader/WorkspaceRow.qml b/plugins/3MFReader/WorkspaceRow.qml index 8d9f1f25b3..855b8c18b0 100644 --- a/plugins/3MFReader/WorkspaceRow.qml +++ b/plugins/3MFReader/WorkspaceRow.qml @@ -9,26 +9,38 @@ import QtQuick.Window 2.2 import UM 1.5 as UM import Cura 1.1 as Cura -Row +RowLayout { + id: root + property alias leftLabelText: leftLabel.text property alias rightLabelText: rightLabel.text + property alias buttonText: button.text + signal buttonClicked width: parent.width - height: visible ? childrenRect.height : 0 UM.Label { id: leftLabel text: catalog.i18nc("@action:label", "Type") - width: Math.round(parent.width / 4) + Layout.preferredWidth: Math.round(parent.width / 4) wrapMode: Text.WordWrap } + UM.Label { id: rightLabel text: manager.machineType - width: Math.round(parent.width / 3) wrapMode: Text.WordWrap } + + Cura.TertiaryButton + { + id: button + visible: !text.isEmpty + Layout.maximumHeight: leftLabel.implicitHeight + Layout.fillWidth: true + onClicked: root.buttonClicked() + } } \ No newline at end of file diff --git a/plugins/3MFReader/WorkspaceSection.qml b/plugins/3MFReader/WorkspaceSection.qml index 0c94ab5d6a..b72fed47ef 100644 --- a/plugins/3MFReader/WorkspaceSection.qml +++ b/plugins/3MFReader/WorkspaceSection.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.5 as UM +import UM 1.8 as UM Item @@ -80,42 +80,22 @@ Item sourceComponent: combobox } - MouseArea + UM.HelpIcon { - id: helpIconMouseArea anchors.right: parent.right anchors.verticalCenter: comboboxLabel.verticalCenter - width: childrenRect.width - height: childrenRect.height - hoverEnabled: true - - UM.ColorImage - { - width: UM.Theme.getSize("section_icon").width - height: width - - visible: comboboxTooltipText != "" - source: UM.Theme.getIcon("Help") - color: UM.Theme.getColor("text") - - UM.ToolTip - { - text: comboboxTooltipText - visible: helpIconMouseArea.containsMouse - targetPoint: Qt.point(parent.x + Math.round(parent.width / 2), parent.y) - x: 0 - y: parent.y + parent.height + UM.Theme.getSize("default_margin").height - width: UM.Theme.getSize("tooltip").width - } - } + color: UM.Theme.getColor("small_button_text") + icon: UM.Theme.getIcon("Information") + text: comboboxTooltipText + visible: comboboxTooltipText != "" } } - Loader { width: parent.width height: content.height + z: -1 anchors.top: sectionTitleRow.bottom sourceComponent: content } diff --git a/plugins/3MFWriter/SettingExport.py b/plugins/3MFWriter/SettingExport.py new file mode 100644 index 0000000000..61c7d91b54 --- /dev/null +++ b/plugins/3MFWriter/SettingExport.py @@ -0,0 +1,48 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import QObject, pyqtProperty, pyqtSignal + + +class SettingExport(QObject): + + def __init__(self, id, name, value, value_name, selectable, show): + super().__init__() + self.id = id + self._name = name + self._value = value + self._value_name = value_name + self._selected = selectable + self._selectable = selectable + self._show_in_menu = show + + @pyqtProperty(str, constant=True) + def name(self): + return self._name + + @pyqtProperty(str, constant=True) + def value(self): + return self._value + + @pyqtProperty(str, constant=True) + def valuename(self): + return str(self._value_name) + + selectedChanged = pyqtSignal(bool) + + def setSelected(self, selected): + if selected != self._selected: + self._selected = selected + self.selectedChanged.emit(self._selected) + + @pyqtProperty(bool, fset = setSelected, notify = selectedChanged) + def selected(self): + return self._selected + + @pyqtProperty(bool, constant=True) + def selectable(self): + return self._selectable + + @pyqtProperty(bool, constant=True) + def isVisible(self): + return self._show_in_menu diff --git a/plugins/3MFWriter/SettingSelection.qml b/plugins/3MFWriter/SettingSelection.qml new file mode 100644 index 0000000000..85c2f636aa --- /dev/null +++ b/plugins/3MFWriter/SettingSelection.qml @@ -0,0 +1,39 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.8 as UM +import Cura 1.1 as Cura + +RowLayout +{ + id: settingSelection + + UM.CheckBox + { + text: modelData.name + Layout.preferredWidth: UM.Theme.getSize("setting").width + checked: modelData.selected + onClicked: modelData.selected = checked + tooltip: modelData.selectable ? "" :catalog.i18nc("@tooltip Don't translate 'Universal Cura Project'", "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk.") + } + + UM.Label + { + text: modelData.valuename + } + + UM.HelpIcon + { + UM.I18nCatalog { id: catalog; name: "cura" } + text: catalog.i18nc("@tooltip Don't translate 'Universal Cura Project'", + "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk.") + visible: !modelData.selectable + } + + +} diff --git a/plugins/3MFWriter/SettingsExportGroup.py b/plugins/3MFWriter/SettingsExportGroup.py new file mode 100644 index 0000000000..241b92acb3 --- /dev/null +++ b/plugins/3MFWriter/SettingsExportGroup.py @@ -0,0 +1,56 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from enum import IntEnum + +from PyQt6.QtCore import QObject, pyqtProperty, pyqtEnum + + +class SettingsExportGroup(QObject): + + @pyqtEnum + class Category(IntEnum): + Global = 0 + Extruder = 1 + Model = 2 + + def __init__(self, stack, name, category, settings, category_details = '', extruder_index = 0, extruder_color = ''): + super().__init__() + self.stack = stack + self._name = name + self._settings = settings + self._category = category + self._category_details = category_details + self._extruder_index = extruder_index + self._extruder_color = extruder_color + self._visible_settings = [] + + @pyqtProperty(str, constant=True) + def name(self): + return self._name + + @pyqtProperty(list, constant=True) + def settings(self): + return self._settings + + @pyqtProperty(list, constant=True) + def visibleSettings(self): + if self._visible_settings == []: + self._visible_settings = list(filter(lambda item : item.isVisible, self._settings)) + return self._visible_settings + + @pyqtProperty(int, constant=True) + def category(self): + return self._category + + @pyqtProperty(str, constant=True) + def category_details(self): + return self._category_details + + @pyqtProperty(int, constant=True) + def extruder_index(self): + return self._extruder_index + + @pyqtProperty(str, constant=True) + def extruder_color(self): + return self._extruder_color diff --git a/plugins/3MFWriter/SettingsExportModel.py b/plugins/3MFWriter/SettingsExportModel.py new file mode 100644 index 0000000000..906ea967ea --- /dev/null +++ b/plugins/3MFWriter/SettingsExportModel.py @@ -0,0 +1,150 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from dataclasses import asdict +from typing import Optional, cast, List, Dict, Pattern, Set + +from PyQt6.QtCore import QObject, pyqtProperty + +from UM import i18nCatalog +from UM.Settings.SettingDefinition import SettingDefinition +from UM.Settings.InstanceContainer import InstanceContainer +from UM.Settings.SettingFunction import SettingFunction + +from cura.CuraApplication import CuraApplication +from cura.Settings.ExtruderManager import ExtruderManager +from cura.Settings.GlobalStack import GlobalStack + +from .SettingsExportGroup import SettingsExportGroup +from .SettingExport import SettingExport + + +class SettingsExportModel(QObject): + + EXPORTABLE_SETTINGS = {'infill_sparse_density', + 'adhesion_type', + 'support_enable', + 'infill_pattern', + 'support_type', + 'support_structure', + 'support_angle', + 'support_infill_rate', + 'ironing_enabled', + 'fill_outline_gaps', + 'coasting_enable', + 'skin_monotonic', + 'z_seam_position', + 'infill_before_walls', + 'ironing_only_highest_layer', + 'xy_offset', + 'adaptive_layer_height_enabled', + 'brim_gap', + 'support_offset', + 'brim_location', + 'magic_spiralize', + 'slicing_tolerance', + 'outer_inset_first', + 'magic_fuzzy_skin_outside_only', + 'conical_overhang_enabled', + 'min_infill_area', + 'small_hole_max_size', + 'magic_mesh_surface_mode', + 'carve_multiple_volumes', + 'meshfix_union_all_remove_holes', + 'support_tree_rest_preference', + 'small_feature_max_length', + 'draft_shield_enabled', + 'brim_smart_ordering', + 'ooze_shield_enabled', + 'bottom_skin_preshrink', + 'skin_edge_support_thickness', + 'alternate_carve_order', + 'top_skin_preshrink', + 'interlocking_enable'} + + PER_MODEL_EXPORTABLE_SETTINGS_KEYS = {"anti_overhang_mesh", + "infill_mesh", + "cutting_mesh", + "support_mesh"} + + def __init__(self, parent=None): + super().__init__(parent) + self._settings_groups = [] + + application = CuraApplication.getInstance() + + self._appendGlobalSettings(application) + self._appendExtruderSettings(application) + self._appendModelSettings(application) + + def _appendGlobalSettings(self, application): + global_stack = application.getGlobalContainerStack() + self._settings_groups.append(SettingsExportGroup( + global_stack, "Global settings", SettingsExportGroup.Category.Global, self._exportSettings(global_stack))) + + def _appendExtruderSettings(self, application): + extruders_stacks = ExtruderManager.getInstance().getUsedExtruderStacks() + for extruder_stack in extruders_stacks: + color = extruder_stack.material.getMetaDataEntry("color_code") if extruder_stack.material else "" + self._settings_groups.append(SettingsExportGroup( + extruder_stack, "Extruder settings", SettingsExportGroup.Category.Extruder, + self._exportSettings(extruder_stack), extruder_index=extruder_stack.position, extruder_color=color)) + + def _appendModelSettings(self, application): + scene = application.getController().getScene() + for scene_node in scene.getRoot().getChildren(): + self._appendNodeSettings(scene_node, "Model settings", SettingsExportGroup.Category.Model) + + def _appendNodeSettings(self, node, title_prefix, category): + stack = node.callDecoration("getStack") + if stack: + self._settings_groups.append(SettingsExportGroup( + stack, f"{title_prefix}", category, self._exportSettings(stack), node.getName())) + for child in node.getChildren(): + self._appendNodeSettings(child, f"Children of {node.getName()}", SettingsExportGroup.Category.Model) + + + @pyqtProperty(list, constant=True) + def settingsGroups(self) -> List[SettingsExportGroup]: + return self._settings_groups + + @staticmethod + def _exportSettings(settings_stack): + settings_catalog = i18nCatalog("fdmprinter.def.json") + user_settings_container = settings_stack.userChanges + user_keys = user_settings_container.getAllKeys() + exportable_settings = SettingsExportModel.EXPORTABLE_SETTINGS + settings_export = [] + # Check whether any of the user keys exist in PER_MODEL_EXPORTABLE_SETTINGS_KEYS + is_exportable = any(key in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS for key in user_keys) + + for setting_to_export in user_keys: + show_in_menu = setting_to_export not in SettingsExportModel.PER_MODEL_EXPORTABLE_SETTINGS_KEYS + label_msgtxt = f"{str(setting_to_export)} label" + label_msgid = settings_stack.getProperty(setting_to_export, "label") + label = settings_catalog.i18nc(label_msgtxt, label_msgid) + value = settings_stack.getProperty(setting_to_export, "value") + unit = settings_stack.getProperty(setting_to_export, "unit") + setting_type = settings_stack.getProperty(setting_to_export, "type") + value_name = str(SettingDefinition.settingValueToString(setting_type, value)) + if unit: + value_name += " " + str(unit) + if setting_type == "enum": + options = settings_stack.getProperty(setting_to_export, "options") + value_msgctxt = f"{str(setting_to_export)} option {str(value)}" + value_msgid = options.get(value, "") + value_name = settings_catalog.i18nc(value_msgctxt, value_msgid) + + if setting_type is not None: + value = f"{str(SettingDefinition.settingValueToString(setting_type, value))} {unit}" + else: + value = str(value) + + settings_export.append(SettingExport(setting_to_export, + label, + value, + value_name, + is_exportable or setting_to_export in exportable_settings, + show_in_menu)) + + return settings_export diff --git a/plugins/3MFWriter/SettingsSelectionGroup.qml b/plugins/3MFWriter/SettingsSelectionGroup.qml new file mode 100644 index 0000000000..9943b99ba8 --- /dev/null +++ b/plugins/3MFWriter/SettingsSelectionGroup.qml @@ -0,0 +1,86 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.1 as Cura +import ThreeMFWriter 1.0 as ThreeMFWriter + +ColumnLayout +{ + id: settingsGroup + spacing: UM.Theme.getSize("narrow_margin").width + + RowLayout + { + id: settingsGroupTitleRow + spacing: UM.Theme.getSize("default_margin").width + + Item + { + id: icon + height: UM.Theme.getSize("medium_button_icon").height + width: height + + UM.ColorImage + { + id: settingsMainImage + anchors.fill: parent + source: + { + switch(modelData.category) + { + case ThreeMFWriter.SettingsExportGroup.Global: + return UM.Theme.getIcon("Sliders") + case ThreeMFWriter.SettingsExportGroup.Model: + return UM.Theme.getIcon("View3D") + default: + return "" + } + } + + color: UM.Theme.getColor("text") + } + + Cura.ExtruderIcon + { + id: settingsExtruderIcon + anchors.fill: parent + visible: modelData.category === ThreeMFWriter.SettingsExportGroup.Extruder + text: (modelData.extruder_index + 1).toString() + font: UM.Theme.getFont("tiny_emphasis") + materialColor: modelData.extruder_color + } + } + + UM.Label + { + id: settingsTitle + text: modelData.name + (modelData.category_details ? ' (%1)'.arg(modelData.category_details) : '') + font: UM.Theme.getFont("default_bold") + } + } + + ListView + { + id: settingsExportList + Layout.fillWidth: true + Layout.preferredHeight: contentHeight + spacing: 0 + model: modelData.visibleSettings + visible: modelData.visibleSettings.length > 0 + + delegate: SettingSelection { } + } + + UM.Label + { + UM.I18nCatalog { id: catalog; name: "cura" } + text: catalog.i18nc("@label", "No specific value has been set") + visible: modelData.visibleSettings.length === 0 + } +} diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index e89af5c70a..2536f5dacb 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -1,9 +1,13 @@ # Copyright (c) 2020 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional + import configparser from io import StringIO +from threading import Lock import zipfile +from typing import Dict, Any from UM.Application import Application from UM.Logger import Logger @@ -13,15 +17,23 @@ from UM.Workspace.WorkspaceWriter import WorkspaceWriter from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") -from cura.Utils.Threading import call_on_qt_thread +from .ThreeMFWriter import ThreeMFWriter +from .SettingsExportModel import SettingsExportModel +from .SettingsExportGroup import SettingsExportGroup + +USER_SETTINGS_PATH = "Cura/user-settings.json" class ThreeMFWorkspaceWriter(WorkspaceWriter): def __init__(self): super().__init__() + self._ucp_model: Optional[SettingsExportModel] = None - @call_on_qt_thread - def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + def setExportModel(self, model: SettingsExportModel) -> None: + if self._ucp_model != model: + self._ucp_model = model + + def _write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): application = Application.getInstance() machine_manager = application.getMachineManager() @@ -34,20 +46,20 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): global_stack = machine_manager.activeMachine if global_stack is None: - self.setInformation(catalog.i18nc("@error", "There is no workspace yet to write. Please add a printer first.")) + self.setInformation( + catalog.i18nc("@error", "There is no workspace yet to write. Please add a printer first.")) Logger.error("Tried to write a 3MF workspace before there was a global stack.") return False # Indicate that the 3mf mesh writer should not close the archive just yet (we still need to add stuff to it). mesh_writer.setStoreArchive(True) - if not mesh_writer.write(stream, nodes, mode): + if not mesh_writer.write(stream, nodes, mode, self._ucp_model): self.setInformation(mesh_writer.getInformation()) return False archive = mesh_writer.getArchive() if archive is None: # This happens if there was no mesh data to write. - archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) - + archive = zipfile.ZipFile(stream, "w", compression=zipfile.ZIP_DEFLATED) try: # Add global container stack data to the archive. @@ -62,15 +74,21 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): self._writeContainerToArchive(extruder_stack, archive) for container in extruder_stack.getContainers(): self._writeContainerToArchive(container, archive) + + # Write user settings data + if self._ucp_model is not None: + user_settings_data = self._getUserSettings(self._ucp_model) + ThreeMFWriter._storeMetadataJson(user_settings_data, archive, USER_SETTINGS_PATH) except PermissionError: self.setInformation(catalog.i18nc("@error:zip", "No permission to write the workspace here.")) Logger.error("No permission to write workspace to this stream.") return False # Write preferences to archive - original_preferences = Application.getInstance().getPreferences() #Copy only the preferences that we use to the workspace. + original_preferences = Application.getInstance().getPreferences() # Copy only the preferences that we use to the workspace. temp_preferences = Preferences() - for preference in {"general/visible_settings", "cura/active_mode", "cura/categories_expanded", "metadata/setting_version"}: + for preference in {"general/visible_settings", "cura/active_mode", "cura/categories_expanded", + "metadata/setting_version"}: temp_preferences.addPreference(preference, None) temp_preferences.setValue(preference, original_preferences.getValue(preference)) preferences_string = StringIO() @@ -81,7 +99,7 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): # Save Cura version version_file = zipfile.ZipInfo("Cura/version.ini") - version_config_parser = configparser.ConfigParser(interpolation = None) + version_config_parser = configparser.ConfigParser(interpolation=None) version_config_parser.add_section("versions") version_config_parser.set("versions", "cura_version", application.getVersion()) version_config_parser.set("versions", "build_type", application.getBuildType()) @@ -101,11 +119,17 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): return False except EnvironmentError as e: self.setInformation(catalog.i18nc("@error:zip", str(e))) - Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err = str(e))) + Logger.error("EnvironmentError when writing workspace to this stream: {err}".format(err=str(e))) return False mesh_writer.setStoreArchive(False) + return True + def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + success = self._write(stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode) + self._ucp_model = None + return success + @staticmethod def _writePluginMetadataToArchive(archive: zipfile.ZipFile) -> None: file_name_template = "%s/plugin_metadata.json" @@ -165,4 +189,27 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): archive.writestr(file_in_archive, serialized_data) except (FileNotFoundError, EnvironmentError): Logger.error("File became inaccessible while writing to it: {archive_filename}".format(archive_filename = archive.fp.name)) - return \ No newline at end of file + return + + @staticmethod + def _getUserSettings(model: SettingsExportModel) -> Dict[str, Dict[str, Any]]: + user_settings = {} + + for group in model.settingsGroups: + category = '' + if group.category == SettingsExportGroup.Category.Global: + category = 'global' + elif group.category == SettingsExportGroup.Category.Extruder: + category = f"extruder_{group.extruder_index}" + + if len(category) > 0: + settings_values = {} + stack = group.stack + + for setting in group.settings: + if setting.selected: + settings_values[setting.id] = stack.getProperty(setting.id, "value") + + user_settings[category] = settings_values + + return user_settings \ No newline at end of file diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index ae790b4f63..d33f0e374a 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -2,6 +2,7 @@ # Cura is released under the terms of the LGPLv3 or higher. import json import re +import threading from typing import Optional, cast, List, Dict, Pattern, Set @@ -10,22 +11,24 @@ from UM.Math.Vector import Vector from UM.Logger import Logger from UM.Math.Matrix import Matrix from UM.Application import Application +from UM.OutputDevice import OutputDeviceError from UM.Message import Message from UM.Resources import Resources from UM.Scene.SceneNode import SceneNode from UM.Settings.ContainerRegistry import ContainerRegistry -from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer from cura.CuraApplication import CuraApplication from cura.CuraPackageManager import CuraPackageManager from cura.Settings import CuraContainerStack from cura.Utils.Threading import call_on_qt_thread +from cura.Scene.CuraSceneNode import CuraSceneNode from cura.Snapshot import Snapshot -from PyQt6.QtCore import QBuffer +from PyQt6.QtCore import Qt, QBuffer +from PyQt6.QtGui import QImage, QPainter import pySavitar as Savitar - +from .UCPDialog import UCPDialog import numpy import datetime @@ -40,6 +43,9 @@ except ImportError: import zipfile import UM.Application +from .SettingsExportModel import SettingsExportModel +from .SettingsExportGroup import SettingsExportGroup + from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") @@ -60,6 +66,7 @@ class ThreeMFWriter(MeshWriter): self._unit_matrix_string = ThreeMFWriter._convertMatrixToString(Matrix()) self._archive: Optional[zipfile.ZipFile] = None self._store_archive = False + self._lock = threading.Lock() @staticmethod def _convertMatrixToString(matrix): @@ -87,7 +94,9 @@ class ThreeMFWriter(MeshWriter): self._store_archive = store_archive @staticmethod - def _convertUMNodeToSavitarNode(um_node, transformation=Matrix()): + def _convertUMNodeToSavitarNode(um_node, + transformation = Matrix(), + exported_settings: Optional[Dict[str, Set[str]]] = None): """Convenience function that converts an Uranium SceneNode object to a SavitarSceneNode :returns: Uranium Scene node. @@ -102,12 +111,20 @@ class ThreeMFWriter(MeshWriter): savitar_node = Savitar.SceneNode() savitar_node.setName(um_node.getName()) - node_matrix = um_node.getLocalTransformation() + node_matrix = Matrix() + mesh_data = um_node.getMeshData() + # compensate for original center position, if object(s) is/are not around its zero position + if mesh_data is not None: + extents = mesh_data.getExtents() + if extents is not None: + # We use a different coordinate space while writing, so flip Z and Y + center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) + node_matrix.setByTranslation(center_vector) + node_matrix.multiply(um_node.getLocalTransformation()) matrix_string = ThreeMFWriter._convertMatrixToString(node_matrix.preMultiply(transformation)) savitar_node.setTransformation(matrix_string) - mesh_data = um_node.getMeshData() if mesh_data is not None: savitar_node.getMeshData().setVerticesFromBytes(mesh_data.getVerticesAsByteArray()) indices_array = mesh_data.getIndicesAsByteArray() @@ -121,13 +138,26 @@ class ThreeMFWriter(MeshWriter): if stack is not None: changed_setting_keys = stack.getTop().getAllKeys() - # Ensure that we save the extruder used for this object in a multi-extrusion setup - if stack.getProperty("machine_extruder_count", "value") > 1: - changed_setting_keys.add("extruder_nr") + if exported_settings is None: + # Ensure that we save the extruder used for this object in a multi-extrusion setup + if stack.getProperty("machine_extruder_count", "value") > 1: + changed_setting_keys.add("extruder_nr") - # Get values for all changed settings & save them. - for key in changed_setting_keys: - savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + # Get values for all changed settings & save them. + for key in changed_setting_keys: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + else: + # We want to export only the specified settings + if um_node.getName() in exported_settings: + model_exported_settings = exported_settings[um_node.getName()] + + # Get values for all exported settings & save them. + for key in model_exported_settings: + savitar_node.setSetting("cura:" + key, str(stack.getProperty(key, "value"))) + + if isinstance(um_node, CuraSceneNode): + savitar_node.setSetting("cura:print_order", str(um_node.printOrder)) + savitar_node.setSetting("cura:drop_to_buildplate", str(um_node.isDropDownEnabled)) # Store the metadata. for key, value in um_node.metadata.items(): @@ -137,7 +167,8 @@ class ThreeMFWriter(MeshWriter): # only save the nodes on the active build plate if child_node.callDecoration("getBuildPlateNumber") != active_build_plate_nr: continue - savitar_child_node = ThreeMFWriter._convertUMNodeToSavitarNode(child_node) + savitar_child_node = ThreeMFWriter._convertUMNodeToSavitarNode(child_node, + exported_settings = exported_settings) if savitar_child_node is not None: savitar_node.addChild(savitar_child_node) @@ -146,7 +177,24 @@ class ThreeMFWriter(MeshWriter): def getArchive(self): return self._archive - def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: + def _addLogoToThumbnail(self, primary_image, logo_name): + # Load the icon png image + icon_image = QImage(Resources.getPath(Resources.Images, logo_name)) + + # Resize icon_image to be 1/4 of primary_image size + new_width = int(primary_image.width() / 4) + new_height = int(primary_image.height() / 4) + icon_image = icon_image.scaled(new_width, new_height, Qt.AspectRatioMode.KeepAspectRatio) + # Create a QPainter to draw on the image + painter = QPainter(primary_image) + + # Draw the icon in the top-left corner (adjust coordinates as needed) + icon_position = (10, 10) + painter.drawImage(icon_position[0], icon_position[1], icon_image) + + painter.end() + + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_settings_model = None) -> bool: self._archive = None # Reset archive archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) try: @@ -170,6 +218,10 @@ class ThreeMFWriter(MeshWriter): # Attempt to add a thumbnail snapshot = self._createSnapshot() if snapshot: + if export_settings_model != None: + self._addLogoToThumbnail(snapshot, "cura-share.png") + elif export_settings_model == None and self._store_archive: + self._addLogoToThumbnail(snapshot, "cura-icon.png") thumbnail_buffer = QBuffer() thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) snapshot.save(thumbnail_buffer, "PNG") @@ -224,14 +276,20 @@ class ThreeMFWriter(MeshWriter): transformation_matrix.preMultiply(translation_matrix) root_node = UM.Application.Application.getInstance().getController().getScene().getRoot() + exported_model_settings = ThreeMFWriter._extractModelExportedSettings(export_settings_model) if export_settings_model != None else None + for node in nodes: if node == root_node: for root_child in node.getChildren(): - savitar_node = ThreeMFWriter._convertUMNodeToSavitarNode(root_child, transformation_matrix) + savitar_node = ThreeMFWriter._convertUMNodeToSavitarNode(root_child, + transformation_matrix, + exported_model_settings) if savitar_node: savitar_scene.addSceneNode(savitar_node) else: - savitar_node = self._convertUMNodeToSavitarNode(node, transformation_matrix) + savitar_node = self._convertUMNodeToSavitarNode(node, + transformation_matrix, + exported_model_settings) if savitar_node: savitar_scene.addSceneNode(savitar_node) @@ -367,6 +425,7 @@ class ThreeMFWriter(MeshWriter): @call_on_qt_thread # must be called from the main thread because of OpenGL def _createSnapshot(self): Logger.log("d", "Creating thumbnail image...") + self._lock.acquire() if not CuraApplication.getInstance().isVisible: Logger.log("w", "Can't create snapshot when renderer not initialized.") return None @@ -375,6 +434,7 @@ class ThreeMFWriter(MeshWriter): except: Logger.logException("w", "Failed to create snapshot image") return None + finally: self._lock.release() return snapshot @@ -387,3 +447,24 @@ class ThreeMFWriter(MeshWriter): parser = Savitar.ThreeMFParser() scene_string = parser.sceneToString(savitar_scene) return scene_string + + @staticmethod + def _extractModelExportedSettings(model: Optional[SettingsExportModel]) -> Dict[str, Set[str]]: + extra_settings = {} + + if model is not None: + for group in model.settingsGroups: + if group.category == SettingsExportGroup.Category.Model: + exported_model_settings = set() + + for exported_setting in group.settings: + if exported_setting.selected: + exported_model_settings.add(exported_setting.id) + + extra_settings[group.category_details] = exported_model_settings + + return extra_settings + + def exportUcp(self): + self._config_dialog = UCPDialog() + self._config_dialog.show() diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py new file mode 100644 index 0000000000..649a6e07bf --- /dev/null +++ b/plugins/3MFWriter/UCPDialog.py @@ -0,0 +1,114 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import os + +from PyQt6.QtCore import pyqtSignal, QObject + +import UM +from UM.FlameProfiler import pyqtSlot +from UM.OutputDevice import OutputDeviceError +from UM.Workspace.WorkspaceWriter import WorkspaceWriter +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message + +from cura.CuraApplication import CuraApplication + +from .SettingsExportModel import SettingsExportModel + +i18n_catalog = i18nCatalog("cura") + + +class UCPDialog(QObject): + finished = pyqtSignal(bool) + + def __init__(self, parent = None) -> None: + super().__init__(parent) + + plugin_path = os.path.dirname(__file__) + dialog_path = os.path.join(plugin_path, 'UCPDialog.qml') + self._model = SettingsExportModel() + self._view = CuraApplication.getInstance().createQmlComponent( + dialog_path, + { + "manager": self, + "settingsExportModel": self._model + } + ) + self._view.accepted.connect(self._onAccepted) + self._view.rejected.connect(self._onRejected) + self._finished = False + self._accepted = False + + def show(self) -> None: + self._finished = False + self._accepted = False + self._view.show() + + def getModel(self) -> SettingsExportModel: + return self._model + + @pyqtSlot() + def notifyClosed(self): + self._onFinished() + + def save3mf(self): + application = CuraApplication.getInstance() + workspace_handler = application.getInstance().getWorkspaceFileHandler() + + # Set the model to the workspace writer + mesh_writer = workspace_handler.getWriter("3MFWriter") + mesh_writer.setExportModel(self._model) + + # Open file dialog and write the file + device = application.getOutputDeviceManager().getOutputDevice("local_file") + nodes = [application.getController().getScene().getRoot()] + + device.writeError.connect(lambda: self._onRejected()) + device.writeSuccess.connect(lambda: self._onSuccess()) + device.writeFinished.connect(lambda: self._onFinished()) + + file_name = f"UCP_{CuraApplication.getInstance().getPrintInformation().baseName}" + + try: + device.requestWrite( + nodes, + file_name, + ["application/x-ucp"], + workspace_handler, + preferred_mimetype_list="application/x-ucp" + ) + except OutputDeviceError.UserCanceledError: + self._onRejected() + except Exception as e: + message = Message( + i18n_catalog.i18nc("@info:error", "Unable to write to file: {0}", file_name), + title=i18n_catalog.i18nc("@info:title", "Error"), + message_type=Message.MessageType.ERROR + ) + message.show() + Logger.logException("e", "Unable to write to file %s: %s", file_name, e) + self._onRejected() + + def _onAccepted(self): + self.save3mf() + + def _onRejected(self): + self._onFinished() + + def _onSuccess(self): + self._accepted = True + self._onFinished() + + def _onFinished(self): + # Make sure we don't send the finished signal twice, whatever happens + if self._finished: + return + self._finished = True + + # Reset the model to the workspace writer + mesh_writer = CuraApplication.getInstance().getInstance().getWorkspaceFileHandler().getWriter("3MFWriter") + mesh_writer.setExportModel(None) + + self.finished.emit(self._accepted) diff --git a/plugins/3MFWriter/UCPDialog.qml b/plugins/3MFWriter/UCPDialog.qml new file mode 100644 index 0000000000..25bbb49db0 --- /dev/null +++ b/plugins/3MFWriter/UCPDialog.qml @@ -0,0 +1,109 @@ +// Copyright (c) 2024 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.1 as Cura + +UM.Dialog +{ + id: exportDialog + title: catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Export Universal Cura Project") + + margin: UM.Theme.getSize("default_margin").width + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + + backgroundColor: UM.Theme.getColor("detail_background") + + headerComponent: Rectangle + { + height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height + color: UM.Theme.getColor("main_background") + + ColumnLayout + { + id: headerColumn + + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.rightMargin: anchors.leftMargin + + RowLayout + { + UM.Label + { + id: titleLabel + text: catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Universal Cura Project") + font: UM.Theme.getFont("large") + } + Cura.TertiaryButton + { + id: learnMoreButton + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979") + } + } + UM.Label + { + id: descriptionLabel + text: catalog.i18nc("@action:description Don't translate 'Universal Cura Project'", "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing.") + font: UM.Theme.getFont("default") + wrapMode: Text.Wrap + Layout.maximumWidth: headerColumn.width + } + } + } + + Rectangle + { + anchors.fill: parent + color: UM.Theme.getColor("main_background") + + UM.I18nCatalog { id: catalog; name: "cura" } + + ListView + { + id: settingsExportList + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + spacing: UM.Theme.getSize("thick_margin").height + model: settingsExportModel.settingsGroups + clip: true + + ScrollBar.vertical: UM.ScrollBar { id: verticalScrollBar } + + delegate: SettingsSelectionGroup { Layout.margins: 0 } + } + } + + rightButtons: + [ + Cura.TertiaryButton + { + text: catalog.i18nc("@action:button", "Cancel") + onClicked: reject() + }, + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Save project") + onClicked: accept() + } + ] + + buttonSpacing: UM.Theme.getSize("wide_margin").width + + onClosing: + { + manager.notifyClosed() + } +} diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index eb8a596afe..980aefdf85 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -2,9 +2,12 @@ # Uranium is released under the terms of the LGPLv3 or higher. import sys +from PyQt6.QtQml import qmlRegisterType + from UM.Logger import Logger try: from . import ThreeMFWriter + from .SettingsExportGroup import SettingsExportGroup threemf_writer_was_imported = True except ImportError: Logger.log("w", "Could not import ThreeMFWriter; libSavitar may be missing") @@ -23,20 +26,30 @@ def getMetaData(): if threemf_writer_was_imported: metaData["mesh_writer"] = { - "output": [{ - "extension": "3mf", - "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), - "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", - "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode - }] + "output": [ + { + "extension": "3mf", + "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), + "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode + }, + ] } metaData["workspace_writer"] = { - "output": [{ - "extension": workspace_extension, - "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), - "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", - "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode - }] + "output": [ + { + "extension": workspace_extension, + "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), + "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + }, + { + "extension": "3mf", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "mime_type": "application/x-ucp", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + } + ] } return metaData @@ -44,6 +57,8 @@ def getMetaData(): def register(app): if "3MFWriter.ThreeMFWriter" in sys.modules: + qmlRegisterType(SettingsExportGroup, "ThreeMFWriter", 1, 0, "SettingsExportGroup") + return {"mesh_writer": ThreeMFWriter.ThreeMFWriter(), "workspace_writer": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter()} else: diff --git a/plugins/3MFWriter/plugin.json b/plugins/3MFWriter/plugin.json index b59d4ef8e1..254384dc25 100644 --- a/plugins/3MFWriter/plugin.json +++ b/plugins/3MFWriter/plugin.json @@ -2,7 +2,7 @@ "name": "3MF Writer", "author": "Ultimaker B.V.", "version": "1.0.1", - "description": "Provides support for writing 3MF files.", + "description": "Provides support for writing 3MF and UCP files.", "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/CuraEngineBackend/Cura.proto b/plugins/CuraEngineBackend/Cura.proto index 54c322fa0a..238829ba64 100644 --- a/plugins/CuraEngineBackend/Cura.proto +++ b/plugins/CuraEngineBackend/Cura.proto @@ -33,6 +33,10 @@ message Slice repeated Extruder extruders = 3; // The settings sent to each extruder object repeated SettingExtruder limit_to_extruder = 4; // From which stack the setting would inherit if not defined per object repeated EnginePlugin engine_plugins = 5; + string sentry_id = 6; // The anonymized Sentry user id that requested the slice + string cura_version = 7; // The version of Cura that requested the slice + optional string project_name = 8; // The name of the project that requested the slice + optional string user_name = 9; // The Digital Factory account name of the user that requested the slice } message Extruder diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index 1e965f5e8c..c73dee2fb0 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -76,6 +76,7 @@ class CuraEngineBackend(QObject, Backend): self._default_engine_location = executable_name search_path = [ + os.path.abspath(os.path.join(os.path.dirname(sys.executable), "..", "Resources")), os.path.abspath(os.path.dirname(sys.executable)), os.path.abspath(os.path.join(os.path.dirname(sys.executable), "bin")), os.path.abspath(os.path.join(os.path.dirname(sys.executable), "..")), @@ -163,6 +164,8 @@ class CuraEngineBackend(QObject, Backend): self._is_disabled: bool = False application.getPreferences().addPreference("general/auto_slice", False) + application.getPreferences().addPreference("info/send_engine_crash", True) + application.getPreferences().addPreference("info/anonymous_engine_crash_report", True) self._use_timer: bool = False @@ -173,10 +176,15 @@ class CuraEngineBackend(QObject, Backend): self._change_timer.setSingleShot(True) self._change_timer.setInterval(500) self.determineAutoSlicing() + + application.getPreferences().preferenceChanged.connect(self._onPreferencesChanged) self._slicing_error_message = Message( - text = catalog.i18nc("@message", "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."), + text = catalog.i18nc("@message", "Oops! We encountered an unexpected error during your slicing process. " + "Rest assured, we've automatically received the crash logs for analysis, " + "if you have not disabled data sharing in your preferences. To assist us " + "further, consider sharing your project details on our issue tracker."), title = catalog.i18nc("@message:title", "Slicing failed"), message_type = Message.MessageType.ERROR ) @@ -193,6 +201,9 @@ class CuraEngineBackend(QObject, Backend): application.initializationFinished.connect(self.initialize) + # Ensure that the initial value for send_engine_crash is handled correctly. + application.callLater(self._onPreferencesChanged, "info/send_engine_crash") + def startPlugins(self) -> None: """ Ensure that all backend plugins are started @@ -1088,11 +1099,14 @@ class CuraEngineBackend(QObject, Backend): self._change_timer.timeout.disconnect(self.slice) def _onPreferencesChanged(self, preference: str) -> None: - if preference != "general/auto_slice": + if preference != "general/auto_slice" and preference != "info/send_engine_crash" and preference != "info/anonymous_engine_crash_report": return - auto_slice = self.determineAutoSlicing() - if auto_slice: - self._change_timer.start() + if preference == "general/auto_slice": + auto_slice = self.determineAutoSlicing() + if auto_slice: + self._change_timer.start() + elif preference == "info/send_engine_crash": + os.environ["USE_SENTRY"] = "1" if CuraApplication.getInstance().getPreferences().getValue("info/send_engine_crash") else "0" def tickle(self) -> None: """Tickle the backend so in case of auto slicing, it starts the timer.""" diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 2887743b4f..3a1d7ce431 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -1,12 +1,14 @@ -# Copyright (c) 2023 UltiMaker +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. +import uuid + import os import numpy from string import Formatter from enum import IntEnum import time -from typing import Any, cast, Dict, List, Optional, Set +from typing import Any, cast, Dict, List, Optional, Set, Tuple import re import pyArcus as Arcus # For typing. from PyQt6.QtCore import QCoreApplication @@ -30,6 +32,7 @@ from cura.CuraApplication import CuraApplication from cura.Scene.CuraSceneNode import CuraSceneNode from cura.OneAtATimeIterator import OneAtATimeIterator from cura.Settings.ExtruderManager import ExtruderManager +from cura.CuraVersion import CuraVersion NON_PRINTING_MESH_SETTINGS = ["anti_overhang_mesh", "infill_mesh", "cutting_mesh"] @@ -60,31 +63,56 @@ class GcodeStartEndFormatter(Formatter): # will be used. Alternatively, if the expression is formatted as "{[expression], [extruder_nr]}", # then the expression will be evaluated with the extruder stack of the specified extruder_nr. - _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P\d+)\s*$") + _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P.*)\s*$") - def __init__(self, default_extruder_nr: int = -1, *, - additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = None) -> None: + def __init__(self, all_extruder_settings: Dict[str, Any], default_extruder_nr: int = -1) -> None: super().__init__() + self._all_extruder_settings: Dict[str, Any] = all_extruder_settings self._default_extruder_nr: int = default_extruder_nr - self._additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = additional_per_extruder_settings + + def get_field(self, field_name, args: [str], kwargs: dict) -> Tuple[str, str]: + # get_field method parses all fields in the format-string and parses them individually to the get_value method. + # e.g. for a string "Hello {foo.bar}" would the complete field "foo.bar" would be passed to get_field, and then + # the individual parts "foo" and "bar" would be passed to get_value. This poses a problem for us, because want + # to parse the entire field as a single expression. To solve this, we override the get_field method and return + # the entire field as the expression. + return self.get_value(field_name, args, kwargs), field_name def get_value(self, expression: str, args: [str], kwargs: dict) -> str: - extruder_nr = self._default_extruder_nr + + # The following variables are not settings, but only become available after slicing. + # when these variables are encountered, we return them as-is. They are replaced later + # when the actual values are known. + post_slice_data_variables = ["filament_cost", "print_time", "filament_amount", "filament_weight", "jobname"] + if expression in post_slice_data_variables: + return f"{{{expression}}}" + + extruder_nr = str(self._default_extruder_nr) # The settings may specify a specific extruder to use. This is done by - # formatting the expression as "{expression}, {extruder_nr}". If the + # formatting the expression as "{expression}, {extruder_nr_expr}". If the # expression is formatted like this, we extract the extruder_nr and use # it to get the value from the correct extruder stack. match = self._extruder_regex.match(expression) if match: expression = match.group("expression") - extruder_nr = int(match.group("extruder_nr")) + extruder_nr_expr = match.group("extruder_nr_expr") - if self._additional_per_extruder_settings is not None and str( - extruder_nr) in self._additional_per_extruder_settings: - additional_variables = self._additional_per_extruder_settings[str(extruder_nr)] + if extruder_nr_expr.isdigit(): + extruder_nr = extruder_nr_expr + else: + # We get the value of the extruder_nr_expr from `_all_extruder_settings` dictionary + # rather than the global container stack. The `_all_extruder_settings["-1"]` is a + # dict-representation of the global container stack, with additional properties such + # as `initial_extruder_nr`. As users may enter such expressions we can't use the + # global container stack. + extruder_nr = str(self._all_extruder_settings["-1"].get(extruder_nr_expr, "-1")) + + if extruder_nr in self._all_extruder_settings: + additional_variables = self._all_extruder_settings[extruder_nr].copy() else: - additional_variables = dict() + Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") + additional_variables = self._all_extruder_settings["-1"].copy() # Add the arguments and keyword arguments to the additional settings. These # are currently _not_ used, but they are added for consistency with the @@ -94,10 +122,13 @@ class GcodeStartEndFormatter(Formatter): for key, value in kwargs.items(): additional_variables[key] = value - if extruder_nr == -1: + if extruder_nr == "-1": container_stack = CuraApplication.getInstance().getGlobalContainerStack() else: container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) + if not container_stack: + Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") + container_stack = CuraApplication.getInstance().getGlobalContainerStack() setting_function = SettingFunction(expression) value = setting_function(container_stack, additional_variables=additional_variables) @@ -111,12 +142,13 @@ class StartSliceJob(Job): def __init__(self, slice_message: Arcus.PythonMessage) -> None: super().__init__() - self._scene = CuraApplication.getInstance().getController().getScene() #type: Scene + self._scene: Scene = CuraApplication.getInstance().getController().getScene() self._slice_message: Arcus.PythonMessage = slice_message - self._is_cancelled = False #type: bool - self._build_plate_number = None #type: Optional[int] + self._is_cancelled: bool = False + self._build_plate_number: Optional[int] = None - self._all_extruders_settings = None #type: Optional[Dict[str, Any]] # cache for all setting values from all stacks (global & extruder) for the current machine + # cache for all setting values from all stacks (global & extruder) for the current machine + self._all_extruders_settings: Optional[Dict[str, Any]] = None def getSliceMessage(self) -> Arcus.PythonMessage: return self._slice_message @@ -315,6 +347,17 @@ class StartSliceJob(Job): self._buildGlobalSettingsMessage(stack) self._buildGlobalInheritsStackMessage(stack) + user_id = uuid.getnode() # On all of Cura's supported platforms, this returns the MAC address which is pseudonymical information (!= anonymous). + user_id %= 2 ** 16 # So to make it anonymous, apply a bitmask selecting only the last 16 bits. This prevents it from being traceable to a specific user but still gives somewhat of an idea of whether it's just the same user hitting the same crash over and over again, or if it's widespread. + self._slice_message.sentry_id = f"{user_id}" + self._slice_message.cura_version = CuraVersion + + # Add the project name to the message if the user allows for non-anonymous crash data collection. + account = CuraApplication.getInstance().getCuraAPI().account + if account and account.isLoggedIn and not CuraApplication.getInstance().getPreferences().getValue("info/anonymous_engine_crash_report"): + self._slice_message.project_name = CuraApplication.getInstance().getPrintInformation().baseName + self._slice_message.user_name = account.userName + # Build messages for extruder stacks for extruder_stack in global_stack.extruderList: self._buildExtruderMessage(extruder_stack) @@ -446,10 +489,7 @@ class StartSliceJob(Job): # Get "replacement-keys" for the extruders. In the formatter the settings stack is used to get the # replacement values for the setting-keys. However, the values for `material_id`, `material_type`, # etc are not in the settings stack. - additional_per_extruder_settings = self._all_extruders_settings.copy() - additional_per_extruder_settings["default_extruder_nr"] = default_extruder_nr - fmt = GcodeStartEndFormatter(default_extruder_nr=default_extruder_nr, - additional_per_extruder_settings=additional_per_extruder_settings) + fmt = GcodeStartEndFormatter(self._all_extruders_settings, default_extruder_nr=default_extruder_nr) return str(fmt.format(value)) except: Logger.logException("w", "Unable to do token replacement on start/end g-code") diff --git a/plugins/DigitalLibrary/__init__.py b/plugins/DigitalLibrary/__init__.py index 968aef66ee..fc27f873c8 100644 --- a/plugins/DigitalLibrary/__init__.py +++ b/plugins/DigitalLibrary/__init__.py @@ -1,7 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from UM.MimeTypeDatabase import MimeType, MimeTypeDatabase from .src import DigitalFactoryFileProvider, DigitalFactoryOutputDevicePlugin, DigitalFactoryController diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml index 0a94a4f48a..0b79b77a08 100644 --- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml @@ -208,12 +208,14 @@ Item anchors.rightMargin: UM.Theme.getSize("thin_margin").height enabled: UM.Backend.state == UM.Backend.Done - currentIndex: UM.Backend.state == UM.Backend.Done ? 0 : 1 + currentIndex: UM.Backend.state == UM.Backend.Done ? dfFilenameTextfield.text.startsWith("MM")? 1 : 0 : 2 + textRole: "text" valueRole: "value" model: [ - { text: catalog.i18nc("@option", "Save Cura project and print file"), key: "3mf_ufp", value: ["3mf", "ufp"] }, + { text: catalog.i18nc("@option", "Save Cura project and .ufp print file"), key: "3mf_ufp", value: ["3mf", "ufp"] }, + { text: catalog.i18nc("@option", "Save Cura project and .makerbot print file"), key: "3mf_makerbot", value: ["3mf", "makerbot"] }, { text: catalog.i18nc("@option", "Save Cura project"), key: "3mf", value: ["3mf"] }, ] } diff --git a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py index 26912abd9a..271fe652c8 100644 --- a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py +++ b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py @@ -27,7 +27,7 @@ from .ExportFileJob import ExportFileJob class DFFileExportAndUploadManager: """ Class responsible for exporting the scene and uploading the exported data to the Digital Factory Library. Since 3mf - and UFP files may need to be uploaded at the same time, this class keeps a single progress and success message for + and (UFP or makerbot) files may need to be uploaded at the same time, this class keeps a single progress and success message for both files and updates those messages according to the progress of both the file job uploads. """ def __init__(self, file_handlers: Dict[str, FileHandler], @@ -118,7 +118,7 @@ class DFFileExportAndUploadManager: library_project_id = self._library_project_id, source_file_id = self._source_file_id ) - self._api.requestUploadUFP(request, on_finished = self._uploadFileData, on_error = self._onRequestUploadPrintFileFailed) + self._api.requestUploadMeshFile(request, on_finished = self._uploadFileData, on_error = self._onRequestUploadPrintFileFailed) def _uploadFileData(self, file_upload_response: Union[DFLibraryFileUploadResponse, DFPrintJobUploadResponse]) -> None: """Uploads the exported file data after the file or print job upload has been registered at the Digital Factory @@ -279,22 +279,25 @@ class DFFileExportAndUploadManager: This means that something went wrong with the initial request to create a "file" entry in the digital library. """ reply_string = bytes(reply.readAll()).decode() - filename_ufp = self._file_name + ".ufp" - Logger.log("d", "An error occurred while uploading the print job file '{}' to the Digital Library project '{}': {}".format(filename_ufp, self._library_project_id, reply_string)) + if "ufp" in self._formats: + filename_meshfile = self._file_name + ".ufp" + elif "makerbot" in self._formats: + filename_meshfile = self._file_name + ".makerbot" + Logger.log("d", "An error occurred while uploading the print job file '{}' to the Digital Library project '{}': {}".format(filename_meshfile, self._library_project_id, reply_string)) with self._message_lock: # Set the progress to 100% when the upload job fails, to avoid having the progress message stuck - self._file_upload_job_metadata[filename_ufp]["upload_status"] = "failed" - self._file_upload_job_metadata[filename_ufp]["upload_progress"] = 100 + self._file_upload_job_metadata[filename_meshfile]["upload_status"] = "failed" + self._file_upload_job_metadata[filename_meshfile]["upload_progress"] = 100 human_readable_error = self.extractErrorTitle(reply_string) - self._file_upload_job_metadata[filename_ufp]["file_upload_failed_message"] = getBackwardsCompatibleMessage( + self._file_upload_job_metadata[filename_meshfile]["file_upload_failed_message"] = getBackwardsCompatibleMessage( title = "File upload error", - text = "Failed to upload the file '{}' to '{}'. {}".format(filename_ufp, self._library_project_name, human_readable_error), + text = "Failed to upload the file '{}' to '{}'. {}".format(filename_meshfile, self._library_project_name, human_readable_error), message_type_str = "ERROR", lifetime = 30 ) self._on_upload_error() - self._onFileUploadFinished(filename_ufp) + self._onFileUploadFinished(filename_meshfile) @staticmethod def extractErrorTitle(reply_body: Optional[str]) -> str: @@ -407,4 +410,28 @@ class DFFileExportAndUploadManager: job_ufp = ExportFileJob(self._file_handlers["ufp"], self._nodes, self._file_name, "ufp") job_ufp.finished.connect(self._onPrintFileExported) self._upload_jobs.append(job_ufp) + + if "makerbot" in self._formats and "makerbot" in self._file_handlers and self._file_handlers["makerbot"]: + filename_makerbot = self._file_name + ".makerbot" + metadata[filename_makerbot] = { + "export_job_output" : None, + "upload_progress" : -1, + "upload_status" : "", + "file_upload_response": None, + "file_upload_success_message": getBackwardsCompatibleMessage( + text = "'{}' was uploaded to '{}'.".format(filename_makerbot, self._library_project_name), + title = "Upload successful", + message_type_str = "POSITIVE", + lifetime = 30, + ), + "file_upload_failed_message": getBackwardsCompatibleMessage( + text = "Failed to upload the file '{}' to '{}'.".format(filename_makerbot, self._library_project_name), + title = "File upload error", + message_type_str = "ERROR", + lifetime = 30 + ) + } + job_makerbot = ExportFileJob(self._file_handlers["makerbot"], self._nodes, self._file_name, "makerbot") + job_makerbot.finished.connect(self._onPrintFileExported) + self._upload_jobs.append(job_makerbot) return metadata diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index 13c65f79c4..c0ce594ecf 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -3,7 +3,6 @@ import json from json import JSONDecodeError -import re from time import time from typing import List, Any, Optional, Union, Type, Tuple, Dict, cast, TypeVar, Callable @@ -313,7 +312,7 @@ class DigitalFactoryApiClient: error_callback = on_error, timeout = self.DEFAULT_REQUEST_TIMEOUT) - def requestUploadUFP(self, request: DFPrintJobUploadRequest, + def requestUploadMeshFile(self, request: DFPrintJobUploadRequest, on_finished: Callable[[DFPrintJobUploadResponse], Any], on_error: Optional[Callable[["QNetworkReply", "QNetworkReply.NetworkError"], None]] = None) -> None: """Requests the Digital Factory to register the upload of a file in a library project. diff --git a/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py b/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py index 0a10ea034c..0ed8f491f9 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryOutputDevice.py @@ -92,7 +92,8 @@ class DigitalFactoryOutputDevice(ProjectOutputDevice): if not self._controller.file_handlers: self._controller.file_handlers = { "3mf": CuraApplication.getInstance().getWorkspaceFileHandler(), - "ufp": CuraApplication.getInstance().getMeshFileHandler() + "ufp": CuraApplication.getInstance().getMeshFileHandler(), + "makerbot": CuraApplication.getInstance().getMeshFileHandler() } self._dialog = CuraApplication.getInstance().createQmlComponent(self._dialog_path, {"manager": self._controller}) diff --git a/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py b/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py index 92aa92ef4c..bd12a4ca12 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py @@ -4,7 +4,6 @@ from typing import List, Optional from PyQt6.QtCore import Qt, pyqtSignal -from UM.Logger import Logger from UM.Qt.ListModel import ListModel from .DigitalFactoryProjectResponse import DigitalFactoryProjectResponse diff --git a/plugins/GCodeGzWriter/__init__.py b/plugins/GCodeGzWriter/__init__.py index 95949eee74..1f350d686c 100644 --- a/plugins/GCodeGzWriter/__init__.py +++ b/plugins/GCodeGzWriter/__init__.py @@ -2,7 +2,6 @@ # Cura is released under the terms of the LGPLv3 or higher. from UM.i18n import i18nCatalog -from UM.Platform import Platform from . import GCodeGzWriter diff --git a/plugins/GCodeWriter/GCodeWriter.py b/plugins/GCodeWriter/GCodeWriter.py index 667e064d90..9fa4f88614 100644 --- a/plugins/GCodeWriter/GCodeWriter.py +++ b/plugins/GCodeWriter/GCodeWriter.py @@ -11,7 +11,6 @@ from UM.Settings.InstanceContainer import InstanceContainer from cura.Machines.ContainerTree import ContainerTree from UM.i18n import i18nCatalog -from cura.Settings.CuraStackBuilder import CuraStackBuilder catalog = i18nCatalog("cura") diff --git a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml index dc1a479be9..5e1ddc2f3f 100644 --- a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml @@ -139,6 +139,34 @@ Item decimals: 0 forceUpdateOnChangeFunction: forceUpdateFunction } + + Cura.NumericTextFieldWithUnit + { + id: extruderStartCodeDurationFieldId + containerStackId: base.extruderStackId + settingKey: "machine_extruder_start_code_duration" + settingStoreIndex: propertyStoreIndex + labelText: catalog.i18nc("@label", "Extruder Start G-code duration") + labelFont: base.labelFont + labelWidth: base.labelWidth + controlWidth: base.controlWidth + unitText: catalog.i18nc("@label", "s") + forceUpdateOnChangeFunction: forceUpdateFunction + } + + Cura.NumericTextFieldWithUnit + { + id: extruderEndCodeDurationFieldId + containerStackId: base.extruderStackId + settingKey: "machine_extruder_end_code_duration" + settingStoreIndex: propertyStoreIndex + labelText: catalog.i18nc("@label", "Extruder End G-code duration") + labelFont: base.labelFont + labelWidth: base.labelWidth + controlWidth: base.controlWidth + unitText: catalog.i18nc("@label", "s") + forceUpdateOnChangeFunction: forceUpdateFunction + } } } diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py new file mode 100644 index 0000000000..233575029c --- /dev/null +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -0,0 +1,272 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. +from io import StringIO, BufferedIOBase +import json +from typing import cast, List, Optional, Dict, Tuple +from zipfile import BadZipFile, ZipFile, ZIP_DEFLATED +import pyDulcificum as du + +from PyQt6.QtCore import QBuffer + +from UM.Logger import Logger +from UM.Math.AxisAlignedBox import AxisAlignedBox +from UM.Mesh.MeshWriter import MeshWriter +from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType +from UM.PluginRegistry import PluginRegistry +from UM.Scene.SceneNode import SceneNode +from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator +from UM.i18n import i18nCatalog + +from cura.CuraApplication import CuraApplication +from cura.Snapshot import Snapshot +from cura.Utils.Threading import call_on_qt_thread +from cura.CuraVersion import ConanInstalls + +catalog = i18nCatalog("cura") + + +class MakerbotWriter(MeshWriter): + """A file writer that writes '.makerbot' files.""" + + def __init__(self) -> None: + super().__init__(add_to_recent_files=False) + Logger.info(f"Using PyDulcificum: {du.__version__}") + MimeTypeDatabase.addMimeType( + MimeType( + name="application/x-makerbot", + comment="Makerbot Toolpath Package", + suffixes=["makerbot"] + ) + ) + MimeTypeDatabase.addMimeType( + MimeType( + name="application/x-makerbot-sketch", + comment="Makerbot Toolpath Package", + suffixes=["makerbot"] + ) + ) + + _PNG_FORMAT = [ + {"prefix": "isometric_thumbnail", "width": 120, "height": 120}, + {"prefix": "isometric_thumbnail", "width": 320, "height": 320}, + {"prefix": "isometric_thumbnail", "width": 640, "height": 640}, + {"prefix": "thumbnail", "width": 90, "height": 90}, + ] + + _PNG_FORMAT_METHOD = [ + {"prefix": "thumbnail", "width": 140, "height": 106}, + {"prefix": "thumbnail", "width": 212, "height": 300}, + {"prefix": "thumbnail", "width": 960, "height": 1460}, + ] + + _META_VERSION = "3.0.0" + + # must be called from the main thread because of OpenGL + @staticmethod + @call_on_qt_thread + def _createThumbnail(width: int, height: int) -> Optional[QBuffer]: + if not CuraApplication.getInstance().isVisible: + Logger.warning("Can't create snapshot when renderer not initialized.") + return + try: + snapshot = Snapshot.isometricSnapshot(width, height) + + thumbnail_buffer = QBuffer() + thumbnail_buffer.open(QBuffer.OpenModeFlag.WriteOnly) + + snapshot.save(thumbnail_buffer, "PNG") + + return thumbnail_buffer + + except: + Logger.logException("w", "Failed to create snapshot image") + + return None + + def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter.OutputMode.BinaryMode) -> bool: + metadata, file_format = self._getMeta(nodes) + if mode != MeshWriter.OutputMode.BinaryMode: + Logger.log("e", "MakerbotWriter does not support text mode.") + self.setInformation(catalog.i18nc("@error:not supported", "MakerbotWriter does not support text mode.")) + return False + + # The GCodeWriter plugin is always available since it is in the "required" list of plugins. + gcode_writer = PluginRegistry.getInstance().getPluginObject("GCodeWriter") + + if gcode_writer is None: + Logger.log("e", "Could not find the GCodeWriter plugin, is it disabled?.") + self.setInformation( + catalog.i18nc("@error:load", "Could not load GCodeWriter plugin. Try to re-enable the plugin.")) + return False + + gcode_writer = cast(MeshWriter, gcode_writer) + + gcode_text_io = StringIO() + success = gcode_writer.write(gcode_text_io, None) + filename, filedata = "", "" + # Writing the g-code failed. Then I can also not write the gzipped g-code. + if not success: + self.setInformation(gcode_writer.getInformation()) + return False + match file_format: + case "application/x-makerbot-sketch": + filename, filedata = "print.gcode", gcode_text_io.getvalue() + self._PNG_FORMATS = self._PNG_FORMAT + case "application/x-makerbot": + filename, filedata = "print.jsontoolpath", du.gcode_2_miracle_jtp(gcode_text_io.getvalue()) + self._PNG_FORMATS = self._PNG_FORMAT + self._PNG_FORMAT_METHOD + case _: + raise Exception("Unsupported Mime type") + + png_files = [] + for png_format in self._PNG_FORMATS: + width, height, prefix = png_format["width"], png_format["height"], png_format["prefix"] + thumbnail_buffer = self._createThumbnail(width, height) + if thumbnail_buffer is None: + Logger.warning(f"Could not create thumbnail of size {width}x{height}.") + continue + png_files.append({ + "file": f"{prefix}_{width}x{height}.png", + "data": thumbnail_buffer.data(), + }) + + try: + with ZipFile(stream, "w", compression=ZIP_DEFLATED) as zip_stream: + zip_stream.writestr("meta.json", json.dumps(metadata, indent=4)) + zip_stream.writestr(filename, filedata) + for png_file in png_files: + file, data = png_file["file"], png_file["data"] + zip_stream.writestr(file, data) + except (IOError, OSError, BadZipFile) as ex: + Logger.log("e", f"Could not write to (.makerbot) file because: '{ex}'.") + self.setInformation(catalog.i18nc("@error", "MakerbotWriter could not save to the designated path.")) + return False + + return True + + def _getMeta(self, root_nodes: List[SceneNode]) -> Tuple[Dict[str, any], str]: + application = CuraApplication.getInstance() + machine_manager = application.getMachineManager() + global_stack = machine_manager.activeMachine + extruders = global_stack.extruderList + + nodes = [] + for root_node in root_nodes: + for node in DepthFirstIterator(root_node): + if not getattr(node, "_outside_buildarea", False): + if node.callDecoration( + "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration( + "isNonThumbnailVisibleMesh"): + nodes.append(node) + + meta = dict() + # This is a bit of a "hack", the mime type should be passed through with the export writer but + # since this is not the case we get the mime type from the global stack instead + file_format = global_stack.definition.getMetaDataEntry("file_formats") + meta["bot_type"] = global_stack.definition.getMetaDataEntry("reference_machine_id") + + bounds: Optional[AxisAlignedBox] = None + for node in nodes: + node_bounds = node.getBoundingBox() + if node_bounds is None: + continue + if bounds is None: + bounds = node_bounds + else: + bounds = bounds + node_bounds + if file_format == "application/x-makerbot-sketch": + bounds = None + if bounds is not None: + meta["bounding_box"] = { + "x_min": bounds.left, + "x_max": bounds.right, + "y_min": bounds.back, + "y_max": bounds.front, + "z_min": bounds.bottom, + "z_max": bounds.top, + } + + material_bed_temperature = global_stack.getProperty("material_bed_temperature", "value") + meta["platform_temperature"] = material_bed_temperature + + build_volume_temperature = global_stack.getProperty("build_volume_temperature", "value") + meta["build_plane_temperature"] = build_volume_temperature + + print_information = application.getPrintInformation() + + meta["commanded_duration_s"] = int(print_information.currentPrintTime) + meta["duration_s"] = int(print_information.currentPrintTime) + + material_lengths = list(map(meterToMillimeter, print_information.materialLengths)) + meta["extrusion_distance_mm"] = material_lengths[0] + meta["extrusion_distances_mm"] = material_lengths + + meta["extrusion_mass_g"] = print_information.materialWeights[0] + meta["extrusion_masses_g"] = print_information.materialWeights + + meta["uuid"] = print_information.slice_uuid + + materials = [extruder.material.getMetaData().get("reference_material_id") for extruder in extruders] + + meta["material"] = materials[0] + meta["materials"] = materials + + materials_temps = [extruder.getProperty("default_material_print_temperature", "value") for extruder in + extruders] + meta["extruder_temperature"] = materials_temps[0] + meta["extruder_temperatures"] = materials_temps + + meta["model_counts"] = [{"count": len(nodes), "name": "instance0"}] + + tool_types = [extruder.variant.getMetaDataEntry("reference_extruder_id") for extruder in extruders] + meta["tool_type"] = tool_types[0] + meta["tool_types"] = tool_types + + meta["version"] = MakerbotWriter._META_VERSION + + meta["preferences"] = dict() + bounds = application.getBuildVolume().getBoundingBox() + meta["preferences"]["instance0"] = { + "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None, + "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, + } + + meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}} + + version_info = dict() + cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) + version_info["curaengine_version"] = cura_engine_info["version"] + version_info["curaengine_commit_hash"] = cura_engine_info["revision"] + + dulcificum_info = ConanInstalls.get("dulcificum", {"version": "unknown", "revision": "unknown"}) + version_info["dulcificum_version"] = dulcificum_info["version"] + version_info["dulcificum_commit_hash"] = dulcificum_info["revision"] + + version_info["makerbot_writer_version"] = self.getVersion() + version_info["pyDulcificum_version"] = du.__version__ + + # Add engine plugin information to the metadata + for name, package_info in ConanInstalls.items(): + if not name.startswith("curaengine_"): + continue + version_info[f"{name}_version"] = package_info["version"] + version_info[f"{name}_commit_hash"] = package_info["revision"] + + # Add version info to the main metadata, but also to "miracle_config" + # so that it shows up in analytics + meta["miracle_config"].update(version_info) + meta.update(version_info) + + # TODO add the following instructions + # num_tool_changes + # num_z_layers + # num_z_transitions + # platform_temperature + # total_commands + + return meta, file_format + + +def meterToMillimeter(value: float) -> float: + """Converts a value in meters to millimeters.""" + return value * 1000.0 diff --git a/plugins/MakerbotWriter/__init__.py b/plugins/MakerbotWriter/__init__.py new file mode 100644 index 0000000000..60f232fbc0 --- /dev/null +++ b/plugins/MakerbotWriter/__init__.py @@ -0,0 +1,37 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.i18n import i18nCatalog + +from . import MakerbotWriter + +catalog = i18nCatalog("cura") + + +def getMetaData(): + file_extension = "makerbot" + return { + "mesh_writer": + { + "output": [ + { + "extension": file_extension, + "description": catalog.i18nc("@item:inlistbox", "Makerbot Printfile"), + "mime_type": "application/x-makerbot", + "mode": MakerbotWriter.MakerbotWriter.OutputMode.BinaryMode, + }, + { + "extension": file_extension, + "description": catalog.i18nc("@item:inlistbox", "Makerbot Sketch Printfile"), + "mime_type": "application/x-makerbot-sketch", + "mode": MakerbotWriter.MakerbotWriter.OutputMode.BinaryMode, + } + ] + }, + } + + +def register(app): + return { + "mesh_writer": MakerbotWriter.MakerbotWriter(), + } diff --git a/plugins/MakerbotWriter/plugin.json b/plugins/MakerbotWriter/plugin.json new file mode 100644 index 0000000000..f2b875bb54 --- /dev/null +++ b/plugins/MakerbotWriter/plugin.json @@ -0,0 +1,13 @@ +{ + "name": "Makerbot Printfile Writer", + "author": "UltiMaker", + "version": "0.1.0", + "description": "Provides support for writing MakerBot Format Packages.", + "api": 8, + "supported_sdk_versions": [ + "8.0.0", + "8.1.0", + "8.2.0" + ], + "i18n-catalog": "cura" +} diff --git a/plugins/Marketplace/MissingPackageList.py b/plugins/Marketplace/MissingPackageList.py index 018e977823..38d7718dc0 100644 --- a/plugins/Marketplace/MissingPackageList.py +++ b/plugins/Marketplace/MissingPackageList.py @@ -3,12 +3,10 @@ from typing import Optional, TYPE_CHECKING, Dict, List -from .Constants import PACKAGES_URL from .PackageModel import PackageModel from .RemotePackageList import RemotePackageList from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication -from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To request the package list from the API. from UM.i18n import i18nCatalog if TYPE_CHECKING: diff --git a/plugins/Marketplace/PackageModel.py b/plugins/Marketplace/PackageModel.py index afc6e0ce73..ddd8f9b531 100644 --- a/plugins/Marketplace/PackageModel.py +++ b/plugins/Marketplace/PackageModel.py @@ -2,7 +2,6 @@ # Cura is released under the terms of the LGPLv3 or higher. import re -from enum import Enum from typing import Any, cast, Dict, List, Optional from PyQt6.QtCore import pyqtProperty, QObject, pyqtSignal, pyqtSlot @@ -12,7 +11,6 @@ from cura.CuraApplication import CuraApplication from cura.CuraPackageManager import CuraPackageManager from cura.Settings.CuraContainerRegistry import CuraContainerRegistry # To get names of materials we're compatible with. from UM.i18n import i18nCatalog # To translate placeholder names if data is not present. -from UM.Logger import Logger from UM.PluginRegistry import PluginRegistry catalog = i18nCatalog("cura") diff --git a/plugins/PerObjectSettingsTool/PerObjectItem.qml b/plugins/PerObjectSettingsTool/PerObjectItem.qml index b6cf13943b..cd406c80af 100644 --- a/plugins/PerObjectSettingsTool/PerObjectItem.qml +++ b/plugins/PerObjectSettingsTool/PerObjectItem.qml @@ -25,7 +25,7 @@ UM.TooltipArea onClicked: { addedSettingsModel.setVisible(model.key, checked); - UM.ActiveTool.forceUpdate(); + UM.Controller.forceUpdate(); } } diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py index 15f37e499d..d6b433a0c2 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py +++ b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py @@ -11,7 +11,7 @@ from UM.Settings.SettingInstance import SettingInstance from UM.Logger import Logger import UM.Settings.Models.SettingVisibilityHandler -from cura.Settings.ExtruderManager import ExtruderManager #To get global-inherits-stack setting values from different extruders. +from cura.Settings.ExtruderManager import ExtruderManager # To get global-inherits-stack setting values from different extruders. from cura.Settings.SettingOverrideDecorator import SettingOverrideDecorator diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index 0ddedee897..78d6643034 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -23,7 +23,7 @@ Item readonly property string infillMeshType: "infill_mesh" readonly property string antiOverhangMeshType: "anti_overhang_mesh" - property var currentMeshType: UM.ActiveTool.properties.getValue("MeshType") + property var currentMeshType: UM.Controller.properties.getValue("MeshType") // Update the view every time the currentMeshType changes onCurrentMeshTypeChanged: @@ -56,7 +56,7 @@ Item function setMeshType(type) { - UM.ActiveTool.setProperty("MeshType", type) + UM.Controller.setProperty("MeshType", type) updateMeshTypeCheckedState(type) } @@ -224,7 +224,7 @@ Item visibilityHandler: Cura.PerObjectSettingVisibilityHandler { id: visibility_handler - selectedObjectId: UM.ActiveTool.properties.getValue("SelectedObjectId") + selectedObjectId: UM.Controller.properties.getValue("SelectedObjectId") } // For some reason the model object is updated after removing him from the memory and @@ -320,7 +320,7 @@ Item { id: provider - containerStackId: UM.ActiveTool.properties.getValue("ContainerID") + containerStackId: UM.Controller.properties.getValue("ContainerID") key: model.key watchedProperties: [ "value", "enabled", "validationState" ] storeIndex: 0 @@ -330,7 +330,7 @@ Item UM.SettingPropertyProvider { id: inheritStackProvider - containerStackId: UM.ActiveTool.properties.getValue("ContainerID") + containerStackId: UM.Controller.properties.getValue("ContainerID") key: model.key watchedProperties: [ "limit_to_extruder" ] } @@ -381,22 +381,22 @@ Item Connections { - target: UM.ActiveTool + target: UM.Controller function onPropertiesChanged() { - // the values cannot be bound with UM.ActiveTool.properties.getValue() calls, + // the values cannot be bound with UM.Controller.properties.getValue() calls, // so here we connect to the signal and update the those values. - if (typeof UM.ActiveTool.properties.getValue("SelectedObjectId") !== "undefined") + if (typeof UM.Controller.properties.getValue("SelectedObjectId") !== "undefined") { - const selectedObjectId = UM.ActiveTool.properties.getValue("SelectedObjectId") + const selectedObjectId = UM.Controller.properties.getValue("SelectedObjectId") if (addedSettingsModel.visibilityHandler.selectedObjectId != selectedObjectId) { addedSettingsModel.visibilityHandler.selectedObjectId = selectedObjectId } } - if (typeof UM.ActiveTool.properties.getValue("ContainerID") !== "undefined") + if (typeof UM.Controller.properties.getValue("ContainerID") !== "undefined") { - const containerId = UM.ActiveTool.properties.getValue("ContainerID") + const containerId = UM.Controller.properties.getValue("ContainerID") if (provider.containerStackId !== containerId) { provider.containerStackId = containerId diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index 0f379479ba..47eb1e5507 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -120,6 +120,8 @@ UM.Dialog UM.Label { Layout.fillWidth: true + Layout.preferredHeight: height + elide: Text.ElideRight text: manager.getScriptLabelByKey(modelData.toString()) } diff --git a/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py b/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py new file mode 100644 index 0000000000..44709afd24 --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/AddCoolingProfile.py @@ -0,0 +1,837 @@ +# Designed in January 2023 by GregValiant (Greg Foresi) +## My design intent was to make this as full featured and "industrial strength" as I could. People printing exotic materials on large custom printers may want to turn the fans off for certain layers, and then back on again later in the print. This script allows that. +# Functions: +## Remove all fan speed lines from the file (optional). This should be enabled for the first instance of the script. It is disabled by default in any following instances. +## "By Layer" allows the user to adjust the fan speed up, or down, or off, within the print. "By Feature" allows different fan speeds for different features (;TYPE:WALL-OUTER, etc.). +## If 'By Feature' then a Start Layer and/or an End Layer can be defined. +## Fan speeds are scaled PWM (0 - 255) or RepRap (0.0 - 1.0) depending on {machine_scale_fan_speed_zero_to_one}. +## A minimum fan speed of 12% is enforced. It is the slowest speed that my cooling fan will turn on so that's what I used. 'M106 S14' (as Cura might insert) was pretty useless. +## If multiple extruders have separate fan circuits the speeds are set at tool changes and conform to the layer or feature setting. There is support for up to 4 layer cooling fan circuits. +## My thanks to @5axes(@CUQ), @fieldOfView(@AHoeben), @Ghostkeeper, and @Torgeir. A special thanks to @RBurema for his patience in reviewing my 'non-pythonic' script. +## 9/14/23 (Greg Foresi) Added support for One-at-a-Time print sequence. +## 12/15/23 (Greg Foresi) Split off 'Single Fan By Layer', 'Multi-fan By Layer', 'Single Fan By Feature', and 'Multi-fan By Feature' from the main 'execute' script. +## 1/5/24 (Greg Foresi) Revised the regex replacements. + +from ..Script import Script +from UM.Application import Application +import re + +class AddCoolingProfile(Script): + + def getSettingDataString(self): + return """{ + "name": "Advanced Cooling Fan Control", + "key": "AddCoolingProfile", + "metadata": {}, + "version": 2, + "settings": + { + "fan_layer_or_feature": + { + "label": "Cooling Control by:", + "description": "A fan percentage of ''0'' turns the fan off. Minimum Fan is 12% (when on). All layer entries are the Cura Preview number. ''By Layer'': Enter as ''Layer#/Fan%'' (foreslash is the delimiter). Your final layer speed will continue to the end of the Gcode. ''By Feature'': If you enable an 'End Layer' then the ''Final %'' is available and is the speed that will finish the file. 'By Feature' is better for large slow prints than it is for short fast prints.", + "type": "enum", + "options": { + "by_layer": "Layer Numbers", + "by_feature": "Feature Types"}, + "default_value": "by_layer" + }, + "delete_existing_m106": + { + "label": "Remove M106 lines prior to inserting new.", + "description": "If you have 2 or more instances of 'Advanced Cooling Fan Control' running (to cool a portion of a print differently), then you must uncheck this box or the followup instances will remove all the lines inserted by the first instance. Pay attention to the Start and Stop layers. Regardless of this setting: The script always removes M106 lines starting with the lowest layer number (when 'By Layer') or the starting layer number (when 'By Feature'). If you want to keep the M106 lines that Cura inserted up to the point where this post-processor will start making insertions, then un-check the box.", + "type": "bool", + "enabled": true, + "value": true, + "default_value": true + }, + "feature_fan_start_layer": + { + "label": "Starting Layer", + "description": "Layer to start the insertion at. Use the Cura preview numbers. Changes will begin at the start of that layer.", + "type": "int", + "default_value": 5, + "minimum_value": 1, + "unit": "Lay# ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_end_layer": + { + "label": "Ending Layer", + "description": "Layer to complete the insertion at. Enter '-1' for the entire file or enter a layer number. Insertions will stop at the END of this layer. If you set an End Layer then you should set the Final % that will finish the file", + "type": "int", + "default_value": -1, + "minimum_value": -1, + "unit": "Lay# ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "layer_fan_1": + { + "label": "Layer/Percent #1", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage. There are up to 8 changes. If you need more then add a second instance of this script and remember to turn off 'Remove M106 lines' in the second instance. The layer numbers in the second instance must start with a layer number higher than the last layer number in a previous script. You can't end the first script with a setting for layer 80 and then start the second script with a setting for layer 40 because 'Remove M106 lines' always starts with the lowest layer number when 'By Layer' is selected.", + "type": "str", + "default_value": "5/30", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_2": + { + "label": "Layer/Percent #2", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_3": + { + "label": "Layer/Percent #3", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_4": + { + "label": "Layer/Percent #4", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_5": + { + "label": "Layer/Percent #5", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_6": + { + "label": "Layer/Percent #6", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_7": + { + "label": "Layer/Percent #7", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "layer_fan_8": + { + "label": "Layer/Percent #8", + "description": "Enter as: 'LAYER / Percent' Ex: 55/100 with the layer first, then a '/' to delimit, and then the fan percentage.", + "type": "str", + "default_value": "", + "unit": "L#/% ", + "enabled": "fan_layer_or_feature == 'by_layer'" + }, + "feature_fan_skirt": + { + "label": "Skirt/Brim/Ooze Shield %", + "description": "Enter the fan percentage for skirt/brim. If you are starting at a layer above 1 then this setting only affects Ooze Shields and from the Start Layer up.", + "type": "int", + "default_value": 0, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_wall_inner": + { + "label": "Inner Walls %", + "description": "Enter the fan percentage for the Wall-Inner.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_wall_outer": + { + "label": "Outer Walls %", + "description": "Enter the fan percentage for the Wall-Outer.", + "type": "int", + "default_value": 75, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_fill": + { + "label": "Infill %", + "description": "Enter the fan percentage for the Infill.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_skin": + { + "label": "Top/Bottom (Skin) %", + "description": "Enter the fan percentage for the Skins.", + "type": "int", + "default_value": 100, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_support": + { + "label": "Support %", + "description": "Enter the fan percentage for the Supports.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_support_interface": + { + "label": "Support Interface %", + "description": "Enter the fan percentage for the Support Interface.", + "type": "int", + "default_value": 100, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_prime_tower": + { + "label": "Prime Tower %", + "description": "Enter the fan percentage for the Prime Tower (whether it's used or not).", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_bridge": + { + "label": "Bridge %", + "description": "Enter the fan percentage for any Bridging (whether it's used on not).", + "type": "int", + "default_value": 100, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_layer_or_feature == 'by_feature'" + }, + "feature_fan_combing": + { + "label": "Fan 'OFF' during Combing:", + "description": "When checked will set the fan to 0% for combing moves over 5 lines long in the gcode. When un-checked the fan speed during combing is whatever the previous speed is set to.", + "type": "bool", + "enabled": "fan_layer_or_feature == 'by_feature'", + "default_value": true + }, + "feature_fan_feature_final": + { + "label": "Final %", + "description": "If you choose an 'End Layer' then this is the fan speed that will carry through to the end of the gcode file. It will go into effect at the 'END' of your End layer.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "(int(feature_fan_end_layer) != -1) and (fan_layer_or_feature == 'by_feature')" + }, + "fan_enable_raft": + { + "label": "Enable Raft Cooling", + "description": "Enable the fan for the raft layers. When enabled the Raft Fan Speed will continue until another Layer or Feature setting over-rides it.", + "type": "bool", + "default_value": false, + "enabled": true + }, + "fan_raft_percent": + { + "label": "Raft Fan %:", + "description": "Enter the percentage for the Raft.", + "type": "int", + "default_value": 35, + "minimum_value": 0, + "maximum_value": 100, + "unit": "% ", + "enabled": "fan_enable_raft" + } + } + }""" + + def initialize(self) -> None: + super().initialize() + scripts = Application.getInstance().getGlobalContainerStack().getMetaDataEntry("post_processing_scripts") + if scripts != None: + script_count = scripts.count("AddCoolingProfile") + if script_count > 0: + ## Set 'Remove M106 lines' to "false" if there is already an instance of this script running. + self._instance.setProperty("delete_existing_m106", "value", False) + + def execute(self, data): + #Initialize variables that are buried in if statements. + mycura = Application.getInstance().getGlobalContainerStack() + t0_fan = " P0"; t1_fan = " P0"; t2_fan = " P0"; t3_fan = " P0"; is_multi_extr_print = True + + #Get some information from Cura----------------------------------- + extruder = mycura.extruderList + + #This will be true when fan scale is 0-255pwm and false when it's RepRap 0-1 (Cura 5.x) + fan_mode = True + ##For 4.x versions that don't have the 0-1 option + try: + fan_mode = not bool(extruder[0].getProperty("machine_scale_fan_speed_zero_to_one", "value")) + except: + pass + bed_adhesion = (extruder[0].getProperty("adhesion_type", "value")) + extruder_count = mycura.getProperty("machine_extruder_count", "value") + print_sequence = str(mycura.getProperty("print_sequence", "value")) + + #Assign the fan numbers to the tools------------------------------ + if extruder_count == 1: + is_multi_fan = False + is_multi_extr_print = False + if int((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) > 0: + t0_fan = " P" + str((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) + else: + #No P parameter if there is a single fan circuit------------------ + t0_fan = "" + + #Get the cooling fan numbers for each extruder if the printer has multiple extruders + elif extruder_count > 1: + is_multi_fan = True + t0_fan = " P" + str((extruder[0].getProperty("machine_extruder_cooling_fan_number", "value"))) + if is_multi_fan: + if extruder_count > 1: t1_fan = " P" + str((extruder[1].getProperty("machine_extruder_cooling_fan_number", "value"))) + if extruder_count > 2: t2_fan = " P" + str((extruder[2].getProperty("machine_extruder_cooling_fan_number", "value"))) + if extruder_count > 3: t3_fan = " P" + str((extruder[3].getProperty("machine_extruder_cooling_fan_number", "value"))) + + #Initialize the fan_list with defaults---------------------------- + fan_list = ["z"] * 16 + for num in range(0,15,2): + fan_list[num] = len(data) + fan_list[num + 1] = "M106 S0" + + #Assign the variable values if "By Layer"------------------------- + by_layer_or_feature = self.getSettingValueByKey("fan_layer_or_feature") + if by_layer_or_feature == "by_layer": + ## By layer doesn't do any feature search so there is no need to look for combing moves + feature_fan_combing = False + fan_list[0] = self.getSettingValueByKey("layer_fan_1") + fan_list[2] = self.getSettingValueByKey("layer_fan_2") + fan_list[4] = self.getSettingValueByKey("layer_fan_3") + fan_list[6] = self.getSettingValueByKey("layer_fan_4") + fan_list[8] = self.getSettingValueByKey("layer_fan_5") + fan_list[10] = self.getSettingValueByKey("layer_fan_6") + fan_list[12] = self.getSettingValueByKey("layer_fan_7") + fan_list[14] = self.getSettingValueByKey("layer_fan_8") + ## If there is no '/' delimiter then ignore the line else put the settings in a list + for num in range(0,15,2): + if "/" in fan_list[num]: + fan_list[num + 1] = self._layer_checker(fan_list[num], "p", fan_mode) + fan_list[num] = self._layer_checker(fan_list[num], "l", fan_mode) + + ## Assign the variable values if "By Feature" + elif by_layer_or_feature == "by_feature": + the_start_layer = self.getSettingValueByKey("feature_fan_start_layer") - 1 + the_end_layer = self.getSettingValueByKey("feature_fan_end_layer") + try: + if int(the_end_layer) != -1: + ## Catch a possible input error. + if the_end_layer < the_start_layer: + the_end_layer = the_start_layer + except: + the_end_layer = -1 ## If there is an input error default to the entire gcode file. + + ## Get the speed for each feature + feature_name_list = [] + feature_speed_list = [] + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_skirt"), fan_mode)); feature_name_list.append(";TYPE:SKIRT") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_wall_inner"), fan_mode)); feature_name_list.append(";TYPE:WALL-INNER") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_wall_outer"), fan_mode)); feature_name_list.append(";TYPE:WALL-OUTER") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_fill"), fan_mode)); feature_name_list.append(";TYPE:FILL") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_skin"), fan_mode)); feature_name_list.append(";TYPE:SKIN") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_support"), fan_mode)); feature_name_list.append(";TYPE:SUPPORT") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_support_interface"), fan_mode)); feature_name_list.append(";TYPE:SUPPORT-INTERFACE") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_prime_tower"), fan_mode)); feature_name_list.append(";TYPE:PRIME-TOWER") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_bridge"), fan_mode)); feature_name_list.append(";BRIDGE") + feature_speed_list.append(self._feature_checker(self.getSettingValueByKey("feature_fan_feature_final"), fan_mode)); feature_name_list.append("FINAL_FAN") + feature_fan_combing = self.getSettingValueByKey("feature_fan_combing") + if the_end_layer > -1 and by_layer_or_feature == "by_feature": + ## Required so the final speed input can be determined + the_end_is_enabled = True + else: + ## There is no ending layer so do the whole file + the_end_is_enabled = False + if the_end_layer == -1 or the_end_is_enabled == False: + the_end_layer = len(data) + 2 + + ## Find the Layer0Index and the RaftIndex + raft_start_index = 0 + number_of_raft_layers = 0 + layer_0_index = 0 + ## Catch the number of raft layers. + for l_num in range(1,10,1): + layer = data[l_num] + if ";LAYER:-" in layer: + number_of_raft_layers += 1 + if raft_start_index == 0: + raft_start_index = l_num + if ";LAYER:0" in layer: + layer_0_index = l_num + break + + ## Is this a single extruder print on a multi-extruder printer? - get the correct fan number for the extruder being used. + if is_multi_fan: + T0_used = False + T1_used = False + T2_used = False + T3_used = False + ## Bypass the file header and ending gcode. + for num in range(1,len(data)-1,1): + lines = data[num] + if "T0" in lines: + T0_used = True + if "T1" in lines: + T1_used = True + if "T2" in lines: + T2_used = True + if "T3" in lines: + T3_used = True + is_multi_extr_print = True if sum([T0_used, T1_used, T2_used, T3_used]) > 1 else False + + ## On a multi-extruder printer and single extruder print find out which extruder starts the file. + init_fan = t0_fan + if not is_multi_extr_print: + startup = data[1] + lines = startup.split("\n") + for line in lines: + if line == "T1": + t0_fan = t1_fan + elif line == "T2": + t0_fan = t2_fan + elif line == "T3": + t0_fan = t3_fan + elif is_multi_extr_print: + ## On a multi-extruder printer and multi extruder print find out which extruder starts the file. + startup = data[1] + lines = startup.split("\n") + for line in lines: + if line == "T0": + init_fan = t0_fan + elif line == "T1": + init_fan = t1_fan + elif line == "T2": + init_fan = t2_fan + elif line == "T3": + init_fan = t3_fan + else: + init_fan = "" + ## Assign the variable values if "Raft Enabled" + raft_enabled = self.getSettingValueByKey("fan_enable_raft") + if raft_enabled and bed_adhesion == "raft": + fan_sp_raft = self._feature_checker(self.getSettingValueByKey("fan_raft_percent"), fan_mode) + else: + fan_sp_raft = "M106 S0" + + # Start to alter the data----------------------------------------- + ## Strip the existing M106 lines from the file up to the end of the last layer. If a user wants to use more than one instance of this plugin then they won't want to erase the M106 lines that the preceding plugins inserted so 'delete_existing_m106' is an option. + delete_existing_m106 = self.getSettingValueByKey("delete_existing_m106") + if delete_existing_m106: + ## Start deleting from the beginning + start_from = int(raft_start_index) + else: + if by_layer_or_feature == "by_layer": + altered_start_layer = str(len(data)) + ## The fan list layers don't need to be in ascending order. Get the lowest. + for num in range(0,15,2): + try: + if int(fan_list[num]) < int(altered_start_layer): + altered_start_layer = int(fan_list[num]) + except: + pass + elif by_layer_or_feature == "by_feature": + altered_start_layer = int(the_start_layer) - 1 + start_from = int(layer_0_index) + int(altered_start_layer) + ## Strip the M106 and M107 lines from the file + for l_index in range(int(start_from), len(data) - 1, 1): + data[l_index] = re.sub(re.compile("M106(.*)\n"), "", data[l_index]) + data[l_index] = re.sub(re.compile("M107(.*)\n"), "", data[l_index]) + + ## Deal with a raft and with One-At-A-Time print sequence + if raft_enabled and bed_adhesion == "raft": + if print_sequence == "one_at_a_time": + for r_index in range(2,len(data)-2,1): + lines = data[r_index].split("\n") + if not raft_enabled or bed_adhesion != "raft": + if ";LAYER:0" in data[r_index] or ";LAYER:-" in data[r_index]: + lines.insert(1, "M106 S0" + str(t0_fan)) + if raft_enabled and bed_adhesion == "raft": + if ";LAYER:-" in data[r_index]: + ## Turn the raft fan on + lines.insert(1, fan_sp_raft + str(t0_fan)) + ## Shut the raft fan off at layer 0 + if ";LAYER:0" in data[r_index]: + lines.insert(1,"M106 S0" + str(t0_fan)) + data[r_index] = "\n".join(lines) + elif print_sequence == "all_at_once": + layer = data[raft_start_index] + lines = layer.split("\n") + if ";LAYER:-" in layer: + ## Turn the raft fan on + lines.insert(1, fan_sp_raft + str(init_fan)) + layer = "\n".join(lines) + data[raft_start_index] = layer + layer = data[layer_0_index] + lines = layer.split("\n") + ## Shut the raft fan off + lines.insert(1, "M106 S0" + str(init_fan)) + data[layer_0_index] = "\n".join(lines) + else: + for r_index in range(2,len(data)-2,1): + lines = data[r_index].split("\n") + if ";LAYER:0" in data[r_index] or ";LAYER:-" in data[r_index]: + if not "0" in fan_list: + lines.insert(1, "M106 S0" + str(t0_fan)) + data[r_index] = "\n".join(lines) + + ## Turn off all fans at the end of data[1]. If more than one instance of this script is running then this will result in multiple M106 lines. + temp_startup = data[1].split("\n") + temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t0_fan)) + ## If there are multiple cooling fans shut them all off + if is_multi_fan: + if extruder_count > 1 and t1_fan != t0_fan: temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t1_fan)) + if extruder_count > 2 and t2_fan != t1_fan and t2_fan != t0_fan: temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t2_fan)) + if extruder_count > 3 and t3_fan != t2_fan and t3_fan != t1_fan and t3_fan != t0_fan: temp_startup.insert(len(temp_startup)-2,"M106 S0" + str(t3_fan)) + data[1] = "\n".join(temp_startup) + + ## If 'feature_fan_combing' is True then add additional 'MESH:NONMESH' lines for travel moves over 5 lines long + ## For compatibility with 5.3.0 change any MESH:NOMESH to MESH:NONMESH. + if feature_fan_combing: + for layer_num in range(2,len(data)): + layer = data[layer_num] + data[layer_num] = re.sub(";MESH:NOMESH", ";MESH:NONMESH", layer) + data = self._add_travel_comment(data, layer_0_index) + + # Single Fan "By Layer"-------------------------------------------- + if by_layer_or_feature == "by_layer" and not is_multi_fan: + return self._single_fan_by_layer(data, layer_0_index, fan_list, t0_fan) + + # Multi-Fan "By Layer"--------------------------------------------- + if by_layer_or_feature == "by_layer" and is_multi_fan: + return self._multi_fan_by_layer(data, layer_0_index, fan_list, t0_fan, t1_fan, t2_fan, t3_fan) + + #Single Fan "By Feature"------------------------------------------ + if by_layer_or_feature == "by_feature" and (not is_multi_fan or not is_multi_extr_print): + return self._single_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, feature_speed_list, feature_name_list, feature_fan_combing) + + #Multi Fan "By Feature"------------------------------------------- + if by_layer_or_feature == "by_feature" and is_multi_fan: + return self._multi_fan_by_feature(data, layer_0_index, the_start_layer, the_end_layer, the_end_is_enabled, fan_list, t0_fan, t1_fan, t2_fan, t3_fan, feature_speed_list, feature_name_list, feature_fan_combing) + + # The Single Fan "By Layer"---------------------------------------- + def _single_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_fan: str)->str: + layer_number = "0" + single_fan_data = data + for l_index in range(layer_0_index,len(single_fan_data)-1,1): + layer = single_fan_data[l_index] + fan_lines = layer.split("\n") + for fan_line in fan_lines: + if ";LAYER:" in fan_line: + layer_number = str(fan_line.split(":")[1]) + ## If there is a match for the current layer number make the insertion + for num in range(0,15,2): + if layer_number == str(fan_list[num]): + layer = layer.replace(fan_lines[0],fan_lines[0] + "\n" + fan_list[num + 1] + str(t0_fan)) + single_fan_data[l_index] = layer + return single_fan_data + + # Multi-Fan "By Layer"----------------------------------------- + def _multi_fan_by_layer(self, data: str, layer_0_index: int, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str)->str: + multi_fan_data = data + layer_number = "0" + current_fan_speed = "0" + prev_fan = str(t0_fan) + this_fan = str(t0_fan) + start_index = str(len(multi_fan_data)) + for num in range(0,15,2): + ## The fan_list may not be in ascending order. Get the lowest layer number + try: + if int(fan_list[num]) < int(start_index): + start_index = str(fan_list[num]) + except: + pass + ## Move the start point if delete_existing_m106 is false + start_index = int(start_index) + int(layer_0_index) + ## Track the tool number + for num in range(1,int(start_index),1): + layer = multi_fan_data[num] + lines = layer.split("\n") + for line in lines: + if line == "T0": + prev_fan = this_fan + this_fan = t0_fan + elif line == "T1": + prev_fan = this_fan + this_fan = t1_fan + elif line == "T2": + prev_fan = this_fan + this_fan = t2_fan + elif line == "T3": + prev_fan = this_fan + this_fan = t3_fan + for l_index in range(int(start_index),len(multi_fan_data)-1,1): + modified_data = "" + layer = multi_fan_data[l_index] + fan_lines = layer.split("\n") + for fan_line in fan_lines: + ## Prepare to shut down the previous fan and start the next one. + if fan_line.startswith("T"): + if fan_line == "T0": this_fan = str(t0_fan) + if fan_line == "T1": this_fan = str(t1_fan) + if fan_line == "T2": this_fan = str(t2_fan) + if fan_line == "T3": this_fan = str(t3_fan) + modified_data += "M106 S0" + prev_fan + "\n" + modified_data += fan_line + "\n" + modified_data += "M106 S" + str(current_fan_speed) + this_fan + "\n" + prev_fan = this_fan + elif ";LAYER:" in fan_line: + modified_data += fan_line + "\n" + layer_number = str(fan_line.split(":")[1]) + for num in range(0,15,2): + if layer_number == str(fan_list[num]): + modified_data += fan_list[num + 1] + this_fan + "\n" + current_fan_speed = str(fan_list[num + 1].split("S")[1]) + current_fan_speed = str(current_fan_speed.split(" ")[0]) ## Just in case + else: + modified_data += fan_line + "\n" + if modified_data.endswith("\n"): modified_data = modified_data[0:-1] + multi_fan_data[l_index] = modified_data + return multi_fan_data + + # Single fan by feature----------------------------------------------- + def _single_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, feature_speed_list: str, feature_name_list: str, feature_fan_combing: bool)->str: + single_fan_data = data + layer_number = "0" + index = 1 + ## Start with layer:0 + for l_index in range(layer_0_index,len(single_fan_data)-1,1): + modified_data = "" + layer = single_fan_data[l_index] + lines = layer.split("\n") + for line in lines: + if ";LAYER:" in line: + layer_number = str(line.split(":")[1]) + if int(layer_number) >= int(the_start_layer) and int(layer_number) < int(the_end_layer)-1: + temp = line.split(" ")[0] + try: + name_index = feature_name_list.index(temp) + except: + name_index = -1 + if name_index != -1: + modified_data += feature_speed_list[name_index] + t0_fan + "\n" + elif ";MESH:NONMESH" in line: + if feature_fan_combing == True: + modified_data += "M106 S0" + t0_fan + "\n" + modified_data += line + "\n" + ## If an End Layer is defined and is less than the last layer then insert the Final Speed + if line == ";LAYER:" + str(the_end_layer) and the_end_is_enabled == True: + modified_data += feature_speed_list[len(feature_speed_list) - 1] + t0_fan + "\n" + if modified_data.endswith("\n"): modified_data = modified_data[0: - 1] + single_fan_data[l_index] = modified_data + return single_fan_data + + # Multi-fan by feature------------------------------------------------ + def _multi_fan_by_feature(self, data: str, layer_0_index: int, the_start_layer: str, the_end_layer: str, the_end_is_enabled: str, fan_list: str, t0_fan: str, t1_fan: str, t2_fan: str, t3_fan: str, feature_speed_list: str, feature_name_list: str, feature_fan_combing: bool)->str: + multi_fan_data = data + layer_number = "0" + start_index = 1 + prev_fan = t0_fan + this_fan = t0_fan + modified_data = "" + current_fan_speed = "0" + for my_index in range(1, len(multi_fan_data) - 1, 1): + layer = multi_fan_data[my_index] + if ";LAYER:" + str(the_start_layer) + "\n" in layer: + start_index = int(my_index) - 1 + break + ## Track the previous tool changes + for num in range(1,start_index,1): + layer = multi_fan_data[num] + lines = layer.split("\n") + for line in lines: + if line == "T0": + prev_fan = this_fan + this_fan = t0_fan + elif line == "T1": + prev_fan = this_fan + this_fan = t1_fan + elif line == "T2": + prev_fan = this_fan + this_fan = t2_fan + elif line == "T3": + prev_fan = this_fan + this_fan = t3_fan + ## Get the current tool. + for l_index in range(start_index,start_index + 1,1): + layer = multi_fan_data[l_index] + lines = layer.split("\n") + for line in lines: + if line.startswith("T"): + if line == "T0": this_fan = t0_fan + if line == "T1": this_fan = t1_fan + if line == "T2": this_fan = t2_fan + if line == "T3": this_fan = t3_fan + prev_fan = this_fan + + ## Start to make insertions------------------------------------- + for l_index in range(start_index+1,len(multi_fan_data)-1,1): + layer = multi_fan_data[l_index] + lines = layer.split("\n") + for line in lines: + if line.startswith("T"): + if line == "T0": this_fan = t0_fan + if line == "T1": this_fan = t1_fan + if line == "T2": this_fan = t2_fan + if line == "T3": this_fan = t3_fan + ## Turn off the prev fan + modified_data += "M106 S0" + prev_fan + "\n" + modified_data += line + "\n" + ## Turn on the current fan + modified_data += "M106 S" + str(current_fan_speed) + this_fan + "\n" + prev_fan = this_fan + if ";LAYER:" in line: + layer_number = str(line.split(":")[1]) + modified_data += line + "\n" + if int(layer_number) >= int(the_start_layer): + temp = line.split(" ")[0] + try: + name_index = feature_name_list.index(temp) + except: + name_index = -1 + if name_index != -1: + modified_data += line + "\n" + feature_speed_list[name_index] + this_fan + "\n" + #modified_data += feature_speed_list[name_index] + this_fan + "\n" + current_fan_speed = str(feature_speed_list[name_index].split("S")[1]) + elif ";MESH:NONMESH" in line: + if feature_fan_combing == True: + modified_data += line + "\n" + modified_data += "M106 S0" + this_fan + "\n" + current_fan_speed = "0" + else: + modified_data += line + "\n" + ## If an end layer is defined - Insert the final speed and set the other variables to Final Speed to finish the file + ## There cannot be a break here because if there are multiple fan numbers they still need to be shut off and turned on. + elif line == ";LAYER:" + str(the_end_layer): + modified_data += feature_speed_list[len(feature_speed_list) - 1] + this_fan + "\n" + for set_speed in range(0, len(feature_speed_list) - 2): + feature_speed_list[set_speed] = feature_speed_list[len(feature_speed_list) - 1] + else: + ## Layer and Tool get inserted into modified_data above. All other lines go into modified_data here + if not line.startswith("T") and not line.startswith(";LAYER:"): modified_data += line + "\n" + if modified_data.endswith("\n"): modified_data = modified_data[0: - 1] + multi_fan_data[l_index] = modified_data + modified_data = "" + return multi_fan_data + + #Try to catch layer input errors, set the minimum speed to 12%, and put the strings together + def _layer_checker(self, fan_string: str, ty_pe: str, fan_mode: bool) -> str: + fan_string_l = str(fan_string.split("/")[0]) + try: + if int(fan_string_l) <= 1: fan_string_l = "1" + if fan_string_l == "": fan_string_l = str(len(data)) + except ValueError: + fan_string_l = str(len(data)) + fan_string_l = str(int(fan_string_l) - 1) + fan_string_p = str(fan_string.split("/")[1]) + if fan_string_p == "": fan_string_p = "0" + try: + if int(fan_string_p) < 0: fan_string_p = "0" + if int(fan_string_p) > 100: fan_string_p = "100" + except ValueError: + fan_string_p = "0" + ## Set the minimum fan speed to 12% + if int(fan_string_p) < 12 and int(fan_string_p) != 0: + fan_string_p = "12" + fan_layer_line = str(fan_string_l) + if fan_mode: + fan_percent_line = "M106 S" + str(round(int(fan_string_p) * 2.55)) + else: + fan_percent_line = "M106 S" + str(round(int(fan_string_p) / 100, 1)) + if ty_pe == "l": + return str(fan_layer_line) + elif ty_pe == "p": + return fan_percent_line + + #Try to catch feature input errors, set the minimum speed to 12%, and put the strings together when 'By Feature' + def _feature_checker(self, fan_feat_string: int, fan_mode: bool) -> str: + if fan_feat_string < 0: fan_feat_string = 0 + ## Set the minimum fan speed to 12% + if fan_feat_string > 0 and fan_feat_string < 12: fan_feat_string = 12 + if fan_feat_string > 100: fan_feat_string = 100 + if fan_mode: + fan_sp_feat = "M106 S" + str(round(fan_feat_string * 2.55)) + else: + fan_sp_feat = "M106 S" + str(round(fan_feat_string / 100, 1)) + return fan_sp_feat + + # Add additional travel comments to turn the fan off during combing. + def _add_travel_comment(self, comment_data: str, lay_0_index: str) -> str: + for lay_num in range(int(lay_0_index), len(comment_data)-1,1): + layer = comment_data[lay_num] + lines = layer.split("\n") + ## Copy the data to new_data and make the insertions there + new_data = lines + g0_count = 0 + g0_index = -1 + feature_type = ";TYPE:SUPPORT" + is_travel = False + for index, line in enumerate(lines): + insert_index = 0 + if ";TYPE:" in line: + feature_type = line + is_travel = False + g0_count = 0 + if ";MESH:NONMESH" in line: + is_travel = True + g0_count = 0 + if line.startswith("G0 ") and not is_travel: + g0_count += 1 + if g0_index == -1: + g0_index = lines.index(line) + elif not line.startswith("G0 ") and not is_travel: + ## Add additional 'NONMESH' lines to shut the fan off during long combing moves-------- + if g0_count > 5: + if not is_travel: + new_data.insert(g0_index + insert_index, ";MESH:NONMESH") + insert_index += 1 + ## Add the feature_type at the end of the combing move to turn the fan back on + new_data.insert(g0_index + g0_count + 1, feature_type) + insert_index += 1 + g0_count = 0 + g0_index = -1 + is_travel = False + elif g0_count <= 5: + g0_count = 0 + g0_index = -1 + is_travel = False + comment_data[lay_num] = "\n".join(new_data) + return comment_data \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/scripts/ColorMix.py b/plugins/PostProcessingPlugin/scripts/ColorMix.py index 534c0208cf..000661b46b 100644 --- a/plugins/PostProcessingPlugin/scripts/ColorMix.py +++ b/plugins/PostProcessingPlugin/scripts/ColorMix.py @@ -21,7 +21,7 @@ # M163 - Set Mix Factor # M164 - Save Mix - saves to T2 as a unique mix -import re #To perform the search and replace. +import re # To perform the search and replace. from ..Script import Script class ColorMix(Script): diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py index b9184b59c3..a5edb78d35 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py @@ -3,21 +3,15 @@ # Date: August 28, 2018 # Modified: November 16, 2018 by Joshua Pope-Lewis -# Description: This plugin shows custom messages about your print on the Status bar... -# Please look at the 5 options -# - Scrolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you aren't printing a small item select this option. -# - Name: By default it will use the name generated by Cura (EG: TT_Test_Cube) - Type a custom name in here -# - Start Num: Choose which number you prefer for the initial layer, 0 or 1 -# - Max Layer: Enabling this will show how many layers are in the entire print (EG: Layer 1 of 265!) -# - Add prefix 'Printing': Enabling this will add the prefix 'Printing' +# Description: This plugin is now an option in 'Display Info on LCD' from ..Script import Script -from UM.Application import Application +from UM.Message import Message class DisplayFilenameAndLayerOnLCD(Script): - def __init__(self): - super().__init__() - + def initialize(self) -> None: + Message(title = "[Display Filename and Layer on LCD]", text = "This script is now an option in 'Display Info on LCD'. This post processor no longer works.").show() + def getSettingDataString(self): return """{ "name": "Display Filename And Layer On LCD", @@ -26,40 +20,10 @@ class DisplayFilenameAndLayerOnLCD(Script): "version": 2, "settings": { - "scroll": + "enable_script": { - "label": "Scroll enabled/Small layers?", - "description": "If SCROLL_LONG_FILENAMES is enabled select this setting however, if the model is small disable this setting!", - "type": "bool", - "default_value": false - }, - "name": - { - "label": "Text to display:", - "description": "By default the current filename will be displayed on the LCD. Enter text here to override the filename and display something else.", - "type": "str", - "default_value": "" - }, - "startNum": - { - "label": "Initial layer number:", - "description": "Choose which number you prefer for the initial layer, 0 or 1", - "type": "int", - "default_value": 0, - "minimum_value": 0, - "maximum_value": 1 - }, - "maxlayer": - { - "label": "Display max layer?:", - "description": "Display how many layers are in the entire print on status bar?", - "type": "bool", - "default_value": true - }, - "addPrefixPrinting": - { - "label": "Add prefix 'Printing'?", - "description": "This will add the prefix 'Printing'", + "label": "Deprecated/Obsolete", + "description": "This script is now included in 'Display Info on LCD'.", "type": "bool", "default_value": true } @@ -67,43 +31,6 @@ class DisplayFilenameAndLayerOnLCD(Script): }""" def execute(self, data): - max_layer = 0 - lcd_text = "M117 " - if self.getSettingValueByKey("name") != "": - name = self.getSettingValueByKey("name") - else: - name = Application.getInstance().getPrintInformation().jobName - if self.getSettingValueByKey("addPrefixPrinting"): - lcd_text += "Printing " - if not self.getSettingValueByKey("scroll"): - lcd_text += "Layer " - else: - lcd_text += name + " - Layer " - i = self.getSettingValueByKey("startNum") - for layer in data: - display_text = lcd_text + str(i) - layer_index = data.index(layer) - lines = layer.split("\n") - for line in lines: - if line.startswith(";LAYER_COUNT:"): - max_layer = line - max_layer = max_layer.split(":")[1] - if self.getSettingValueByKey("startNum") == 0: - max_layer = str(int(max_layer) - 1) - if line.startswith(";LAYER:"): - if self.getSettingValueByKey("maxlayer"): - display_text = display_text + " of " + max_layer - if not self.getSettingValueByKey("scroll"): - display_text = display_text + " " + name - else: - if not self.getSettingValueByKey("scroll"): - display_text = display_text + " " + name + "!" - else: - display_text = display_text + "!" - line_index = lines.index(line) - lines.insert(line_index + 1, display_text) - i += 1 - final_lines = "\n".join(lines) - data[layer_index] = final_lines - + Message(title = "[Display Filename and Layer on LCD]", text = "This post is now included in 'Display Info on LCD'. This script will exit.").show() + data[0] += "; [Display Filename and Layer on LCD] Did not run. It is now included in 'Display Info on LCD'.\n" return data diff --git a/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py new file mode 100644 index 0000000000..63c1c8c788 --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/DisplayInfoOnLCD.py @@ -0,0 +1,483 @@ +# Display Filename and Layer on the LCD by Amanda de Castilho on August 28, 2018 +# Modified: Joshua Pope-Lewis on November 16, 2018 +# Display Progress on LCD by Mathias Lyngklip Kjeldgaard, Alexander Gee, Kimmo Toivanen, Inigo Martinez on July 31, 2019 +# Show Progress was adapted from Display Progress by Louis Wooters on January 6, 2020. His changes are included here. +#--------------------------------------------------------------- +# DisplayNameOrProgressOnLCD.py +# Cura Post-Process plugin +# Combines 'Display Filename and Layer on the LCD' with 'Display Progress' +# Combined and with additions by: GregValiant (Greg Foresi) +# Date: September 8, 2023 +# NOTE: This combined post processor will make 'Display Filename and Layer on the LCD' and 'Display Progress' obsolete +# Description: Display Filename and Layer options: +# Status messages sent to the printer... +# - Scrolling (SCROLL_LONG_FILENAMES) if enabled in Marlin and you aren't printing a small item select this option. +# - Name: By default it will use the name generated by Cura (EG: TT_Test_Cube) - You may enter a custom name here +# - Start Num: Choose which number you prefer for the initial layer, 0 or 1 +# - Max Layer: Enabling this will show how many layers are in the entire print (EG: Layer 1 of 265!) +# - Add prefix 'Printing': Enabling this will add the prefix 'Printing' +# - Example Line on LCD: Printing Layer 0 of 395 3DBenchy +# Display Progress options: +# - Display Total Layer Count +# - Disply Time Remaining for the print +# - Time Fudge Factor % - Divide the Actual Print Time by the Cura Estimate. Enter as a percentage and the displayed time will be adjusted. This allows you to bring the displayed time closer to reality (Ex: Entering 87.5 would indicate an adjustment to 87.5% of the Cura estimate). +# - Example line on LCD: 1/479 | ET 2h13m +# - Time to Pauses changes the M117/M118 lines to countdown to the next pause as 1/479 | TP 2h36m +# - 'Add M118 Line' is available with either option. M118 will bounce the message back to a remote print server through the USB connection. +# - 'Add M73 Line' is used by 'Display Progress' only. There are options to incluse M73 P(percent) and M73 R(time remaining) +# - Enable 'Finish-Time' Message - when enabled, takes the Print Time and calculates when the print will end. It takes into account the Time Fudge Factor. The user may enter a print start time. This is also available for Display Filename. + +from ..Script import Script +from UM.Application import Application +from UM.Qt.Duration import DurationFormat +import time +import datetime +import math +from UM.Message import Message + +class DisplayInfoOnLCD(Script): + + def getSettingDataString(self): + return """{ + "name": "Display Info on LCD", + "key": "DisplayInfoOnLCD", + "metadata": {}, + "version": 2, + "settings": + { + "display_option": + { + "label": "LCD display option...", + "description": "Display Filename and Layer was formerly 'Display Filename and Layer on LCD' post-processor. The message format on the LCD is 'Printing Layer 0 of 15 3D Benchy'. Display Progress is similar to the former 'Display Progress on LCD' post-processor. The display format is '1/16 | ET 2hr28m'. Display Progress includes a fudge factor for the print time estimate.", + "type": "enum", + "options": { + "display_progress": "Display Progress", + "filename_layer": "Filename and Layer" + }, + "default_value": "display_progress" + }, + "format_option": + { + "label": "Scroll enabled/Small layers?", + "description": "If SCROLL_LONG_FILENAMES is enabled in your firmware select this setting.", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'filename_layer'" + }, + "file_name": + { + "label": "Text to display:", + "description": "By default the current filename will be displayed on the LCD. Enter text here to override the filename and display something else.", + "type": "str", + "default_value": "", + "enabled": "display_option == 'filename_layer'" + }, + "startNum": + { + "label": "Initial layer number:", + "description": "Choose which number you prefer for the initial layer, 0 or 1", + "type": "int", + "default_value": 0, + "minimum_value": 0, + "maximum_value": 1, + "enabled": "display_option == 'filename_layer'" + }, + "maxlayer": + { + "label": "Display max layer?:", + "description": "Display how many layers are in the entire print on status bar?", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'filename_layer'" + }, + "addPrefixPrinting": + { + "label": "Add prefix 'Printing'?", + "description": "This will add the prefix 'Printing'", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'filename_layer'" + }, + "display_total_layers": + { + "label": "Display total layers", + "description": "This setting adds the 'Total Layers' to the LCD message as '17/234'.", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'display_progress'" + }, + "display_remaining_time": + { + "label": "Display remaining time", + "description": "This will add the remaining printing time to the LCD message.", + "type": "bool", + "default_value": true, + "enabled": "display_option == 'display_progress'" + }, + "add_m118_line": + { + "label": "Add M118 Line", + "description": "Adds M118 in addition to the M117. It will bounce the message back through the USB port to a computer print server (if a printer server like Octoprint or Pronterface is in use).", + "type": "bool", + "default_value": false + }, + "add_m73_line": + { + "label": "Add M73 Line(s)", + "description": "Adds M73 in addition to the M117. For some firmware this will set the printers time and or percentage.", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'display_progress'" + }, + "add_m73_percent": + { + "label": " Add M73 Percentage", + "description": "Adds M73 with the P parameter. For some firmware this will set the printers 'percentage' of layers completed and it will count upward.", + "type": "bool", + "default_value": false, + "enabled": "add_m73_line and display_option == 'display_progress'" + }, + "add_m73_time": + { + "label": " Add M73 Time", + "description": "Adds M73 with the R parameter. For some firmware this will set the printers 'print time' and it will count downward.", + "type": "bool", + "default_value": false, + "enabled": "add_m73_line and display_option == 'display_progress'" + }, + "speed_factor": + { + "label": "Time Fudge Factor %", + "description": "When using 'Display Progress' tweak this value to get better estimates. ([Actual Print Time]/[Cura Estimate]) x 100 = Time Fudge Factor. If Cura estimated 9hr and the print actually took 10hr30min then enter 117 here to adjust any estimate closer to reality. This Fudge Factor is also used to calculate the print finish time.", + "type": "float", + "unit": "%", + "default_value": 100, + "enabled": "enable_end_message or display_option == 'display_progress'" + }, + "countdown_to_pause": + { + "label": "Countdown to Pauses", + "description": "Instead of the remaining print time the LCD will show the estimated time to pause (TP).", + "type": "bool", + "default_value": false, + "enabled": "display_option == 'display_progress'" + }, + "enable_end_message": + { + "label": "Enable 'Finish-Time' Message", + "description": "Get a message when you save a fresh slice. It will show the estimated date and time that the print would finish.", + "type": "bool", + "default_value": true, + "enabled": true + }, + "print_start_time": + { + "label": "Print Start Time (Ex 16:45)", + "description": "Use 'Military' time. 16:45 would be 4:45PM. 09:30 would be 9:30AM. If you leave this blank it will be assumed that the print will start Now. If you enter a guesstimate of your printer start time and that time is before 'Now' the guesstimate will consider that the print will start tomorrow at the entered time. ", + "type": "str", + "default_value": "", + "unit": "hrs ", + "enabled": "enable_end_message" + } + + } + }""" + + def execute(self, data): + display_option = self.getSettingValueByKey("display_option") + add_m118_line = self.getSettingValueByKey("add_m118_line") + add_m73_line = self.getSettingValueByKey("add_m73_line") + add_m73_time = self.getSettingValueByKey("add_m73_time") + add_m73_percent = self.getSettingValueByKey("add_m73_percent") + + # This is Display Filename and Layer on LCD--------------------------------------------------------- + if display_option == "filename_layer": + max_layer = 0 + lcd_text = "M117 " + if self.getSettingValueByKey("file_name") != "": + file_name = self.getSettingValueByKey("file_name") + else: + file_name = Application.getInstance().getPrintInformation().jobName + if self.getSettingValueByKey("addPrefixPrinting"): + lcd_text += "Printing " + if not self.getSettingValueByKey("scroll"): + lcd_text += "Layer " + else: + lcd_text += file_name + " - Layer " + i = self.getSettingValueByKey("startNum") + for layer in data: + display_text = lcd_text + str(i) + layer_index = data.index(layer) + lines = layer.split("\n") + for line in lines: + if line.startswith(";LAYER_COUNT:"): + max_layer = line + max_layer = max_layer.split(":")[1] + if self.getSettingValueByKey("startNum") == 0: + max_layer = str(int(max_layer) - 1) + if line.startswith(";LAYER:"): + if self.getSettingValueByKey("maxlayer"): + display_text = display_text + " of " + max_layer + if not self.getSettingValueByKey("scroll"): + display_text = display_text + " " + file_name + else: + if not self.getSettingValueByKey("scroll"): + display_text = display_text + " " + file_name + "!" + else: + display_text = display_text + "!" + line_index = lines.index(line) + lines.insert(line_index + 1, display_text) + if add_m118_line: + lines.insert(line_index + 2, str(display_text.replace("M117", "M118", 1))) + i += 1 + final_lines = "\n".join(lines) + data[layer_index] = final_lines + if bool(self.getSettingValueByKey("enable_end_message")): + message_str = self.message_to_user(self.getSettingValueByKey("speed_factor") / 100) + Message(title = "Display Info on LCD - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() + return data + + # Display Progress (from 'Show Progress' and 'Display Progress on LCD')--------------------------------------- + elif display_option == "display_progress": + # get settings + display_total_layers = self.getSettingValueByKey("display_total_layers") + display_remaining_time = self.getSettingValueByKey("display_remaining_time") + speed_factor = self.getSettingValueByKey("speed_factor") / 100 + m73_time = False + m73_percent = False + if add_m73_line and add_m73_time: + m73_time = True + if add_m73_line and add_m73_percent: + m73_percent = True + # initialize global variables + first_layer_index = 0 + time_total = 0 + number_of_layers = 0 + time_elapsed = 0 + # if at least one of the settings is disabled, there is enough room on the display to display "layer" + first_section = data[0] + lines = first_section.split("\n") + for line in lines: + if line.startswith(";TIME:"): + tindex = lines.index(line) + cura_time = int(line.split(":")[1]) + print_time = cura_time * speed_factor + hhh = print_time/3600 + hr = round(hhh // 1) + mmm = round((hhh % 1) * 60) + orig_hhh = cura_time/3600 + orig_hr = round(orig_hhh // 1) + orig_mmm = math.floor((orig_hhh % 1) * 60) + orig_sec = round((((orig_hhh % 1) * 60) % 1) * 60) + if add_m118_line: lines.insert(tindex + 3,"M118 Adjusted Print Time " + str(hr) + "hr " + str(mmm) + "min") + lines.insert(tindex + 3,"M117 ET " + str(hr) + "hr " + str(mmm) + "min") + # add M73 line at beginning + mins = int(60 * hr + mmm) + if m73_time: + lines.insert(tindex + 3, "M73 R{}".format(mins)) + if m73_percent: + lines.insert(tindex + 3, "M73 P0") + # If Countdonw to pause is enabled then count the pauses + pause_str = "" + if bool(self.getSettingValueByKey("countdown_to_pause")): + pause_count = 0 + for num in range(2,len(data) - 1, 1): + if "PauseAtHeight.py" in data[num]: + pause_count += 1 + pause_str = f" with {pause_count} pause(s)" + # This line goes in to convert seconds to hours and minutes + lines.insert(tindex + 3, f";Cura Time Estimate: {cura_time}sec = {orig_hr}hr {orig_mmm}min {orig_sec}sec {pause_str}") + data[0] = "\n".join(lines) + data[len(data)-1] += "M117 Orig Cura Est " + str(orig_hr) + "hr " + str(orig_mmm) + "min\n" + if add_m118_line: data[len(data)-1] += "M118 Est w/FudgeFactor " + str(speed_factor * 100) + "% was " + str(hr) + "hr " + str(mmm) + "min\n" + if not display_total_layers or not display_remaining_time: + base_display_text = "layer " + else: + base_display_text = "" + layer = data[len(data)-1] + data[len(data)-1] = layer.replace(";End of Gcode" + "\n", "") + data[len(data)-1] += ";End of Gcode" + "\n" + # Search for the number of layers and the total time from the start code + for index in range(len(data)): + data_section = data[index] + # We have everything we need, save the index of the first layer and exit the loop + if ";LAYER:" in data_section: + first_layer_index = index + break + else: + for line in data_section.split("\n"): + if line.startswith(";LAYER_COUNT:"): + number_of_layers = int(line.split(":")[1]) + elif line.startswith(";TIME:"): + time_total = int(line.split(":")[1]) + # for all layers... + current_layer = 0 + for layer_counter in range(len(data)-2): + current_layer += 1 + layer_index = first_layer_index + layer_counter + display_text = base_display_text + display_text += str(current_layer) + # create a list where each element is a single line of code within the layer + lines = data[layer_index].split("\n") + if not ";LAYER:" in data[layer_index]: + current_layer -= 1 + continue + # add the total number of layers if this option is checked + if display_total_layers: + display_text += "/" + str(number_of_layers) + # if display_remaining_time is checked, it is calculated in this loop + if display_remaining_time: + time_remaining_display = " | ET " # initialize the time display + m = (time_total - time_elapsed) // 60 # estimated time in minutes + m *= speed_factor # correct for printing time + m = int(m) + h, m = divmod(m, 60) # convert to hours and minutes + # add the time remaining to the display_text + if h > 0: # if it's more than 1 hour left, display format = xhxxm + time_remaining_display += str(h) + "h" + if m < 10: # add trailing zero if necessary + time_remaining_display += "0" + time_remaining_display += str(m) + "m" + else: + time_remaining_display += str(m) + "m" + display_text += time_remaining_display + # find time_elapsed at the end of the layer (used to calculate the remaining time of the next layer) + if not current_layer == number_of_layers: + for line_index in range(len(lines) - 1, -1, -1): + line = lines[line_index] + if line.startswith(";TIME_ELAPSED:"): + # update time_elapsed for the NEXT layer and exit the loop + time_elapsed = int(float(line.split(":")[1])) + break + # insert the text AFTER the first line of the layer (in case other scripts use ";LAYER:") + for l_index, line in enumerate(lines): + if line.startswith(";LAYER:"): + lines[l_index] += "\nM117 " + display_text + # add M73 line + mins = int(60 * h + m) + if m73_time: + lines[l_index] += "\nM73 R{}".format(mins) + if m73_percent: + lines[l_index] += "\nM73 P" + str(round(int(current_layer) / int(number_of_layers) * 100)) + if add_m118_line: + lines[l_index] += "\nM118 " + display_text + break + # overwrite the layer with the modified layer + data[layer_index] = "\n".join(lines) + + # If enabled then change the ET to TP for 'Time To Pause' + if bool(self.getSettingValueByKey("countdown_to_pause")): + time_list = [] + time_list.append("0") + time_list.append("0") + this_time = 0 + pause_index = 1 + + # Get the layer times + for num in range(2,len(data) - 1): + layer = data[num] + lines = layer.split("\n") + for line in lines: + if line.startswith(";TIME_ELAPSED:"): + this_time = (float(line.split(":")[1]))*speed_factor + time_list.append(str(this_time)) + if "PauseAtHeight.py" in layer: + for qnum in range(num - 1, pause_index, -1): + time_list[qnum] = str(float(this_time) - float(time_list[qnum])) + "P" + pause_index = num-1 + + # Make the adjustments to the M117 (and M118) lines that are prior to a pause + for num in range (2, len(data) - 1,1): + layer = data[num] + lines = layer.split("\n") + for line in lines: + if line.startswith("M117") and "|" in line and "P" in time_list[num]: + M117_line = line.split("|")[0] + "| TP " + alt_time = time_list[num][:-1] + hhh = int(float(alt_time) / 3600) + if hhh > 0: + hhr = str(hhh) + "h" + else: + hhr = "" + mmm = ((float(alt_time) / 3600) - (int(float(alt_time) / 3600))) * 60 + sss = int((mmm - int(mmm)) * 60) + mmm = str(round(mmm)) + "m" + time_to_go = str(hhr) + str(mmm) + if hhr == "": time_to_go = time_to_go + str(sss) + "s" + M117_line = M117_line + time_to_go + layer = layer.replace(line, M117_line) + if line.startswith("M118") and "|" in line and "P" in time_list[num]: + M118_line = line.split("|")[0] + "| TP " + time_to_go + layer = layer.replace(line, M118_line) + data[num] = layer + setting_data = "" + if bool(self.getSettingValueByKey("enable_end_message")): + message_str = self.message_to_user(speed_factor) + Message(title = "[Display Info on LCD] - Estimated Finish Time", text = message_str[0] + "\n\n" + message_str[1] + "\n" + message_str[2] + "\n" + message_str[3]).show() + return data + + def message_to_user(self, speed_factor: float): + # Message the user of the projected finish time of the print + print_time = Application.getInstance().getPrintInformation().currentPrintTime.getDisplayString(DurationFormat.Format.ISO8601) + print_start_time = self.getSettingValueByKey("print_start_time") + # If the user entered a print start time make sure it is in the correct format or ignore it. + if print_start_time == "" or print_start_time == "0" or len(print_start_time) != 5 or not ":" in print_start_time: + print_start_time = "" + # Change the print start time to proper time format, or, use the current time + if print_start_time != "": + hr = int(print_start_time.split(":")[0]) + min = int(print_start_time.split(":")[1]) + sec = 0 + else: + hr = int(time.strftime("%H")) + min = int(time.strftime("%M")) + sec = int(time.strftime("%S")) + + #Get the current data/time info + yr = int(time.strftime("%Y")) + day = int(time.strftime("%d")) + mo = int(time.strftime("%m")) + + date_and_time = datetime.datetime(yr, mo, day, hr, min, sec) + #Split the Cura print time + pr_hr = int(print_time.split(":")[0]) + pr_min = int(print_time.split(":")[1]) + pr_sec = int(print_time.split(":")[2]) + #Adjust the print time if none was entered + print_seconds = pr_hr*3600 + pr_min*60 + pr_sec + #Adjust the total seconds by the Fudge Factor + adjusted_print_time = print_seconds * speed_factor + #Break down the adjusted seconds back into hh:mm:ss + adj_hr = int(adjusted_print_time/3600) + print_seconds = adjusted_print_time - (adj_hr * 3600) + adj_min = int(print_seconds) / 60 + adj_sec = int(print_seconds - (adj_min * 60)) + #Get the print time to add to the start time + time_change = datetime.timedelta(hours=adj_hr, minutes=adj_min, seconds=adj_sec) + new_time = date_and_time + time_change + #Get the day of the week that the print will end on + week_day = str(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"][int(new_time.strftime("%w"))]) + #Get the month that the print will end in + mo_str = str(["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"][int(new_time.strftime("%m"))-1]) + #Make adjustments from 24hr time to 12hr time + if int(new_time.strftime("%H")) > 12: + show_hr = str(int(new_time.strftime("%H")) - 12) + ":" + show_ampm = " PM" + elif int(new_time.strftime("%H")) == 0: + show_hr = "12:" + show_ampm = " AM" + else: + show_hr = str(new_time.strftime("%H")) + ":" + show_ampm = " AM" + if print_start_time == "": + start_str = "Now" + else: + start_str = "and your entered 'print start time' of " + print_start_time + "hrs." + if print_start_time != "": + print_start_str = "Print Start Time................." + str(print_start_time) + "hrs" + else: + print_start_str = "Print Start Time.................Now." + estimate_str = "Cura Time Estimate.........." + str(print_time) + adjusted_str = "Adjusted Time Estimate..." + str(time_change) + finish_str = week_day + " " + str(mo_str) + " " + str(new_time.strftime("%d")) + ", " + str(new_time.strftime("%Y")) + " at " + str(show_hr) + str(new_time.strftime("%M")) + str(show_ampm) + return finish_str, estimate_str, adjusted_str, print_start_str \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py index eb74955319..03cb375514 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py @@ -7,14 +7,13 @@ from ..Script import Script -import re -import datetime +from UM.Message import Message class DisplayProgressOnLCD(Script): - def __init__(self): - super().__init__() - + def initialize(self) -> None: + Message(title = "[Display Progress on LCD]", text = "This script is now an option in 'Display Info on LCD'. This post processor no longer works.").show() + def getSettingDataString(self): return """{ "name": "Display Progress On LCD", @@ -23,176 +22,17 @@ class DisplayProgressOnLCD(Script): "version": 2, "settings": { - "time_remaining": + "enable_script": { - "label": "Time Remaining", - "description": "Select to write remaining time to the display.Select to write remaining time on the display using M117 status line message (almost all printers) or using M73 command (Prusa and Marlin 2 if enabled).", + "label": "Deprecated/Obsolete", + "description": "This script is now included in 'Display Info on LCD'.", "type": "bool", - "default_value": false - }, - "time_remaining_method": - { - "label": "Time Reporting Method", - "description": "How should remaining time be shown on the display? It could use a generic message command (M117, almost all printers), or a specialised time remaining command (M73, Prusa and Marlin 2).", - "type": "enum", - "options": { - "m117":"M117 - All printers", - "m73":"M73 - Prusa, Marlin 2", - "m118":"M118 - Octoprint" - }, - "enabled": "time_remaining", - "default_value": "m117" - }, - "update_frequency": - { - "label": "Update frequency", - "description": "Update remaining time for every layer or periodically every minute or faster.", - "type": "enum", - "options": {"0":"Every layer","15":"Every 15 seconds","30":"Every 30 seconds","60":"Every minute"}, - "default_value": "0", - "enabled": "time_remaining" - }, - "percentage": - { - "label": "Percentage", - "description": "When enabled, set the completion bar percentage on the LCD using Marlin's M73 command.", - "type": "bool", - "default_value": false + "default_value": true } } }""" - # Get the time value from a line as a float. - # Example line ;TIME_ELAPSED:1234.6789 or ;TIME:1337 - def getTimeValue(self, line): - list_split = re.split(":", line) # Split at ":" so we can get the numerical value - return float(list_split[1]) # Convert the numerical portion to a float - - def outputTime(self, lines, line_index, time_left, mode): - # Do some math to get the time left in seconds into the right format. (HH,MM,SS) - time_left = max(time_left, 0) - m, s = divmod(time_left, 60) - h, m = divmod(m, 60) - # Create the string - if mode == "m117": - current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s)) - # And now insert that into the GCODE - lines.insert(line_index, "M117 Time Left {}".format(current_time_string)) - elif mode == "m118": - current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s)) - # And now insert that into the GCODE - lines.insert(line_index, "M118 A1 P0 action:notification Time Left {}".format(current_time_string)) - else: - mins = int(60 * h + m + s / 30) - lines.insert(line_index, "M73 R{}".format(mins)) - def execute(self, data): - output_time = self.getSettingValueByKey("time_remaining") - output_time_method = self.getSettingValueByKey("time_remaining_method") - output_frequency = int(self.getSettingValueByKey("update_frequency")) - output_percentage = self.getSettingValueByKey("percentage") - line_set = {} - if output_percentage or output_time: - total_time = -1 - previous_layer_end_percentage = 0 - previous_layer_end_time = 0 - for layer in data: - layer_index = data.index(layer) - lines = layer.split("\n") - - for line in lines: - if (line.startswith(";TIME:") or line.startswith(";PRINT.TIME:")) and total_time == -1: - # This line represents the total time required to print the gcode - total_time = self.getTimeValue(line) - line_index = lines.index(line) - - # In the beginning we may have 2 M73 lines, but it makes logic less complicated - if output_time: - self.outputTime(lines, line_index, total_time, output_time_method) - - if output_percentage: - # Emit 0 percent to sure Marlin knows we are overriding the completion percentage - if output_time_method == "m118": - lines.insert(line_index, "M118 A1 P0 action:notification Data Left 0/100") - else: - lines.insert(line_index, "M73 P0") - - elif line.startswith(";TIME_ELAPSED:"): - # We've found one of the time elapsed values which are added at the end of layers - - # If we have seen this line before then skip processing it. We can see lines multiple times because we are adding - # intermediate percentages before the line being processed. This can cause the current line to shift back and be - # encountered more than once - if line in line_set: - continue - line_set[line] = True - - # If total_time was not already found then noop - if total_time == -1: - continue - - current_time = self.getTimeValue(line) - line_index = lines.index(line) - - if output_time: - if output_frequency == 0: - # Here we calculate remaining time - self.outputTime(lines, line_index, total_time - current_time, output_time_method) - else: - # Here we calculate remaining time and how many outputs are expected for the layer - layer_time_delta = int(current_time - previous_layer_end_time) - layer_step_delta = int((current_time - previous_layer_end_time) / output_frequency) - # If this layer represents less than 1 step then we don't need to emit anything, continue to the next layer - if layer_step_delta != 0: - # Grab the index of the current line and figure out how many lines represent one second - step = line_index / layer_time_delta - # Move new lines further as we add new lines above it - lines_added = 1 - # Run through layer in seconds - for seconds in range(1, layer_time_delta + 1): - # Time from start to decide when to update - line_time = int(previous_layer_end_time + seconds) - # Output every X seconds and after last layer - if line_time % output_frequency == 0 or line_time == total_time: - # Line to add the output - time_line_index = int((seconds * step) + lines_added) - - # Insert remaining time into the GCODE - self.outputTime(lines, time_line_index, total_time - line_time, output_time_method) - # Next line will be again lower - lines_added = lines_added + 1 - - previous_layer_end_time = int(current_time) - - if output_percentage: - # Calculate percentage value this layer ends at - layer_end_percentage = int((current_time / total_time) * 100) - - # Figure out how many percent of the total time is spent in this layer - layer_percentage_delta = layer_end_percentage - previous_layer_end_percentage - - # If this layer represents less than 1 percent then we don't need to emit anything, continue to the next layer - if layer_percentage_delta != 0: - # Grab the index of the current line and figure out how many lines represent one percent - step = line_index / layer_percentage_delta - - for percentage in range(1, layer_percentage_delta + 1): - # We add the percentage value here as while processing prior lines we will have inserted - # percentage lines before the current one. Failing to do this will upset the spacing - percentage_line_index = int((percentage * step) + percentage) - - # Due to integer truncation of the total time value in the gcode the percentage we - # calculate may slightly exceed 100, as that is not valid we cap the value here - output = min(percentage + previous_layer_end_percentage, 100) - - # Now insert the sanitized percentage into the GCODE - if output_time_method == "m118": - lines.insert(percentage_line_index, "M118 A1 P0 action:notification Data Left {}/100".format(output)) - else: - lines.insert(percentage_line_index, "M73 P{}".format(output)) - - previous_layer_end_percentage = layer_end_percentage - - # Join up the lines for this layer again and store them in the data array - data[layer_index] = "\n".join(lines) + Message(title = "[Display Progress on LCD]", text = "This post is now included in 'Display Info on LCD'. This script will exit.").show() + data[0] += "; [Display Progress on LCD] Did not run. It is now included in 'Display Info on LCD'.\n" return data diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index 93941c0992..6fe28ef2f2 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -7,7 +7,7 @@ from typing import List from ..Script import Script -from UM.Application import Application #To get the current printer's settings. +from UM.Application import Application # To get the current printer's settings. class FilamentChange(Script): diff --git a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py index 5fb506b42b..8cadceb528 100644 --- a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py +++ b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py @@ -26,27 +26,40 @@ class InsertAtLayerChange(Script): }, "gcode_to_add": { - "label": "G-code to insert.", + "label": "G-code to insert", "description": "G-code to add before or after layer change.", "type": "str", "default_value": "" + }, + "skip_layers": + { + "label": "Skip layers", + "description": "Number of layers to skip between insertions (0 for every layer).", + "type": "int", + "default_value": 0, + "minimum_value": 0 } } }""" def execute(self, data): gcode_to_add = self.getSettingValueByKey("gcode_to_add") + "\n" + skip_layers = self.getSettingValueByKey("skip_layers") + count = 0 for layer in data: # Check that a layer is being printed lines = layer.split("\n") for line in lines: if ";LAYER:" in line: index = data.index(layer) - if self.getSettingValueByKey("insert_location") == "before": - layer = gcode_to_add + layer - else: - layer = layer + gcode_to_add + if count == 0: + if self.getSettingValueByKey("insert_location") == "before": + layer = gcode_to_add + layer + else: + layer = layer + gcode_to_add - data[index] = layer + data[index] = layer + + count = (count + 1) % (skip_layers + 1) break return data diff --git a/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py b/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py index b587afb6b8..9dac57e218 100644 --- a/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py +++ b/plugins/PostProcessingPlugin/scripts/LimitXYAccelJerk.py @@ -9,6 +9,7 @@ # When setting an accel limit on multi-extruder printers ALL extruders are effected. # This post does not distinguish between Print Accel and Travel Accel. The limit is the limit for all regardless. Example: Skin Accel = 1000 and Outer Wall accel = 500. If the limit is set to 300 then both Skin and Outer Wall will be Accel = 300. # 9/15/2023 added support for RepRap M566 command for Jerk in mm/min +# 2/4/2024 Added a block so the script doesn't run unless Accel Control is enabled in Cura. This should keep users from increasing the Accel Limits. from ..Script import Script from cura.CuraApplication import CuraApplication @@ -45,6 +46,10 @@ class LimitXYAccelJerk(Script): # Warn the user if the printer is multi-extruder------------------ if ext_count > 1: Message(text = " 'Limit the X-Y Accel/Jerk': The post processor treats all extruders the same. If you have multiple extruders they will all be subject to the same Accel and Jerk limits imposed. If you have different Travel and Print Accel they will also be subject to the same limits. If that is not acceptable then you should not use this Post Processor.").show() + + # Warn the user if Accel Control is not enabled in Cura. This keeps the script from being able to increase the Accel limits----------- + if not bool(extruder[0].getProperty("acceleration_enabled", "value")): + Message(title = "[Limit the X-Y Accel/Jerk]", text = "You must have 'Enable Acceleration Control' checked in Cura or the script will exit.").show() def getSettingDataString(self): return """{ @@ -169,6 +174,13 @@ class LimitXYAccelJerk(Script): extruder = mycura.extruderList machine_name = str(mycura.getProperty("machine_name", "value")) print_sequence = str(mycura.getProperty("print_sequence", "value")) + acceleration_enabled = bool(extruder[0].getProperty("acceleration_enabled", "value")) + + # Exit if acceleration control is not enabled---------------- + if not acceleration_enabled: + Message(title = "[Limit the X-Y Accel/Jerk]", text = "DID NOT RUN. You must have 'Enable Acceleration Control' checked in Cura.").show() + data[0] += "; [LimitXYAccelJerk] DID NOT RUN because 'Enable Acceleration Control' is not checked in Cura.\n" + return data # Exit if 'one_at_a_time' is enabled------------------------- if print_sequence == "one_at_a_time": @@ -183,12 +195,8 @@ class LimitXYAccelJerk(Script): return data type_of_change = str(self.getSettingValueByKey("type_of_change")) - accel_print_enabled = bool(extruder[0].getProperty("acceleration_enabled", "value")) - accel_travel_enabled = bool(extruder[0].getProperty("acceleration_travel_enabled", "value")) accel_print = extruder[0].getProperty("acceleration_print", "value") accel_travel = extruder[0].getProperty("acceleration_travel", "value") - jerk_print_enabled = str(extruder[0].getProperty("jerk_enabled", "value")) - jerk_travel_enabled = str(extruder[0].getProperty("jerk_travel_enabled", "value")) jerk_print_old = extruder[0].getProperty("jerk_print", "value") jerk_travel_old = extruder[0].getProperty("jerk_travel", "value") if int(accel_print) >= int(accel_travel): @@ -218,13 +226,13 @@ class LimitXYAccelJerk(Script): m201_limit_new = f"M201 X{x_accel} Y{y_accel}" m201_limit_old = f"M201 X{round(accel_old)} Y{round(accel_old)}" if x_jerk == 0: - m205_jerk_pattern = "Y(\d*)" + m205_jerk_pattern = r"Y(\d*)" m205_jerk_new = f"Y{y_jerk}" if y_jerk == 0: - m205_jerk_pattern = "X(\d*)" + m205_jerk_pattern = r"X(\d*)" m205_jerk_new = f"X{x_jerk}" if x_jerk != 0 and y_jerk != 0: - m205_jerk_pattern = jerk_cmd + " X(\d*) Y(\d*)" + m205_jerk_pattern = jerk_cmd + r" X(\d*) Y(\d*)" m205_jerk_new = jerk_cmd + f" X{x_jerk} Y{y_jerk}" m205_jerk_old = jerk_cmd + f" X{jerk_old} Y{jerk_old}" type_of_change = self.getSettingValueByKey("type_of_change") diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index 3d85740bd4..f502678317 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -7,7 +7,7 @@ from ..Script import Script import re -from UM.Application import Application #To get the current printer's settings. +from UM.Application import Application # To get the current printer's settings. from UM.Logger import Logger from typing import List, Tuple diff --git a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py index 7a12c229cc..dabc6b725a 100644 --- a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py +++ b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py @@ -1,7 +1,7 @@ # Copyright (c) 2017 Ghostkeeper # The PostProcessingPlugin is released under the terms of the LGPLv3 or higher. -import re #To perform the search and replace. +import re # To perform the search and replace. from ..Script import Script diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py index 8c0c50d0b4..a9a0666d9c 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py @@ -8,7 +8,7 @@ from UM.Application import Application from UM.Logger import Logger from UM.Message import Message from UM.FileHandler.WriteFileJob import WriteFileJob -from UM.FileHandler.FileWriter import FileWriter #To check against the write modes (text vs. binary). +from UM.FileHandler.FileWriter import FileWriter # To check against the write modes (text vs. binary). from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.OutputDevice.OutputDevice import OutputDevice from UM.OutputDevice import OutputDeviceError diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 1294b37db4..080b02bd9e 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -1,5 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +import math from UM.Math.Color import Color from UM.Math.Vector import Vector @@ -35,7 +36,7 @@ class SimulationPass(RenderPass): self._nozzle_shader = None self._disabled_shader = None self._old_current_layer = 0 - self._old_current_path = 0 + self._old_current_path: float = 0.0 self._switching_layers = True # Tracking whether the user is moving across layers (True) or across paths (False). If false, lower layers render as shadowy. self._gl = OpenGL.getInstance().getBindingsObject() self._scene = Application.getInstance().getController().getScene() @@ -120,6 +121,7 @@ class SimulationPass(RenderPass): disabled_batch = RenderBatch(self._disabled_shader) head_position = None # Indicates the current position of the print head nozzle_node = None + not_a_vector = Vector(math.nan, math.nan, math.nan) for node in DepthFirstIterator(self._scene.getRoot()): @@ -139,44 +141,67 @@ class SimulationPass(RenderPass): continue # Render all layers below a certain number as line mesh instead of vertices. - if self._layer_view._current_layer_num > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): + if self._layer_view.getCurrentLayer() > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): start = 0 end = 0 + vertex_before_head = not_a_vector + vertex_after_head = not_a_vector + vertex_distance_ratio = 0.0 + towards_next_vertex = 0 element_counts = layer_data.getElementCounts() for layer in sorted(element_counts.keys()): # In the current layer, we show just the indicated paths if layer == self._layer_view._current_layer_num: # We look for the position of the head, searching the point of the current path - index = self._layer_view._current_path_num - offset = 0 + index = int(self._layer_view.getCurrentPath()) if not math.isnan( + self._layer_view.getCurrentPath()) else 0 for polygon in layer_data.getLayer(layer).polygons: # The size indicates all values in the two-dimension array, and the second dimension is # always size 3 because we have 3D points. - if index >= polygon.data.size // 3 - offset: - index -= polygon.data.size // 3 - offset - offset = 1 # This is to avoid the first point when there is more than one polygon, since has the same value as the last point in the previous polygon + if index >= polygon.data.size // 3 : + index -= polygon.data.size // 3 continue # The head position is calculated and translated - head_position = Vector(polygon.data[index+offset][0], polygon.data[index+offset][1], polygon.data[index+offset][2]) + node.getWorldPosition() + ratio = self._layer_view.getCurrentPath() - math.floor(self._layer_view.getCurrentPath()) + pos_a = Vector(polygon.data[index][0], polygon.data[index][1], + polygon.data[index][2]) + vertex_before_head = pos_a + vertex_distance_ratio = ratio + if ratio <= 0.0001 or index + 1 == len(polygon.data): + # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon + head_position = pos_a + node.getWorldPosition() + else: + pos_b = Vector(polygon.data[index + 1][0], + polygon.data[index + 1][1], + polygon.data[index + 1][2]) + vec = pos_a * (1.0 - ratio) + pos_b * ratio + head_position = vec + node.getWorldPosition() + vertex_after_head = pos_b + towards_next_vertex = 2 # Add two to the index to print the current and next vertices as an 'unfinished' line (to the nozzle). break break - if self._layer_view._minimum_layer_num > layer: + if self._layer_view.getMinimumLayer() > layer: start += element_counts[layer] end += element_counts[layer] # Calculate the range of paths in the last layer current_layer_start = end - current_layer_end = end + self._layer_view._current_path_num * 2 # Because each point is used twice + current_layer_end = end + int( self._layer_view.getCurrentPath()) * 2 # Because each point is used twice # This uses glDrawRangeElements internally to only draw a certain range of lines. # All the layers but the current selected layer are rendered first - if self._old_current_path != self._layer_view._current_path_num: + if self._old_current_path != self._layer_view.getCurrentPath(): self._current_shader = self._layer_shadow_shader self._switching_layers = False - if not self._layer_view.isSimulationRunning() and self._old_current_layer != self._layer_view._current_layer_num: + if not self._layer_view.isSimulationRunning() and self._old_current_layer != self._layer_view.getCurrentLayer(): self._current_shader = self._layer_shader self._switching_layers = True + # reset 'last vertex' + self._layer_shader.setUniformValue("u_last_vertex", not_a_vector) + self._layer_shader.setUniformValue("u_next_vertex", not_a_vector) + self._layer_shader.setUniformValue("u_last_line_ratio", 1.0) + # The first line does not have a previous line: add a MoveCombingType in front for start detection # this way the first start of the layer can also be drawn prev_line_types = numpy.concatenate([numpy.asarray([LayerPolygon.MoveCombingType], dtype = numpy.float32), layer_data._attributes["line_types"]["value"]]) @@ -193,8 +218,19 @@ class SimulationPass(RenderPass): current_layer_batch.addItem(node.getWorldTransformation(), layer_data) current_layer_batch.render(self._scene.getActiveCamera()) - self._old_current_layer = self._layer_view._current_layer_num - self._old_current_path = self._layer_view._current_path_num + # Last line may be partial + if vertex_after_head != not_a_vector and vertex_after_head != not_a_vector: + self._layer_shader.setUniformValue("u_last_vertex", vertex_before_head) + self._layer_shader.setUniformValue("u_next_vertex", vertex_after_head) + self._layer_shader.setUniformValue("u_last_line_ratio", vertex_distance_ratio) + last_line_start = current_layer_end + last_line_end = current_layer_end + towards_next_vertex + last_line_batch = RenderBatch(self._layer_shader, type = RenderBatch.RenderType.Solid, mode=RenderBatch.RenderMode.Lines, range = (last_line_start, last_line_end)) + last_line_batch.addItem(node.getWorldTransformation(), layer_data) + last_line_batch.render(self._scene.getActiveCamera()) + + self._old_current_layer = self._layer_view.getCurrentLayer() + self._old_current_path = self._layer_view.getCurrentPath() # Create a new batch that is not range-limited batch = RenderBatch(self._layer_shader, type = RenderBatch.RenderType.Solid) @@ -230,4 +266,4 @@ class SimulationPass(RenderPass): if changed_object.callDecoration("getLayerData"): # Any layer data has changed. self._switching_layers = True self._old_current_layer = 0 - self._old_current_path = 0 + self._old_current_path = 0.0 diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 473948bc46..10b68edaa0 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -1,6 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. - +import math import sys from PyQt6.QtCore import Qt @@ -58,6 +58,7 @@ class SimulationView(CuraView): LAYER_VIEW_TYPE_LINE_TYPE = 1 LAYER_VIEW_TYPE_FEEDRATE = 2 LAYER_VIEW_TYPE_THICKNESS = 3 + SIMULATION_FACTOR = 2 _no_layers_warning_preference = "view/no_layers_warning" @@ -74,19 +75,20 @@ class SimulationView(CuraView): self._old_max_layers = 0 self._max_paths = 0 - self._current_path_num = 0 + self._current_path_num: float = 0.0 + self._current_time = 0.0 self._minimum_path_num = 0 self.currentLayerNumChanged.connect(self._onCurrentLayerNumChanged) self._busy = False self._simulation_running = False - self._ghost_shader = None # type: Optional["ShaderProgram"] - self._layer_pass = None # type: Optional[SimulationPass] - self._composite_pass = None # type: Optional[CompositePass] - self._old_layer_bindings = None # type: Optional[List[str]] - self._simulationview_composite_shader = None # type: Optional["ShaderProgram"] - self._old_composite_shader = None # type: Optional["ShaderProgram"] + self._ghost_shader: Optional["ShaderProgram"] = None + self._layer_pass: Optional[SimulationPass] = None + self._composite_pass: Optional[CompositePass] = None + self._old_layer_bindings: Optional[List[str]] = None + self._simulationview_composite_shader: Optional["ShaderProgram"] = None + self._old_composite_shader: Optional["ShaderProgram"] = None self._max_feedrate = sys.float_info.min self._min_feedrate = sys.float_info.max @@ -96,14 +98,16 @@ class SimulationView(CuraView): self._min_line_width = sys.float_info.max self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min + self._cumulative_line_duration_layer: Optional[int] = None + self._cumulative_line_duration: List[float] = [] - self._global_container_stack = None # type: Optional[ContainerStack] + self._global_container_stack: Optional[ContainerStack] = None self._proxy = None self._resetSettings() self._legend_items = None self._show_travel_moves = False - self._nozzle_node = None # type: Optional[NozzleNode] + self._nozzle_node: Optional[NozzleNode] = None Application.getInstance().getPreferences().addPreference("view/top_layer_count", 5) Application.getInstance().getPreferences().addPreference("view/only_show_top_layers", False) @@ -125,13 +129,12 @@ class SimulationView(CuraView): self._only_show_top_layers = bool(Application.getInstance().getPreferences().getValue("view/only_show_top_layers")) self._compatibility_mode = self._evaluateCompatibilityMode() - self._slice_first_warning_message = Message(catalog.i18nc("@info:status", - "Nothing is shown because you need to slice first."), - title = catalog.i18nc("@info:title", "No layers to show"), - option_text = catalog.i18nc("@info:option_text", - "Do not show this message again"), - option_state = False, - message_type = Message.MessageType.WARNING) + self._slice_first_warning_message = Message(catalog.i18nc("@info:status", "Nothing is shown because you need to slice first."), + title=catalog.i18nc("@info:title", "No layers to show"), + option_text=catalog.i18nc("@info:option_text", + "Do not show this message again"), + option_state=False, + message_type=Message.MessageType.WARNING) self._slice_first_warning_message.optionToggled.connect(self._onDontAskMeAgain) CuraApplication.getInstance().getPreferences().addPreference(self._no_layers_warning_preference, True) @@ -187,9 +190,91 @@ class SimulationView(CuraView): def getMaxLayers(self) -> int: return self._max_layers - def getCurrentPath(self) -> int: + def getCurrentPath(self) -> float: return self._current_path_num + def setTime(self, time: float) -> None: + cumulative_line_duration = self.cumulativeLineDuration() + if len(cumulative_line_duration) > 0: + self._current_time = time + left_i = 0 + right_i = len(cumulative_line_duration) - 1 + total_duration = cumulative_line_duration[-1] + # make an educated guess about where to start + i = int(right_i * max(0.0, min(1.0, self._current_time / total_duration))) + # binary search for the correct path + while left_i < right_i: + if cumulative_line_duration[i] <= self._current_time: + left_i = i + 1 + else: + right_i = i + i = int((left_i + right_i) / 2) + + left_value = cumulative_line_duration[i - 1] if i > 0 else 0.0 + right_value = cumulative_line_duration[i] + + if not (left_value <= self._current_time <= right_value): + Logger.warn( + f"Binary search error (out of bounds): index {i}: left value {left_value} right value {right_value} and current time is {self._current_time}") + + segment_duration = right_value - left_value + fractional_value = 0.0 if segment_duration == 0.0 else (self._current_time - left_value) / segment_duration + + self.setPath(i + fractional_value) + + def advanceTime(self, time_increase: float) -> bool: + """ + Advance the time by the given amount. + + :param time_increase: The amount of time to advance (in seconds). + :return: True if the time was advanced, False if the end of the simulation was reached. + """ + total_duration = 0.0 + if len(self.cumulativeLineDuration()) > 0: + total_duration = self.cumulativeLineDuration()[-1] + + if self._current_time + time_increase > total_duration: + # If we have reached the end of the simulation, go to the next layer. + if self.getCurrentLayer() == self.getMaxLayers(): + # If we are already at the last layer, go to the first layer. + self.setTime(total_duration) + return False + + # advance to the next layer, and reset the time + self.setLayer(self.getCurrentLayer() + 1) + self.setTime(0.0) + else: + self.setTime(self._current_time + time_increase) + return True + + def cumulativeLineDuration(self) -> List[float]: + # Make sure _cumulative_line_duration is initialized properly + if self.getCurrentLayer() != self._cumulative_line_duration_layer: + #clear cache + self._cumulative_line_duration = [] + total_duration = 0.0 + polylines = self.getLayerData() + if polylines is not None: + for polyline in polylines.polygons: + for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): + total_duration += line_duration / SimulationView.SIMULATION_FACTOR + self._cumulative_line_duration.append(total_duration) + # for tool change we add an extra tool path + self._cumulative_line_duration.append(total_duration) + # set current cached layer + self._cumulative_line_duration_layer = self.getCurrentLayer() + + return self._cumulative_line_duration + + def getLayerData(self) -> Optional["LayerData"]: + scene = self.getController().getScene() + for node in DepthFirstIterator(scene.getRoot()): # type: ignore + layer_data = node.callDecoration("getLayerData") + if not layer_data: + continue + return layer_data.getLayer(self.getCurrentLayer()) + return None + def getMinimumPath(self) -> int: return self._minimum_path_num @@ -277,7 +362,7 @@ class SimulationView(CuraView): self._startUpdateTopLayers() self.currentLayerNumChanged.emit() - def setPath(self, value: int) -> None: + def setPath(self, value: float) -> None: """ Set the upper end of the range of visible paths on the current layer. @@ -287,6 +372,12 @@ class SimulationView(CuraView): if self._current_path_num != value: self._current_path_num = min(max(value, 0), self._max_paths) self._minimum_path_num = min(self._minimum_path_num, self._current_path_num) + # update _current time when the path is changed by user + if self._current_path_num < self._max_paths and round(self._current_path_num)== self._current_path_num: + actual_path_num = int(self._current_path_num) + cumulative_line_duration = self.cumulativeLineDuration() + if actual_path_num < len(cumulative_line_duration): + self._current_time = cumulative_line_duration[actual_path_num] self._startUpdateTopLayers() self.currentPathNumChanged.emit() @@ -492,6 +583,7 @@ class SimulationView(CuraView): self._max_thickness = sys.float_info.min self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min + self._cumulative_line_duration = {} # The colour scheme is only influenced by the visible lines, so filter the lines by if they should be visible. visible_line_types = [] diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index a82d1e3db9..d9e7a95bc1 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -127,6 +127,7 @@ Item function resumeSimulation() { UM.SimulationView.setSimulationRunning(true) + UM.SimulationView.setCurrentPath(UM.SimulationView.currentPath) simulationTimer.start() layerSlider.manuallyChanged = false pathSlider.manuallyChanged = false @@ -136,54 +137,19 @@ Item Timer { id: simulationTimer - interval: 100 + interval: 1000 / 15 running: false repeat: true onTriggered: { - var currentPath = UM.SimulationView.currentPath - var numPaths = UM.SimulationView.numPaths - var currentLayer = UM.SimulationView.currentLayer - var numLayers = UM.SimulationView.numLayers - - // When the user plays the simulation, if the path slider is at the end of this layer, we start - // the simulation at the beginning of the current layer. - if (!isSimulationPlaying) - { - if (currentPath >= numPaths) - { - UM.SimulationView.setCurrentPath(0) - } - else - { - UM.SimulationView.setCurrentPath(currentPath + 1) - } - } - // If the simulation is already playing and we reach the end of a layer, then it automatically - // starts at the beginning of the next layer. - else - { - if (currentPath >= numPaths) - { - // At the end of the model, the simulation stops - if (currentLayer >= numLayers) - { - playButton.pauseSimulation() - } - else - { - UM.SimulationView.setCurrentLayer(currentLayer + 1) - UM.SimulationView.setCurrentPath(0) - } - } - else - { - UM.SimulationView.setCurrentPath(currentPath + 1) - } + // divide by 1000 to account for ms to s conversion + const advance_time = simulationTimer.interval / 1000.0; + if (!UM.SimulationView.advanceTime(advance_time)) { + playButton.pauseSimulation(); } // The status must be set here instead of in the resumeSimulation function otherwise it won't work // correctly, because part of the logic is in this trigger function. - isSimulationPlaying = true + isSimulationPlaying = true; } } diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index 669f7fdbcc..bf449a99d1 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -50,10 +50,14 @@ class SimulationViewProxy(QObject): def numPaths(self): return self._simulation_view.getMaxPaths() - @pyqtProperty(int, notify=currentPathChanged) + @pyqtProperty(float, notify=currentPathChanged) def currentPath(self): return self._simulation_view.getCurrentPath() + @pyqtSlot(float, result=bool) + def advanceTime(self, duration: float) -> bool: + return self._simulation_view.advanceTime(duration) + @pyqtProperty(int, notify=currentPathChanged) def minimumPath(self): return self._simulation_view.getMinimumPath() @@ -78,8 +82,8 @@ class SimulationViewProxy(QObject): def setMinimumLayer(self, layer_num): self._simulation_view.setMinimumLayer(layer_num) - @pyqtSlot(int) - def setCurrentPath(self, path_num): + @pyqtSlot(float) + def setCurrentPath(self, path_num: float): self._simulation_view.setPath(path_num) @pyqtSlot(int) @@ -215,4 +219,3 @@ class SimulationViewProxy(QObject): self._simulation_view.activityChanged.disconnect(self._onActivityChanged) self._simulation_view.globalStackChanged.disconnect(self._onGlobalStackChanged) self._simulation_view.preferencesChanged.disconnect(self._onPreferencesChanged) - diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index b43d998690..2bf77e89fa 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -19,6 +19,10 @@ vertex41core = uniform highp mat4 u_normalMatrix; + uniform vec3 u_last_vertex; + uniform vec3 u_next_vertex; + uniform float u_last_line_ratio; + in highp vec4 a_vertex; in lowp vec4 a_color; in lowp vec4 a_material_color; @@ -134,6 +138,10 @@ vertex41core = void main() { vec4 v1_vertex = a_vertex; + if (v1_vertex.xyz == u_next_vertex) + { + v1_vertex.xyz = mix(u_last_vertex, u_next_vertex, u_last_line_ratio); + } v1_vertex.y -= a_line_dim.y / 2; // half layer down vec4 world_space_vert = u_modelMatrix * v1_vertex; @@ -348,7 +356,10 @@ geometry41core = EndPrimitive(); } - if ((u_show_starts == 1) && (v_prev_line_type[0] != 1) && (v_line_type[0] == 1)) { + if ((u_show_starts == 1) && ( + ((v_prev_line_type[0] != 1) && (v_line_type[0] == 1)) || + ((v_prev_line_type[0] != 4) && (v_line_type[0] == 4)) + )) { float w = size_x; float h = size_y; @@ -427,6 +438,10 @@ u_max_feedrate = 1 u_min_thickness = 0 u_max_thickness = 1 +u_last_vertex = [0.0, 0.0, 0.0] +u_next_vertex = [0.0, 0.0, 0.0] +u_last_line_ratio = 1.0 + [bindings] u_modelMatrix = model_matrix u_viewMatrix = view_matrix diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 7e7a132c98..411146d065 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -5,7 +5,7 @@ import json import os import platform import time -from typing import cast, Optional, Set, TYPE_CHECKING +from typing import Optional, Set, TYPE_CHECKING from PyQt6.QtCore import pyqtSlot, QObject from PyQt6.QtNetwork import QNetworkRequest @@ -264,6 +264,7 @@ class SliceInfo(QObject, Extension): # Prime tower settings print_settings["prime_tower_enable"] = global_stack.getProperty("prime_tower_enable", "value") + print_settings["prime_tower_mode"] = global_stack.getProperty("prime_tower_mode", "value") # Infill settings print_settings["infill_sparse_density"] = global_stack.getProperty("infill_sparse_density", "value") diff --git a/plugins/SolidView/SolidView.py b/plugins/SolidView/SolidView.py index b7aeb90da4..7f32b0df7f 100644 --- a/plugins/SolidView/SolidView.py +++ b/plugins/SolidView/SolidView.py @@ -16,8 +16,6 @@ from UM.Application import Application from UM.Logger import Logger from UM.Message import Message from UM.Math.Color import Color -from UM.PluginRegistry import PluginRegistry -from UM.Platform import Platform from UM.Event import Event from UM.View.RenderBatch import RenderBatch diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py index c8064ac37f..475e5fc01a 100644 --- a/plugins/UFPWriter/UFPWriter.py +++ b/plugins/UFPWriter/UFPWriter.py @@ -22,7 +22,6 @@ from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator from UM.Scene.SceneNode import SceneNode from UM.Settings.InstanceContainer import InstanceContainer from cura.CuraApplication import CuraApplication -from cura.Settings.CuraStackBuilder import CuraStackBuilder from cura.Settings.GlobalStack import GlobalStack from cura.Utils.Threading import call_on_qt_thread diff --git a/plugins/UFPWriter/__init__.py b/plugins/UFPWriter/__init__.py index ae51f78e95..8561454856 100644 --- a/plugins/UFPWriter/__init__.py +++ b/plugins/UFPWriter/__init__.py @@ -9,8 +9,8 @@ try: except ImportError: Logger.log("w", "Could not import UFPWriter; libCharon may be missing") -from UM.i18n import i18nCatalog #To translate the file format description. -from UM.Mesh.MeshWriter import MeshWriter #For the binary mode flag. +from UM.i18n import i18nCatalog # To translate the file format description. +from UM.Mesh.MeshWriter import MeshWriter # For the binary mode flag. i18n_catalog = i18nCatalog("cura") diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png new file mode 100644 index 0000000000..fc289fe62c Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png new file mode 100644 index 0000000000..c23767459c Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png new file mode 100644 index 0000000000..c48fe68492 Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png new file mode 100644 index 0000000000..2cc52a13ba Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png new file mode 100644 index 0000000000..2a9b3567c8 Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png differ diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml index 5baae741ac..345bab0ba4 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml @@ -115,7 +115,7 @@ UM.Dialog // Utils function formatPrintJobName(name) { - var extensions = [ ".gcode.gz", ".gz", ".gcode", ".ufp" ] + var extensions = [ ".gcode.gz", ".gz", ".gcode", ".ufp", ".makerbot" ] for (var i = 0; i < extensions.length; i++) { var extension = extensions[i] diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 318fceeb40..4feb77222a 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -5,6 +5,7 @@ import urllib.parse from json import JSONDecodeError from time import time from typing import Callable, List, Type, TypeVar, Union, Optional, Tuple, Dict, Any, cast +from pathlib import Path from PyQt6.QtCore import QUrl from PyQt6.QtNetwork import QNetworkRequest, QNetworkReply @@ -38,14 +39,17 @@ class CloudApiClient: # The cloud URL to use for this remote cluster. ROOT_PATH = UltimakerCloudConstants.CuraCloudAPIRoot - CLUSTER_API_ROOT = "{}/connect/v1".format(ROOT_PATH) - CURA_API_ROOT = "{}/cura/v1".format(ROOT_PATH) + CLUSTER_API_ROOT = f"{ROOT_PATH}/connect/v1" + CURA_API_ROOT = f"{ROOT_PATH}/cura/v1" DEFAULT_REQUEST_TIMEOUT = 10 # seconds # In order to avoid garbage collection we keep the callbacks in this list. _anti_gc_callbacks = [] # type: List[Callable[[Any], None]] + # Custom machine definition ID to cloud cluster name mapping + _machine_id_to_name: Dict[str, str] = None + def __init__(self, app: CuraApplication, on_error: Callable[[List[CloudError]], None]) -> None: """Initializes a new cloud API client. @@ -73,22 +77,27 @@ class CloudApiClient: url = f"{self.CLUSTER_API_ROOT}/clusters?status=active" self._http.get(url, - scope = self._scope, - callback = self._parseCallback(on_finished, CloudClusterResponse, failed), - error_callback = failed, - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + callback=self._parseCallback(on_finished, CloudClusterResponse, failed), + error_callback=failed, + timeout=self.DEFAULT_REQUEST_TIMEOUT) def getClustersByMachineType(self, machine_type, on_finished: Callable[[List[CloudClusterWithConfigResponse]], Any], failed: Callable) -> None: # HACK: There is something weird going on with the API, as it reports printer types in formats like # "ultimaker_s3", but wants "Ultimaker S3" when using the machine_variant filter query. So we need to do some # conversion! + # API points to "MakerBot Method" for a makerbot printertypes which we already changed to allign with other printer_type - machine_type = machine_type.replace("_plus", "+") - machine_type = machine_type.replace("_", " ") - machine_type = machine_type.replace("ultimaker", "ultimaker ") - machine_type = machine_type.replace(" ", " ") - machine_type = machine_type.title() - machine_type = urllib.parse.quote_plus(machine_type) + machine_id_to_name = self.getMachineIDMap() + if machine_type in machine_id_to_name: + machine_type = machine_id_to_name[machine_type] + else: + machine_type = machine_type.replace("_plus", "+") + machine_type = machine_type.replace("_", " ") + machine_type = machine_type.replace("ultimaker", "ultimaker ") + machine_type = machine_type.replace(" ", " ") + machine_type = machine_type.title() + machine_type = urllib.parse.quote_plus(machine_type) url = f"{self.CLUSTER_API_ROOT}/clusters?machine_variant={machine_type}" self._http.get(url, scope=self._scope, @@ -105,9 +114,9 @@ class CloudApiClient: url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/status" self._http.get(url, - scope = self._scope, - callback = self._parseCallback(on_finished, CloudClusterStatus), - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + callback=self._parseCallback(on_finished, CloudClusterStatus), + timeout=self.DEFAULT_REQUEST_TIMEOUT) def requestUpload(self, request: CloudPrintJobUploadRequest, on_finished: Callable[[CloudPrintJobResponse], Any]) -> None: @@ -122,10 +131,10 @@ class CloudApiClient: data = json.dumps({"data": request.toDict()}).encode() self._http.put(url, - scope = self._scope, - data = data, - callback = self._parseCallback(on_finished, CloudPrintJobResponse), - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + data=data, + callback=self._parseCallback(on_finished, CloudPrintJobResponse), + timeout=self.DEFAULT_REQUEST_TIMEOUT) def uploadToolPath(self, print_job: CloudPrintJobResponse, mesh: bytes, on_finished: Callable[[], Any], on_progress: Callable[[int], Any], on_error: Callable[[], Any]): @@ -151,11 +160,11 @@ class CloudApiClient: def requestPrint(self, cluster_id: str, job_id: str, on_finished: Callable[[CloudPrintResponse], Any], on_error) -> None: url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/print/{job_id}" self._http.post(url, - scope = self._scope, - data = b"", - callback = self._parseCallback(on_finished, CloudPrintResponse), - error_callback = on_error, - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + data=b"", + callback=self._parseCallback(on_finished, CloudPrintResponse), + error_callback=on_error, + timeout=self.DEFAULT_REQUEST_TIMEOUT) def doPrintJobAction(self, cluster_id: str, cluster_job_id: str, action: str, data: Optional[Dict[str, Any]] = None) -> None: @@ -165,14 +174,15 @@ class CloudApiClient: :param cluster_id: The ID of the cluster. :param cluster_job_id: The ID of the print job within the cluster. :param action: The name of the action to execute. + :param data: Optional data to send with the POST request """ body = json.dumps({"data": data}).encode() if data else b"" url = f"{self.CLUSTER_API_ROOT}/clusters/{cluster_id}/print_jobs/{cluster_job_id}/action/{action}" self._http.post(url, - scope = self._scope, - data = body, - timeout = self.DEFAULT_REQUEST_TIMEOUT) + scope=self._scope, + data=body, + timeout=self.DEFAULT_REQUEST_TIMEOUT) def _createEmptyRequest(self, path: str, content_type: Optional[str] = "application/json") -> QNetworkRequest: """We override _createEmptyRequest in order to add the user credentials. @@ -207,8 +217,11 @@ class CloudApiClient: Logger.logException("e", "Could not parse the stardust response: %s", error.toDict()) return status_code, {"errors": [error.toDict()]} - def _parseResponse(self, response: Dict[str, Any], on_finished: Union[Callable[[CloudApiClientModel], Any], - Callable[[List[CloudApiClientModel]], Any]], model_class: Type[CloudApiClientModel]) -> None: + def _parseResponse(self, + response: Dict[str, Any], + on_finished: Union[Callable[[CloudApiClientModel], Any], + Callable[[List[CloudApiClientModel]], Any]], + model_class: Type[CloudApiClientModel]) -> None: """Parses the given response and calls the correct callback depending on the result. :param response: The response from the server, after being converted to a dict. @@ -267,3 +280,14 @@ class CloudApiClient: self._anti_gc_callbacks.append(parse) return parse + + @classmethod + def getMachineIDMap(cls) -> Dict[str, str]: + if cls._machine_id_to_name is None: + try: + with open(Path(__file__).parent / "machine_id_to_name.json", "rt") as f: + cls._machine_id_to_name = json.load(f) + except Exception as e: + Logger.logException("e", f"Could not load machine_id_to_name.json: '{e}'") + cls._machine_id_to_name = {} + return cls._machine_id_to_name diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index c5c144d273..4ca83772f2 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -213,7 +213,12 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): return # Export the scene to the correct file type. - job = ExportFileJob(file_handler=file_handler, nodes=nodes, firmware_version=self.firmwareVersion) + job = ExportFileJob( + file_handler=file_handler, + nodes=nodes, + firmware_version=self.firmwareVersion, + print_type=self.printerType, + ) job.finished.connect(self._onPrintJobCreated) job.start() @@ -318,16 +323,31 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): PrintJobUploadErrorMessage(message).show() self.writeError.emit() + @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) + def isMethod(self) -> bool: + """Whether the printer that this output device represents is a Method series printer.""" + + if not self._printers: + return False + + [printer, *_] = self._printers + return printer.type in ("MakerBot Method X", "MakerBot Method XL", "MakerBot Sketch") + @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) def supportsPrintJobActions(self) -> bool: """Whether the printer that this output device represents supports print job actions via the cloud.""" if not self._printers: return False + + if self.isMethod: + return True + version_number = self.printers[0].firmwareVersion.split(".") firmware_version = Version([version_number[0], version_number[1], version_number[2]]) return firmware_version >= self.PRINT_JOB_ACTIONS_MIN_VERSION + @pyqtProperty(bool, constant = True) def supportsPrintJobQueue(self) -> bool: """Gets whether the printer supports a queue""" diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index 5ec0db8a66..6fbbf2f053 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -9,6 +9,7 @@ from PyQt6.QtWidgets import QMessageBox from UM import i18nCatalog from UM.Logger import Logger # To log errors talking to the API. +from UM.Message import Message from UM.Settings.Interfaces import ContainerInterface from UM.Signal import Signal from UM.Util import parseBool @@ -25,7 +26,7 @@ from .CloudOutputDevice import CloudOutputDevice from ..Messages.RemovedPrintersMessage import RemovedPrintersMessage from ..Models.Http.CloudClusterResponse import CloudClusterResponse from ..Messages.NewPrinterDetectedMessage import NewPrinterDetectedMessage - +catalog = i18nCatalog("cura") class CloudOutputDeviceManager: """The cloud output device manager is responsible for using the Ultimaker Cloud APIs to manage remote clusters. @@ -179,6 +180,13 @@ class CloudOutputDeviceManager: return Logger.log("e", f"Failed writing to specific cloud printer: {unique_id} not in remote clusters.") + # This message is added so that user knows when the print job was not sent to cloud printer + message = Message(catalog.i18nc("@info:status", + "Failed writing to specific cloud printer: {0} not in remote clusters.").format(unique_id), + title=catalog.i18nc("@info:title", "Error"), + message_type=Message.MessageType.ERROR) + message.show() + def _createMachineStacksForDiscoveredClusters(self, discovered_clusters: List[CloudClusterResponse]) -> None: """**Synchronously** create machines for discovered devices diff --git a/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json b/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json new file mode 100644 index 0000000000..9d0db2a30d --- /dev/null +++ b/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json @@ -0,0 +1,7 @@ +{ + "ultimaker_method": "MakerBot Method", + "ultimaker_methodx": "MakerBot Method X", + "ultimaker_methodxl": "MakerBot Method XL", + "ultimaker_factor4": "Ultimaker Factor 4", + "ultimaker_sketch": "MakerBot Sketch" +} diff --git a/plugins/UM3NetworkPrinting/src/ExportFileJob.py b/plugins/UM3NetworkPrinting/src/ExportFileJob.py index 953b167a6e..ac3da65719 100644 --- a/plugins/UM3NetworkPrinting/src/ExportFileJob.py +++ b/plugins/UM3NetworkPrinting/src/ExportFileJob.py @@ -16,9 +16,9 @@ from .MeshFormatHandler import MeshFormatHandler class ExportFileJob(WriteFileJob): """Job that exports the build plate to the correct file format for the target cluster.""" - def __init__(self, file_handler: Optional[FileHandler], nodes: List[SceneNode], firmware_version: str) -> None: - - self._mesh_format_handler = MeshFormatHandler(file_handler, firmware_version) + def __init__(self, file_handler: Optional[FileHandler], nodes: List[SceneNode], firmware_version: str, + print_type: str) -> None: + self._mesh_format_handler = MeshFormatHandler(file_handler, firmware_version, print_type) if not self._mesh_format_handler.is_valid: Logger.log("e", "Missing file or mesh writer!") return diff --git a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py index 7fc1b4a7d3..2ca8f9f3ce 100644 --- a/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py +++ b/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py @@ -19,10 +19,9 @@ I18N_CATALOG = i18nCatalog("cura") class MeshFormatHandler: """This class is responsible for choosing the formats used by the connected clusters.""" - - def __init__(self, file_handler: Optional[FileHandler], firmware_version: str) -> None: + def __init__(self, file_handler: Optional[FileHandler], firmware_version: str, printer_type: str) -> None: self._file_handler = file_handler or CuraApplication.getInstance().getMeshFileHandler() - self._preferred_format = self._getPreferredFormat(firmware_version) + self._preferred_format = self._getPreferredFormat(firmware_version, printer_type) self._writer = self._getWriter(self.mime_type) if self._preferred_format else None @property @@ -82,7 +81,7 @@ class MeshFormatHandler: value = value.encode() return value - def _getPreferredFormat(self, firmware_version: str) -> Dict[str, Union[str, int, bool]]: + def _getPreferredFormat(self, firmware_version: str, printer_type: str) -> Dict[str, Union[str, int, bool]]: """Chooses the preferred file format for the given file handler. :param firmware_version: The version of the firmware. @@ -103,7 +102,9 @@ class MeshFormatHandler: machine_file_formats = [file_type.strip() for file_type in machine_file_formats] # Exception for UM3 firmware version >=4.4: UFP is now supported and should be the preferred file format. - if "application/x-ufp" not in machine_file_formats and Version(firmware_version) >= Version("4.4"): + if printer_type in ( + "ultimaker3", "ultimaker3_extended") and "application/x-ufp" not in machine_file_formats and Version( + firmware_version) >= Version("4.4"): machine_file_formats = ["application/x-ufp"] + machine_file_formats # Take the intersection between file_formats and machine_file_formats. diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py index c8f3be282e..713582b8ad 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterResponse.py @@ -2,6 +2,7 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional, List +from cura.PrinterOutput.NetworkedPrinterOutputDevice import NetworkedPrinterOutputDevice from ..BaseModel import BaseModel @@ -34,7 +35,7 @@ class CloudClusterResponse(BaseModel): self.host_version = host_version self.host_internal_ip = host_internal_ip self.friendly_name = friendly_name - self.printer_type = printer_type + self.printer_type = NetworkedPrinterOutputDevice.applyPrinterTypeMapping(printer_type) self.printer_count = printer_count self.capabilities = capabilities if capabilities is not None else [] super().__init__(**kwargs) @@ -51,3 +52,4 @@ class CloudClusterResponse(BaseModel): :return: A human-readable representation of the data in this object. """ return str({k: v for k, v in self.__dict__.items() if k in {"cluster_id", "host_guid", "host_name", "status", "is_online", "host_version", "host_internal_ip", "friendly_name", "printer_type", "printer_count", "capabilities"}}) + diff --git a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py index eb6389910c..4ea73d0ccb 100644 --- a/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py +++ b/plugins/UM3NetworkPrinting/src/Models/Http/CloudClusterWithConfigResponse.py @@ -2,6 +2,8 @@ # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional, List +import uuid + from .CloudClusterResponse import CloudClusterResponse from .ClusterPrinterStatus import ClusterPrinterStatus @@ -11,4 +13,20 @@ class CloudClusterWithConfigResponse(CloudClusterResponse): def __init__(self, **kwargs) -> None: self.configuration = self.parseModel(ClusterPrinterStatus, kwargs.get("host_printer")) + + # Some printers will return a null UUID in the host_printer.uuid field. For those we can fall back using + # the host_guid field of the cluster data + valid_uuid = False + try: + parsed_uuid = uuid.UUID(self.configuration.uuid) + valid_uuid = parsed_uuid.int != 0 + except: + pass + + if not valid_uuid: + try: + self.configuration.uuid = kwargs.get("host_guid") + except: + pass + super().__init__(**kwargs) diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py index 2ef18e76e4..2a57bd0321 100644 --- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py @@ -146,7 +146,12 @@ class LocalClusterOutputDevice(UltimakerNetworkedPrinterOutputDevice): self.writeStarted.emit(self) # Export the scene to the correct file type. - job = ExportFileJob(file_handler=file_handler, nodes=nodes, firmware_version=self.firmwareVersion) + job = ExportFileJob( + file_handler=file_handler, + nodes=nodes, + firmware_version=self.firmwareVersion, + print_type=self.printerType, + ) job.finished.connect(self._onPrintJobCreated) job.start() diff --git a/plugins/USBPrinting/AutoDetectBaudJob.py b/plugins/USBPrinting/AutoDetectBaudJob.py index 5a8e455720..c26e5e8824 100644 --- a/plugins/USBPrinting/AutoDetectBaudJob.py +++ b/plugins/USBPrinting/AutoDetectBaudJob.py @@ -4,9 +4,6 @@ from UM.Job import Job from UM.Logger import Logger -from .avr_isp import ispBase -from .avr_isp.stk500v2 import Stk500v2 - from time import time, sleep from serial import Serial, SerialException diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index 1155420b60..85b98e532b 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -5,9 +5,9 @@ import os from UM.i18n import i18nCatalog from UM.Logger import Logger -from UM.Mesh.MeshWriter import MeshWriter #To get the g-code output. -from UM.Message import Message #Show an error when already printing. -from UM.PluginRegistry import PluginRegistry #To get the g-code output. +from UM.Mesh.MeshWriter import MeshWriter # To get the g-code output. +from UM.Message import Message # Show an error when already printing. +from UM.PluginRegistry import PluginRegistry # To get the g-code output. from UM.Qt.Duration import DurationFormat from cura.CuraApplication import CuraApplication @@ -19,7 +19,7 @@ from cura.PrinterOutput.GenericOutputController import GenericOutputController from .AutoDetectBaudJob import AutoDetectBaudJob from .AvrFirmwareUpdater import AvrFirmwareUpdater -from io import StringIO #To write the g-code output. +from io import StringIO # To write the g-code output. from queue import Queue from serial import Serial, SerialException, SerialTimeoutException from threading import Thread, Event diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py b/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py index ff5c33517d..be6002e269 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/MachineInstance.py @@ -1,16 +1,16 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read config files. -import io #To write config files to strings as if they were files. -import os.path #To get the path to write new user profiles to. +import configparser # To read config files. +import io # To write config files to strings as if they were files. +import os.path # To get the path to write new user profiles to. from typing import Dict, List, Optional, Set, Tuple -import urllib #To serialise the user container file name properly. +import urllib # To serialise the user container file name properly. import urllib.parse -import UM.VersionUpgrade #To indicate that a file is of incorrect format. -import UM.VersionUpgradeManager #To schedule more files to be upgraded. -from UM.Resources import Resources #To get the config storage path. +import UM.VersionUpgrade # To indicate that a file is of incorrect format. +import UM.VersionUpgradeManager # To schedule more files to be upgraded. +from UM.Resources import Resources # To get the config storage path. ## Creates a new machine instance instance by parsing a serialised machine # instance in version 1 of the file format. diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py b/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py index 953837b863..906f868af9 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/Preferences.py @@ -1,11 +1,11 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read config files. -import io #To output config files to string. +import configparser # To read config files. +import io # To output config files to string. from typing import List, Optional, Tuple -import UM.VersionUpgrade #To indicate that a file is of the wrong format. +import UM.VersionUpgrade # To indicate that a file is of the wrong format. ## Creates a new preferences instance by parsing a serialised preferences file # in version 1 of the file format. diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py b/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py index 8419b3beeb..7e5f330a36 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py @@ -1,8 +1,8 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read config files. -import io #To write config files to strings as if they were files. +import configparser # To read config files. +import io # To write config files to strings as if they were files. from typing import Dict, List, Optional, Tuple import UM.VersionUpgrade diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py new file mode 100644 index 0000000000..009e699c68 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/VersionUpgrade56to57.py @@ -0,0 +1,100 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Tuple, List +import io +from UM.VersionUpgrade import VersionUpgrade + +_REMOVED_SETTINGS = { + "support_interface_skip_height", +} +_NEW_SETTING_VERSION = "23" + + +class VersionUpgrade56to57(VersionUpgrade): + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to remove from the visibility list the settings that were removed in this version. + It also changes the preferences to have the new version number. + + This removes any settings that were removed in the new Cura version. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + # Remove deleted settings from the visible settings list. + if "general" in parser and "visible_settings" in parser["general"]: + visible_settings = set(parser["general"]["visible_settings"].split(";")) + for removed in _REMOVED_SETTINGS: + if removed in visible_settings: + visible_settings.remove(removed) + + parser["general"]["visible_settings"] = ";".join(visible_settings) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades instance containers to remove the settings that were removed in this version. + It also changes the instance containers to have the new version number. + + This removes any settings that were removed in the new Cura version and updates settings that need to be updated + with a new value. + + :param serialized: The original contents of the instance container. + :param filename: The original file name of the instance container. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + if "values" in parser: + # Remove deleted settings from the instance containers. + for removed in _REMOVED_SETTINGS: + if removed in parser["values"]: + del parser["values"][removed] + + if "brim_outside_only" in parser["values"]: + parser["values"]["brim_location"] = "outside" if parser["values"][ + "brim_outside_only"] == "True" else "everywhere" + del parser["values"]["brim_outside_only"] + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades stacks to have the new version number. + + :param serialized: The original contents of the stack. + :param filename: The original file name of the stack. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + if "metadata" not in parser: + parser["metadata"] = {} + + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py b/plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py new file mode 100644 index 0000000000..62e72c8da4 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade56to57 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade56to57.VersionUpgrade56to57() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000022): ("preferences", 7000023, upgrade.upgradePreferences), + ("machine_stack", 6000022): ("machine_stack", 6000023, upgrade.upgradeStack), + ("extruder_train", 6000022): ("extruder_train", 6000023, upgrade.upgradeStack), + ("definition_changes", 4000022): ("definition_changes", 4000023, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000022): ("quality_changes", 4000023, upgrade.upgradeInstanceContainer), + ("quality", 4000022): ("quality", 4000023, upgrade.upgradeInstanceContainer), + ("user", 4000022): ("user", 4000023, upgrade.upgradeInstanceContainer), + ("intent", 4000022): ("intent", 4000023, upgrade.upgradeInstanceContainer), + }, + "sources": { + "preferences": { + "get_version": upgrade.getCfgVersion, + "location": {"."} + }, + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json b/plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json new file mode 100644 index 0000000000..1752d64aa0 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade56to57/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.6 to 5.7", + "author": "UltiMaker", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.6 to Cura 5.7.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/plugins/XRayView/XRayView.py b/plugins/XRayView/XRayView.py index 5af7b17652..b27e615e56 100644 --- a/plugins/XRayView/XRayView.py +++ b/plugins/XRayView/XRayView.py @@ -7,7 +7,6 @@ from PyQt6.QtGui import QOpenGLContext, QImage from UM.Application import Application from UM.Logger import Logger from UM.Math.Color import Color -from UM.PluginRegistry import PluginRegistry from UM.Resources import Resources from UM.Platform import Platform from UM.Event import Event diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 490d704d19..98c0f95e10 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -3,9 +3,9 @@ import copy import io -import json #To parse the product-to-id mapping file. -import os.path #To find the product-to-id mapping. -from typing import Any, Dict, List, Optional, Tuple, cast, Set, Union +import json # To parse the product-to-id mapping file. +import os.path # To find the product-to-id mapping. +from typing import Any, Dict, List, Optional, Tuple, cast, Set import xml.etree.ElementTree as ET from UM.PluginRegistry import PluginRegistry @@ -579,8 +579,9 @@ class XmlMaterialProfile(InstanceContainer): meta_data[tag_name] = entry.text - if tag_name in self.__material_metadata_setting_map: - common_setting_values[self.__material_metadata_setting_map[tag_name]] = entry.text + for tag_name, value in meta_data.items(): + if tag_name in self.__material_metadata_setting_map: + common_setting_values[self.__material_metadata_setting_map[tag_name]] = value if "description" not in meta_data: meta_data["description"] = "" @@ -1222,7 +1223,9 @@ class XmlMaterialProfile(InstanceContainer): "diameter": "material_diameter" } __material_metadata_setting_map = { - "GUID": "material_guid" + "GUID": "material_guid", + "material": "material_type", + "brand": "material_brand", } # Map of recognised namespaces with a proper prefix. diff --git a/plugins/XmlMaterialProfile/product_to_id.json b/plugins/XmlMaterialProfile/product_to_id.json index 7f37a2e2b4..e99ead0985 100644 --- a/plugins/XmlMaterialProfile/product_to_id.json +++ b/plugins/XmlMaterialProfile/product_to_id.json @@ -6,6 +6,7 @@ "Ultimaker #+": "ultimaker#_plus", "Ultimaker #+ Connect": "ultimaker#_plus_connect", "Ultimaker S#": "ultimaker_s#", + "Ultimaker Factor #": "ultimaker_factor#", "Ultimaker Original": "ultimaker_original", "Ultimaker Original+": "ultimaker_original_plus", "Ultimaker Original Dual Extrusion": "ultimaker_original_dual", @@ -13,5 +14,10 @@ "DUAL600": "strateo3d", "IDEX420": "strateo3d_IDEX420", "IDEX420 Duplicate": "strateo3d_IDEX420_duplicate", - "IDEX420 Mirror": "strateo3d_IDEX420_mirror" -} + "IDEX420 Mirror": "strateo3d_IDEX420_mirror", + "UltiMaker Method": "ultimaker_method", + "UltiMaker Method X": "ultimaker_methodx", + "UltiMaker Method XL": "ultimaker_methodxl", + "UltiMaker Sketch": "ultimaker_sketch", + "UltiMaker Sketch Large": "ultimaker_sketch_large" +} \ No newline at end of file diff --git a/printer-linter/pyproject.toml b/printer-linter/pyproject.toml index c346dc0496..cde196225c 100644 --- a/printer-linter/pyproject.toml +++ b/printer-linter/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "printerlinter" description = "Cura UltiMaker printer linting tool" -version = "0.1.1" +version = "0.1.2" authors = [ { name = "UltiMaker", email = "cura@ultimaker.com" } ] diff --git a/printer-linter/src/printerlinter/diagnostic.py b/printer-linter/src/printerlinter/diagnostic.py index 27f4fdd14a..1ef8bef638 100644 --- a/printer-linter/src/printerlinter/diagnostic.py +++ b/printer-linter/src/printerlinter/diagnostic.py @@ -32,3 +32,13 @@ class Diagnostic: }, "Level": self.level } + +class GitComment: + def __init__(self, comment: str) -> None: + """ + @param comment: The comment text. + """ + self.comment = comment + + def toDict(self) -> Dict[str, Any]: + return self.comment \ No newline at end of file diff --git a/printer-linter/src/printerlinter/factory.py b/printer-linter/src/printerlinter/factory.py index 4473fb9a4e..37a11d471a 100644 --- a/printer-linter/src/printerlinter/factory.py +++ b/printer-linter/src/printerlinter/factory.py @@ -6,20 +6,21 @@ from .linters.defintion import Definition from .linters.linter import Linter from .linters.meshes import Meshes from .linters.directory import Directory +from .linters.formulas import Formulas def getLinter(file: Path, settings: dict) -> Optional[List[Linter]]: """ Returns a Linter depending on the file format """ if not file.exists(): - return None + return [Directory(file, settings)] if ".inst" in file.suffixes and ".cfg" in file.suffixes: - return [Directory(file, settings), Profile(file, settings)] + return [Directory(file, settings), Profile(file, settings), Formulas(file, settings)] if ".def" in file.suffixes and ".json" in file.suffixes: if file.stem in ("fdmprinter.def", "fdmextruder.def"): - return None - return [Directory(file, settings), Definition(file, settings)] + return [Formulas(file, settings)] + return [Directory(file, settings), Definition(file, settings), Formulas(file, settings)] if file.parent.stem == "meshes": return [Meshes(file, settings)] diff --git a/printer-linter/src/printerlinter/linters/defintion.py b/printer-linter/src/printerlinter/linters/defintion.py index c4e955a2a5..2d68e20db9 100644 --- a/printer-linter/src/printerlinter/linters/defintion.py +++ b/printer-linter/src/printerlinter/linters/defintion.py @@ -28,6 +28,10 @@ class Definition(Linter): for check in self.checkRedefineOverride(): yield check + if self._settings["checks"].get("diagnostic-material-temperature-defined", False): + for check in self.checkMaterialTemperature(): + yield check + # Add other which will yield Diagnostic's # TODO: A check to determine if the user set value is with the min and max value defined in the parent and doesn't trigger a warning # TODO: A check if the key exist in the first place @@ -41,7 +45,7 @@ class Definition(Linter): definition = self._definitions[definition_name] if "overrides" in definition and definition_name not in ("fdmprinter", "fdmextruder"): for key, value_dict in definition["overrides"].items(): - is_redefined, child_key, child_value, parent = self._isDefinedInParent(key, value_dict, definition['inherits']) + is_redefined, child_key, child_value, parent, inherited_by= self._isDefinedInParent(key, value_dict, definition['inherits']) if is_redefined: redefined = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?') found = redefined.search(self._content) @@ -59,12 +63,40 @@ class Definition(Linter): yield Diagnostic( file = self._file, diagnostic_name = "diagnostic-definition-redundant-override", - message = f"Overriding {key} with the same value ({child_key}: {child_value}) as defined in parent definition: {definition['inherits']}", + message = f"Overriding {key} with the same value ({child_key}: {child_value}) as defined in parent definition: {inherited_by}", level = "Warning", offset = found.span(0)[0], replacements = replacements ) + def checkMaterialTemperature(self) -> Iterator[Diagnostic]: + """Checks if definition file has material tremperature defined within them""" + definition_name = list(self._definitions.keys())[0] + definition = self._definitions[definition_name] + if "overrides" in definition and definition_name not in ("fdmprinter", "fdmextruder"): + for key, value_dict in definition["overrides"].items(): + if "temperature" in key and "material" in key: + + redefined = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?') + found = redefined.search(self._content) + if len(found.group().splitlines()) > 1: + replacements = [] + else: + replacements = [Replacement( + file=self._file, + offset=found.span(1)[0], + length=len(found.group()), + replacement_text="")] + + yield Diagnostic( + file=self._file, + diagnostic_name="diagnostic-material-temperature-defined", + message=f"Overriding {key} as it belongs to material temperature catagory and shouldn't be placed in machine definitions", + level="Warning", + offset=found.span(0)[0], + replacements=replacements + ) + def _loadDefinitionFiles(self, definition_file) -> None: """ Loads definition file contents into self._definitions. Also load parent definition if it exists. """ definition_name = Path(definition_file.stem).stem @@ -85,7 +117,7 @@ class Definition(Linter): def _isDefinedInParent(self, key, value_dict, inherits_from): if self._ignore(key, "diagnostic-definition-redundant-override"): - return False, None, None, None + return False, None, None, None, None if "overrides" not in self._definitions[inherits_from]: return self._isDefinedInParent(key, value_dict, self._definitions[inherits_from]["inherits"]) @@ -114,11 +146,11 @@ class Definition(Linter): v = child_value cv = check_value if v == cv: - return True, child_key, child_value, parent + return True, child_key, child_value, parent, inherits_from if "inherits" in parent: return self._isDefinedInParent(key, value_dict, parent["inherits"]) - return False, None, None, None + return False, None, None, None, None def _loadBasePrinterSettings(self): settings = {} diff --git a/printer-linter/src/printerlinter/linters/directory.py b/printer-linter/src/printerlinter/linters/directory.py index 4ca299dad7..e77cac96b9 100644 --- a/printer-linter/src/printerlinter/linters/directory.py +++ b/printer-linter/src/printerlinter/linters/directory.py @@ -1,7 +1,7 @@ from pathlib import Path from typing import Iterator -from ..diagnostic import Diagnostic +from ..diagnostic import Diagnostic, GitComment from .linter import Linter @@ -11,9 +11,12 @@ class Directory(Linter): super().__init__(file, settings) def check(self) -> Iterator[Diagnostic]: - if self._settings["checks"].get("diagnostic-resources-macos-app-directory-name", False): + if self._file.exists() and self._settings["checks"].get("diagnostic-resources-macos-app-directory-name", False): for check in self.checkForDotInDirName(): yield check + elif self._settings["checks"].get("diagnostic-resource-file-deleted", False): + for check in self.checkFilesDeleted(): + yield check yield @@ -29,3 +32,8 @@ class Directory(Linter): ) yield + def checkFilesDeleted(self) -> Iterator[GitComment]: + if not self._file.exists(): + """ Check if there is a file that is deleted, this causes upgrade scripts to not work properly """ + yield GitComment( f'File: **{self._file}** must not be deleted as it is not allowed. It will create issues upgrading Cura' ) + yield \ No newline at end of file diff --git a/printer-linter/src/printerlinter/linters/formulas.py b/printer-linter/src/printerlinter/linters/formulas.py new file mode 100644 index 0000000000..ad5b7ee943 --- /dev/null +++ b/printer-linter/src/printerlinter/linters/formulas.py @@ -0,0 +1,177 @@ +import difflib +import json +import os +import re +from configparser import ConfigParser +from pathlib import Path +from typing import Iterator + +from ..diagnostic import Diagnostic +from ..replacement import Replacement +from .linter import Linter + +FORMULA_NAMES = [ + "extruderValue", + "extruderValues", + "anyExtruderWithMaterial", + "anyExtruderNrWithOrDefault", + "resolveOrValue", + "defaultExtruderPosition", + "valueFromContainer", + "extruderValueFromContainer", + "math", + "round", + "max", + "ceil", + "min", + "sqrt", + "log", + "tan", + "cos", + "sin", + "atan", + "acos", + "asin", + "floor", + "sum", + "len", + "radians", + "degrees" +] + +DELIMITERS = [r'\+', '-', '=', '/', '\*', r'\(', r'\)', r'\[', r'\]', '{', '}', ' ', '^'] + + +class Formulas(Linter): + """Finds Typos in the definition files and their formulas.""" + + def __init__(self, file: Path, settings: dict) -> None: + super().__init__(file, settings) + self._cura_correction_strings = FORMULA_NAMES + list(self.getCuraSettingList()) + self._definition = {} + + def getCuraSettingList(self) -> list: + with open(os.path.join(os.path.dirname(__file__), "..", "..", "..", "..", "resources", "definitions", "fdmprinter.def.json")) as data: + json_data = json.load(data) + return self.extractKeys(json_data) + + def extractKeys(self, json_obj, parent_key=''): + keys_with_value = [] + for key, values in json_obj.items(): + new_key = key + if isinstance(values, dict): + if 'label' in values: + keys_with_value.append(new_key) + keys_with_value.extend(self.extractKeys(values, new_key)) + return keys_with_value + + def check(self) -> Iterator[Diagnostic]: + if self._settings["checks"].get("diagnostic-incorrect-formula", False): + for check in self.checkFormulas(): + yield check + yield + + def checkFormulas(self) -> Iterator[Diagnostic]: + + self._loadDefinitionFiles(self._file) + self._content = self._file.read_text() + definition_name = list(self._definition.keys())[0] + definition = self._definition[definition_name] + if "overrides" in definition: + for key, value_dict in definition["overrides"].items(): + for value in value_dict: + if value in ("enable", "resolve", "value", "minimum_value_warning", "maximum_value_warning", + "maximum_value", "minimum_value"): + key_incorrect = self.checkValueIncorrect(key) + if key_incorrect: + found = self._appendCorrections(key, key) + value_incorrect = self.checkValueIncorrect(value_dict[value]) + if value_incorrect: + found = self._appendCorrections(key, value_dict[value]) + if key_incorrect or value_incorrect: + + if len(found.group().splitlines()) > 1: + replacements = [] + else: + replacements = [Replacement( + file=self._file, + offset=found.span(1)[0], + length=len(found.group()), + replacement_text=self._replacement_text)] + yield Diagnostic( + file=self._file, + diagnostic_name="diagnostic-incorrect-formula", + message=f"Given formula {found.group()} seems incorrect, Do you mean {self._correct_formula}? please correct the formula and try again.", + level="Error", + offset=found.span(0)[0], + replacements=replacements + ) + + yield + + def _appendCorrections(self, key, incorrectString): + + if self._file.suffix == '.cfg': + key_with_incorrectValue = re.compile(r'(\b' + key + r'\b\s*=\s*[^=\n]+.*)') + else: + key_with_incorrectValue = re.compile(r'.*(\"' + key + r'\"[\s\:\S]*?)\{[\s\S]*?\},?') + found = key_with_incorrectValue.search(self._content) + if len(found.group().splitlines()) > 1: + self._replacement_text = '' + else: + self._replacement_text = found.group().replace(incorrectString, self._correct_formula).strip(' ') + return found + + + def _loadDefinitionFiles(self, definition_file) -> None: + """ Loads definition file contents into self._definition. Also load parent definition if it exists. """ + definition_name = Path(definition_file.stem).stem + + if not definition_file.exists() or definition_name in self._definition: + return + + if definition_file.suffix == ".json": + # Load definition file into dictionary + self._definition[definition_name] = json.loads(definition_file.read_text()) + + if definition_file.suffix == ".cfg": + self._definition[definition_name] = self._parseCfg(definition_file) + + + def _parseCfg(self, file_path:Path) -> dict: + config = ConfigParser() + config.read([file_path]) + file_data ={} + overrides = {} + + available_sections = ["values"] + for section in available_sections: + options = config.options(section) + for option in options: + values ={} + values["value"] = config.get(section, option) + overrides[option] = values + file_data["overrides"]= overrides# Process the value here + + return file_data + + def checkValueIncorrect(self, formula) -> bool: + if isinstance(formula, str): + self._correct_formula = self._correctTyposInFormula(formula) + return self._correct_formula != formula + else: + return False + + def _correctTyposInFormula(self, formula): + pattern = '|'.join(DELIMITERS) + tokens = re.split(pattern, formula) + + output = formula + for token in tokens: + if '(' not in token and ')' not in token: + cleaned_token = re.sub(r'[^\w\s]', '', token) + possible_matches = difflib.get_close_matches(cleaned_token, self._cura_correction_strings, n=1, cutoff=0.8) + if possible_matches: + output = output.replace(cleaned_token, possible_matches[0]) + return output + diff --git a/printer-linter/src/printerlinter/linters/profile.py b/printer-linter/src/printerlinter/linters/profile.py index 85cc2d9f0b..4ca3ded964 100644 --- a/printer-linter/src/printerlinter/linters/profile.py +++ b/printer-linter/src/printerlinter/linters/profile.py @@ -1,9 +1,42 @@ -from typing import Iterator +import re +from typing import Iterator, Tuple from ..diagnostic import Diagnostic from .linter import Linter - +from pathlib import Path +from configparser import ConfigParser class Profile(Linter): + MAX_SIZE_OF_NAME = 20 + def __init__(self, file: Path, settings: dict) -> None: + """ Finds issues in the parent directory""" + super().__init__(file, settings) + self._content = self._file.read_text() + + def check(self) -> Iterator[Diagnostic]: - yield + if self._file.exists() and self._settings["checks"].get("diagnostic-long-profile-names", False): + for check in self.checklengthofProfileName(): + yield check + + + def checklengthofProfileName(self) -> Iterator[Diagnostic]: + + """ check the name of profile and where it is found""" + name_of_profile, found = self._getprofileName() + if len(name_of_profile) > Profile.MAX_SIZE_OF_NAME: + yield Diagnostic( + file=self._file, + diagnostic_name="diagnostic-long-profile-names", + message = f"The profile name **{name_of_profile}** exceeds the maximum length limit. For optimal results, please limit it to 20 characters or fewer.", + level="Warning", + offset = found.span(0)[0] + ) + + def _getprofileName(self) -> Tuple[str, bool]: + config = ConfigParser() + config.read([self._file]) + name_of_profile = config.get("general", "name") + redefined = re.compile(name_of_profile) + found = redefined.search(self._content) + return name_of_profile, found diff --git a/printer-linter/src/terminal.py b/printer-linter/src/terminal.py index fb5ee36bd0..d93372571f 100644 --- a/printer-linter/src/terminal.py +++ b/printer-linter/src/terminal.py @@ -19,6 +19,7 @@ def main() -> None: parser.add_argument("--report", required=False, type=Path, help="Path where the diagnostic report should be stored") parser.add_argument("--format", action="store_true", help="Format the files") parser.add_argument("--diagnose", action="store_true", help="Diagnose the files") + parser.add_argument("--deleted", action="store_true", help="Check for deleted files") parser.add_argument("--fix", action="store_true", help="Attempt to apply the suggested fixes on the files") parser.add_argument("Files", metavar="F", type=Path, nargs="+", help="Files or directories to format") @@ -41,12 +42,26 @@ def main() -> None: settings = yaml.load(f, yaml.FullLoader) full_body_check = {"Diagnostics": []} + comments_check = {"Error Files": []} for file in files: if not path.exists(file): print(f"Can't find the file: {file}") return + if args.deleted: + for file in args.Files: + if file not in files: + deletedFiles = diagnoseIssuesWithFile(file, settings) + comments_check["Error Files"].extend([d.toDict() for d in deletedFiles]) + + results = yaml.dump(comments_check, default_flow_style=False, indent=4, width=240) + + if report: + report.write_text(results) + else: + print(results) + if to_fix or to_diagnose: for file in files: diagnostics = diagnoseIssuesWithFile(file, settings) @@ -82,7 +97,6 @@ def diagnoseIssuesWithFile(file: Path, settings: dict) -> List[Diagnostic]: return linter_results - def applyFixesToFile(file, settings, full_body_check) -> None: if not file.exists(): return diff --git a/requirements-dev.txt b/requirements-dev.txt index a1b191009a..162b33bf15 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ pytest -pyinstaller==5.8.0 +pyinstaller==6.3.0 pyinstaller-hooks-contrib pyyaml sip==6.5.1 diff --git a/requirements.txt b/requirements.txt index f14d389b27..3024096234 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,41 +1,47 @@ ### Direct requirements for Uranium and libCharon ### -PyQt6-sip==13.4.1 \ - --hash=sha256:0df998f2b6ceeacfd10de773441572e215be0c9cae566cc7dd36e231bf714a12 \ - --hash=sha256:224575e84805c4317bacd5d1b8e93e0ad5c48685dadbbe1e902d4ebe16f22828 \ - --hash=sha256:36ae29cdc223cacc1257d0f5075cf81474550c6d26b728f922487a2aa935f130 \ - --hash=sha256:3a674c591d4274d4ea8127205290e927a7dab0eb87a0038d4f4ea1d430782649 \ - --hash=sha256:3ef9392e4ae29d393b79237d85840cdc6b8831f36eed5d56c7d9b329b380cc8d \ - --hash=sha256:43935873d60f57719632840d517afee04ef8f30e92cfe0dadc7e6326691920fc \ - --hash=sha256:5731f22618435654352ef07684549a17be82b75254227fc80b4b5b0b59fc6656 \ - --hash=sha256:5bc4beb6fb1de4c9ba8beee7b1a4a813fa888c3b095206dafcd25d7e6e4ed2a7 \ - --hash=sha256:5c36ab984402e96792eebf4b031abfaa589aa20af3190a79c54502c16964d97e \ - --hash=sha256:a2a0461992c6657f343308b150c4d6b57e9e7a0e5c2f79538434e7fb869ea827 \ - --hash=sha256:a81490ee84d7a41a126b116081bd97d758f41bf706aee0a8cec24d6e4c660184 \ - --hash=sha256:e00e287ea05bbc293fc6e2198301962af9b7b622bd2daf4288f925a88ae35dc9 \ - --hash=sha256:e670a7b2fb7e32204ce67d274017bfff3e21139d217d60cebbfcb75b019c91ee \ - --hash=sha256:ee06f255787a0b4957f357f93b78d2a11ca3761916833e3afa83f1381d4d1a46 \ - --hash=sha256:fbee0d554e0e98f56dbf6d94b00a28cc32425938ad7ae98fd91f8822c5b24d45 \ - --hash=sha256:fcc6d78314783f4a193f02353f431b7ea4d357f47c3c7a7d0740e723f69c64dc -PyQt6==6.4.2 \ - --hash=sha256:18d1daf98d9236d55102cdadafd1056f5802f3c9288fcf7238569937b71a89f0 \ - --hash=sha256:25bd399b4a95dce65d5f937c1aa85d3c7e14a21745ae2a4ca14c0116cd104290 \ - --hash=sha256:740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d \ - --hash=sha256:c128bc0f17833e324593e3db83e99470d451a197dd17ff0333927b946c935bd9 -PyQt6-Qt6==6.4.2 \ - --hash=sha256:9f07c3c100cb46cca4074965e7494d4df4f0fc016497d5303c1fe135822876e1 \ - --hash=sha256:a29b8c858babd523e80c8db5f8fd19792641588ec04eab49af18b7a4423eb99f \ - --hash=sha256:c0e91d0275d428496cacff717a9b719c52bfa52b21f124d638b79cc2217bc81e \ - --hash=sha256:d19c4e72615762cd6f0b043f23fa5f0b02656091427ce6de1efccd58e10e6a53 -PyQt6-NetworkAuth==6.4.0 \ - --hash=sha256:ab6178b3b2902ae9939a148555cfcee8c7803d6b0d5924cd1bd8f3407b8b9210 \ - --hash=sha256:c16ec80232d88024b60d04386a23cc93067e5644a65f47f26ffb13d84dcd4a6d \ - --hash=sha256:c302cd0d838c7229eda5e26e0b1b3d3ec4f8720f8d9379472bce5a89ff0735c2 \ - --hash=sha256:d948fc0cf43b64afbda2acb5bf2392f785a1e7a2950d79ea850c1a3f4ae12f1a -PyQt6-NetworkAuth-Qt6==6.4.2 \ - --hash=sha256:179094bcb4d4d056316c22d3d067cd94d4591da23f804461bfb025ccfa29b2b4 \ - --hash=sha256:1de6abbb5fa6585b97ae49d3f64b0dfad40bd56b1a31744d9775ff26247241c8 \ - --hash=sha256:79ec4b0fc9450bbedbff03541b93b10d1c7e761cd2cc16ce70d2b09dcdf8c720 \ - --hash=sha256:d96d557fe61edb9b68d189f270f0393d6579c8d308e6b0d41bc0699371d7cb4e +PyQt6-sip==13.6.0 \ + --hash=sha256:0dfd22cfedd87e96f9d51e0778ca2ba3dc0be83e424e9e0f98f6994d8d9c90f0 \ + --hash=sha256:13885361ca2cb2f5085d50359ba61b3fabd41b139fb58f37332acbe631ef2357 \ + --hash=sha256:24441032a29791e82beb7dfd76878339058def0e97fdb7c1cea517f3a0e6e96b \ + --hash=sha256:2486e1588071943d4f6657ba09096dc9fffd2322ad2c30041e78ea3f037b5778 \ + --hash=sha256:3075d8b325382750829e6cde6971c943352309d35768a4d4da0587459606d562 \ + --hash=sha256:33ea771fe777eb0d1a2c3ef35bcc3f7a286eb3ff09cd5b2fdd3d87d1f392d7e8 \ + --hash=sha256:39854dba35f8e5a4288da26ecb5f40b4c5ec1932efffb3f49d5ea435a7f37fb3 \ + --hash=sha256:3bf03e130fbfd75c9c06e687b86ba375410c7a9e835e4e03285889e61dd4b0c4 \ + --hash=sha256:43fb8551796030aae3d66d6e35e277494071ec6172cd182c9569ab7db268a2f5 \ + --hash=sha256:58f68a48400e0b3d1ccb18090090299bad26e3aed7ccb7057c65887b79b8aeea \ + --hash=sha256:5b9c6b6f9cfccb48cbb78a59603145a698fb4ffd176764d7083e5bf47631d8df \ + --hash=sha256:747f6ca44af81777a2c696bd501bc4815a53ec6fc94d4e25830e10bc1391f8ab \ + --hash=sha256:86a7b67c64436e32bffa9c28c9f21bf14a9faa54991520b12c3f6f435f24df7f \ + --hash=sha256:8c282062125eea5baf830c6998587d98c50be7c3a817a057fb95fef647184012 \ + --hash=sha256:8f9df9f7ccd8a9f0f1d36948c686f03ce1a1281543a3e636b7b7d5e086e1a436 \ + --hash=sha256:98bf954103b087162fa63b3a78f30b0b63da22fd6450b610ec1b851dbb798228 \ + --hash=sha256:9adf672f9114687533a74d5c2d4c03a9a929ad5ad9c3e88098a7da1a440ab916 \ + --hash=sha256:a6ce80bc24618d8a41be8ca51ad9f10e8bc4296dd90ab2809573df30a23ae0e5 \ + --hash=sha256:d6b5f699aaed0ac1fcd23e8fbca70d8a77965831b7c1ce474b81b1678817a49d \ + --hash=sha256:fa759b6339ff7e25f9afe2a6b651b775f0a36bcb3f5fa85e81a90d3b033c83f4 \ + --hash=sha256:fa7b10af7488efc5e53b41dd42c0f421bde6c2865a107af7ae259aff9d841da9 +PyQt6==6.6.0 \ + --hash=sha256:33655db05ac2de699320f035250c21434c77144a6a2943aca3f4c579dabc3f7b \ + --hash=sha256:3ef68830a9b32050c30f7962c56a5927802c9193b68eaf405faecb8ce9ae10a8 \ + --hash=sha256:d41512d66044c2df9c5f515a56a922170d68a37b3406ffddc8b4adc57181b576 \ + --hash=sha256:fc7185d65755f26d7a6842492ec5398c92544dc4eafbbcbef1b1922aca585c96 +PyQt6-Qt6==6.6.0 \ + --hash=sha256:1b079a33088d32ff47872cdb37fd15aa42101f0be46c3340244483849b781438 \ + --hash=sha256:8cb30d64a4d32465ea1686bc827cbe452225fb387c4873356b0fa7b9ae63534f \ + --hash=sha256:a151f34712cd645111e89cb30b02e5fb69c9dcc3603ab3c03a561e874bd7cbcf \ + --hash=sha256:e5483ae04bf107411c7469f1be9f9e2eb9840303e788b3ac524fe30af90d45f4 +PyQt6-NetworkAuth==6.6.0 \ + --hash=sha256:7b90b81792fe53105287c8cbb5e4b22bc44a482268ffb7d3e33f852807f86182 \ + --hash=sha256:c7e2335159aa795e2fe6fb069ccce6308672ab80f26c50fab57caf957371cbb5 \ + --hash=sha256:cdfc0bfaea16a9e09f075bdafefb996aa9fdec392052ba4fb3cbac233c1958fb \ + --hash=sha256:f60ff9a62f5129dc2a9d4c495fb47f9a03e4dfb666b50fb7d61f46e89bf7b6a2 +PyQt6-NetworkAuth-Qt6==6.6.0 \ + --hash=sha256:481d9093e1fb1ac6843d8beabcd359cc34b74b9a2cbb3e2b68d96bd3f178d4e0 \ + --hash=sha256:4cc48fd375730a0ba5fbed9d64abb2914f587377560a78a63aff893f9e276a45 \ + --hash=sha256:5006deabf55304d4a3e0b3c954f93e5835546b11e789d14653a2493d12d3a063 \ + --hash=sha256:bcd56bfc892fec961c51eba3c0bf32ba8317a762d9e254d3830569611ed569d6 + certifi==2023.5.7; \ --hash=sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716 cryptography==41.0.1 \ diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index b9667eea13..8eac12a548 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -6,7 +6,7 @@ "display_name": "3MF Reader", "description": "Provides support for reading 3MF files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -23,7 +23,7 @@ "display_name": "3MF Writer", "description": "Provides support for writing 3MF files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -40,7 +40,7 @@ "display_name": "AMF Reader", "description": "Provides support for reading AMF files.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -57,7 +57,7 @@ "display_name": "Cura Backups", "description": "Backup and restore your configuration.", "package_version": "1.2.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -74,7 +74,7 @@ "display_name": "CuraEngine Backend", "description": "Provides the link to the CuraEngine slicing backend.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -91,7 +91,7 @@ "display_name": "Cura Profile Reader", "description": "Provides support for importing Cura profiles.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -108,7 +108,7 @@ "display_name": "Cura Profile Writer", "description": "Provides support for exporting Cura profiles.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -125,7 +125,7 @@ "display_name": "Ultimaker Digital Library", "description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.", "package_version": "1.1.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -142,7 +142,7 @@ "display_name": "Firmware Update Checker", "description": "Checks for firmware updates.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -159,7 +159,7 @@ "display_name": "Firmware Updater", "description": "Provides a machine actions for updating firmware.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -176,7 +176,7 @@ "display_name": "Compressed G-code Reader", "description": "Reads g-code from a compressed archive.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -193,7 +193,7 @@ "display_name": "Compressed G-code Writer", "description": "Writes g-code to a compressed archive.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -210,7 +210,7 @@ "display_name": "G-Code Profile Reader", "description": "Provides support for importing profiles from g-code files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -227,7 +227,7 @@ "display_name": "G-Code Reader", "description": "Allows loading and displaying G-code files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "VictorLarchenko", @@ -244,7 +244,7 @@ "display_name": "G-Code Writer", "description": "Writes g-code to a file.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -261,7 +261,7 @@ "display_name": "Image Reader", "description": "Enables ability to generate printable geometry from 2D image files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -278,7 +278,7 @@ "display_name": "Legacy Cura Profile Reader", "description": "Provides support for importing profiles from legacy Cura versions.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -295,7 +295,7 @@ "display_name": "Machine Settings Action", "description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -305,6 +305,23 @@ } } }, + "MakerbotWriter": { + "package_info": { + "package_id": "MakerbotWriter", + "package_type": "plugin", + "display_name": "Makerbot Printfile Writer", + "description": "Provides support for writing MakerBot Format Packages.", + "package_version": "1.0.1", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "plugins@ultimaker.com", + "website": "https://ultimaker.com" + } + } + }, "ModelChecker": { "package_info": { "package_id": "ModelChecker", @@ -312,7 +329,7 @@ "display_name": "Model Checker", "description": "Checks models and print configuration for possible printing issues and give suggestions.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -329,7 +346,7 @@ "display_name": "Monitor Stage", "description": "Provides a monitor stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -346,7 +363,7 @@ "display_name": "Per-Object Settings Tool", "description": "Provides the per-model settings.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -363,7 +380,7 @@ "display_name": "Post Processing", "description": "Extension that allows for user created scripts for post processing.", "package_version": "2.2.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -380,7 +397,7 @@ "display_name": "Prepare Stage", "description": "Provides a prepare stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -397,7 +414,7 @@ "display_name": "Preview Stage", "description": "Provides a preview stage in Cura.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -414,7 +431,7 @@ "display_name": "Removable Drive Output Device", "description": "Provides removable drive hotplugging and writing support.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -431,7 +448,7 @@ "display_name": "Sentry Logger", "description": "Logs certain events so that they can be used by the crash reporter", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -448,7 +465,7 @@ "display_name": "Simulation View", "description": "Provides the Simulation view.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -465,7 +482,7 @@ "display_name": "Slice Info", "description": "Submits anonymous slice info. Can be disabled through preferences.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -482,7 +499,7 @@ "display_name": "Solid View", "description": "Provides a normal solid mesh view.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -499,7 +516,7 @@ "display_name": "Support Eraser Tool", "description": "Creates an eraser mesh to block the printing of support in certain places.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -516,7 +533,7 @@ "display_name": "Trimesh Reader", "description": "Provides support for reading model files.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -533,7 +550,7 @@ "display_name": "Marketplace", "description": "Find, manage and install new Cura packages.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -550,7 +567,7 @@ "display_name": "UFP Reader", "description": "Provides support for reading Ultimaker Format Packages.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -567,7 +584,7 @@ "display_name": "UFP Writer", "description": "Provides support for writing Ultimaker Format Packages.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -584,7 +601,7 @@ "display_name": "Ultimaker Machine Actions", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -601,7 +618,7 @@ "display_name": "UM3 Network Printing", "description": "Manages network connections to Ultimaker 3 printers.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -618,7 +635,7 @@ "display_name": "USB Printing", "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "package_version": "1.0.2", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -635,7 +652,7 @@ "display_name": "Version Upgrade 2.1 to 2.2", "description": "Upgrades configurations from Cura 2.1 to Cura 2.2.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -652,7 +669,7 @@ "display_name": "Version Upgrade 2.2 to 2.4", "description": "Upgrades configurations from Cura 2.2 to Cura 2.4.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -669,7 +686,7 @@ "display_name": "Version Upgrade 2.5 to 2.6", "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -686,7 +703,7 @@ "display_name": "Version Upgrade 2.6 to 2.7", "description": "Upgrades configurations from Cura 2.6 to Cura 2.7.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -703,7 +720,7 @@ "display_name": "Version Upgrade 2.7 to 3.0", "description": "Upgrades configurations from Cura 2.7 to Cura 3.0.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -720,7 +737,7 @@ "display_name": "Version Upgrade 3.0 to 3.1", "description": "Upgrades configurations from Cura 3.0 to Cura 3.1.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -737,7 +754,7 @@ "display_name": "Version Upgrade 3.2 to 3.3", "description": "Upgrades configurations from Cura 3.2 to Cura 3.3.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -754,7 +771,7 @@ "display_name": "Version Upgrade 3.3 to 3.4", "description": "Upgrades configurations from Cura 3.3 to Cura 3.4.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -771,7 +788,7 @@ "display_name": "Version Upgrade 3.4 to 3.5", "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -788,7 +805,7 @@ "display_name": "Version Upgrade 3.5 to 4.0", "description": "Upgrades configurations from Cura 3.5 to Cura 4.0.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -805,7 +822,7 @@ "display_name": "Version Upgrade 4.0 to 4.1", "description": "Upgrades configurations from Cura 4.0 to Cura 4.1.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -822,7 +839,7 @@ "display_name": "Version Upgrade 4.1 to 4.2", "description": "Upgrades configurations from Cura 4.1 to Cura 4.2.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -839,7 +856,7 @@ "display_name": "Version Upgrade 4.2 to 4.3", "description": "Upgrades configurations from Cura 4.2 to Cura 4.3.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -856,7 +873,7 @@ "display_name": "Version Upgrade 4.3 to 4.4", "description": "Upgrades configurations from Cura 4.3 to Cura 4.4.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -873,7 +890,7 @@ "display_name": "Version Upgrade 4.4 to 4.5", "description": "Upgrades configurations from Cura 4.4 to Cura 4.5.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -890,7 +907,7 @@ "display_name": "Version Upgrade 4.5 to 4.6", "description": "Upgrades configurations from Cura 4.5 to Cura 4.6.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -907,7 +924,7 @@ "display_name": "Version Upgrade 4.6.0 to 4.6.2", "description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -924,7 +941,7 @@ "display_name": "Version Upgrade 4.6.2 to 4.7", "description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -941,7 +958,7 @@ "display_name": "Version Upgrade 4.7.0 to 4.8.0", "description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -958,7 +975,7 @@ "display_name": "Version Upgrade 4.8.0 to 4.9.0", "description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -975,7 +992,7 @@ "display_name": "Version Upgrade 4.9 to 4.10", "description": "Upgrades configurations from Cura 4.9 to Cura 4.10", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -992,7 +1009,7 @@ "display_name": "Version Upgrade 4.11 to 4.12", "description": "Upgrades configurations from Cura 4.11 to Cura 4.12", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "sdk_version_semver": "7.7.0", "website": "https://ultimaker.com", "author": { @@ -1010,7 +1027,7 @@ "display_name": "Version Upgrade 4.13 to 5.0", "description": "Upgrades configurations from Cura 4.13 to Cura 5.0", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1027,7 +1044,7 @@ "display_name": "Version Upgrade 5.2 to 5.3", "description": "Upgrades configurations from Cura 5.2 to Cura 5.3", "package_version": "1.0.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1044,7 +1061,7 @@ "display_name": "X3D Reader", "description": "Provides support for reading X3D files.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "SevaAlekseyev", @@ -1061,7 +1078,7 @@ "display_name": "XML Material Profiles", "description": "Provides capabilities to read and write XML-based material profiles.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1078,7 +1095,7 @@ "display_name": "X-Ray View", "description": "Provides the X-Ray view.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1095,7 +1112,7 @@ "display_name": "Generic ABS", "description": "The generic ABS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1113,7 +1130,7 @@ "display_name": "Generic BAM", "description": "The generic BAM profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1131,7 +1148,7 @@ "display_name": "Generic CFF CPE", "description": "The generic CFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1149,7 +1166,7 @@ "display_name": "Generic CFF PA", "description": "The generic CFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1167,7 +1184,7 @@ "display_name": "Generic CPE", "description": "The generic CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1185,7 +1202,7 @@ "display_name": "Generic CPE+", "description": "The generic CPE+ profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1203,7 +1220,7 @@ "display_name": "Generic GFF CPE", "description": "The generic GFF CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1221,7 +1238,7 @@ "display_name": "Generic GFF PA", "description": "The generic GFF PA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1239,7 +1256,7 @@ "display_name": "Generic HIPS", "description": "The generic HIPS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1257,7 +1274,7 @@ "display_name": "Generic Nylon", "description": "The generic Nylon profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1275,7 +1292,25 @@ "display_name": "Generic PC", "description": "The generic PC profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", + "website": "https://github.com/Ultimaker/fdm_materials", + "author": { + "author_id": "Generic", + "display_name": "Generic", + "email": "materials@ultimaker.com", + "website": "https://github.com/Ultimaker/fdm_materials", + "description": "Professional 3D printing made accessible." + } + } + }, + "GenericPETCF": { + "package_info": { + "package_id": "GenericPETCF", + "package_type": "material", + "display_name": "Generic PETCF", + "description": "The generic PET-CF profile which other profiles can be based upon.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1293,7 +1328,7 @@ "display_name": "Generic PETG", "description": "The generic PETG profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1311,7 +1346,7 @@ "display_name": "Generic PLA", "description": "The generic PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1329,7 +1364,7 @@ "display_name": "Generic PP", "description": "The generic PP profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1347,7 +1382,7 @@ "display_name": "Generic PVA", "description": "The generic PVA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1365,7 +1400,7 @@ "display_name": "Generic Tough PLA", "description": "The generic Tough PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1383,7 +1418,7 @@ "display_name": "Generic TPU", "description": "The generic TPU profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1401,7 +1436,7 @@ "display_name": "Dagoma Chromatik PLA", "description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://dagoma.fr/boutique/filaments.html", "author": { "author_id": "Dagoma", @@ -1418,7 +1453,7 @@ "display_name": "FABtotum ABS", "description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40", "author": { "author_id": "FABtotum", @@ -1435,7 +1470,7 @@ "display_name": "FABtotum Nylon", "description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53", "author": { "author_id": "FABtotum", @@ -1452,7 +1487,7 @@ "display_name": "FABtotum PLA", "description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39", "author": { "author_id": "FABtotum", @@ -1469,7 +1504,7 @@ "display_name": "FABtotum TPU Shore 98A", "description": "", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66", "author": { "author_id": "FABtotum", @@ -1486,7 +1521,7 @@ "display_name": "Fiberlogy HD PLA", "description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/", "author": { "author_id": "Fiberlogy", @@ -1503,7 +1538,7 @@ "display_name": "Filo3D PLA", "description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://dagoma.fr", "author": { "author_id": "Dagoma", @@ -1520,7 +1555,7 @@ "display_name": "IMADE3D JellyBOX PETG", "description": "", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1537,7 +1572,7 @@ "display_name": "IMADE3D JellyBOX PLA", "description": "", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1554,7 +1589,7 @@ "display_name": "Octofiber PLA", "description": "PLA material from Octofiber.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://nl.octofiber.com/3d-printing-filament/pla.html", "author": { "author_id": "Octofiber", @@ -1571,7 +1606,7 @@ "display_name": "PolyFlex™ PLA", "description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polyflex/", "author": { "author_id": "Polymaker", @@ -1588,7 +1623,7 @@ "display_name": "PolyMax™ PLA", "description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polymax/", "author": { "author_id": "Polymaker", @@ -1605,7 +1640,7 @@ "display_name": "PolyPlus™ PLA True Colour", "description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polyplus-true-colour/", "author": { "author_id": "Polymaker", @@ -1622,7 +1657,7 @@ "display_name": "PolyWood™ PLA", "description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.", "package_version": "1.0.1", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "http://www.polymaker.com/shop/polywood/", "author": { "author_id": "Polymaker", @@ -1639,15 +1674,15 @@ "display_name": "Ultimaker ABS", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/abs", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-abs/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines" } } }, @@ -1658,15 +1693,15 @@ "display_name": "Ultimaker Breakaway", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/breakaway", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-breakaway/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-breakaway/printing-guidelines" } } }, @@ -1677,15 +1712,15 @@ "display_name": "Ultimaker CPE", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/abs", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-cpe/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines" } } }, @@ -1696,15 +1731,15 @@ "display_name": "Ultimaker CPE+", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/cpe", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-cpe-plus/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines" } } }, @@ -1715,15 +1750,15 @@ "display_name": "Ultimaker Nylon", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/abs", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-nylon/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-nylon/printing-guidelines" } } }, @@ -1734,15 +1769,53 @@ "display_name": "Ultimaker PC", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/pc", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-pc/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pc/printing-guidelines" + } + } + }, + "UltimakerPETCF": { + "package_info": { + "package_id": "UltimakerPETCF", + "package_type": "material", + "display_name": "Ultimaker PETCF", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-pet-carbon-fiber/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pet-cf/printing-guidelines" + } + } + }, + "UltimakerPETG": { + "package_info": { + "package_id": "UltimakerPETG", + "package_type": "material", + "display_name": "Ultimaker PETG", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-petg/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-petg/printing-guidelines" } } }, @@ -1753,15 +1826,15 @@ "display_name": "Ultimaker PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/abs", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-pla/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines" } } }, @@ -1772,15 +1845,15 @@ "display_name": "Ultimaker PP", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/pp", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-pp/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pp/printing-guidelines" } } }, @@ -1791,34 +1864,15 @@ "display_name": "Ultimaker PVA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/abs", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-pva/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" - } - } - }, - "UltimakerTPU": { - "package_info": { - "package_id": "UltimakerTPU", - "package_type": "material", - "display_name": "Ultimaker TPU 95A", - "description": "Example package for material and quality profiles for Ultimaker materials.", - "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/tpu-95a", - "author": { - "author_id": "UltimakerPackages", - "display_name": "UltiMaker", - "email": "materials@ultimaker.com", - "website": "https://ultimaker.com", - "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-pva/printing-guidelines" } } }, @@ -1829,15 +1883,148 @@ "display_name": "Ultimaker Tough PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "8.5.0", - "website": "https://ultimaker.com/products/materials/tough-pla", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-tough-pla/", "author": { "author_id": "UltimakerPackages", "display_name": "UltiMaker", "email": "materials@ultimaker.com", "website": "https://ultimaker.com", "description": "Professional 3D printing made accessible.", - "support_website": "https://ultimaker.com/en/resources/troubleshooting/materials" + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-tough-pla/printing-guidelines" + } + } + }, + "UltimakerTPU": { + "package_info": { + "package_id": "UltimakerTPU", + "package_type": "material", + "display_name": "Ultimaker TPU 95A", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "1.4.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/s-series-tpu-95a/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/in/cura/materials/ultimaker-tpu-95a/printing-guidelines" + } + } + }, + "ULTIMAKERBASCFMETHOD": { + "package_info": { + "package_id": "ULTIMAKERBASCFMETHOD", + "package_type": "material", + "display_name": "Ultimaker ABS-CF", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-abs-carbon-fiber/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-ABS-CF" + } + } + }, + "ULTIMAKERABSRMETHOD": { + "package_info": { + "package_id": "ULTIMAKERABSRMETHOD", + "package_type": "material", + "display_name": "Ultimaker ABS-R", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-abs-r/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-ABS-R" + } + } + }, + "ULTIMAKERASAMETHOD": { + "package_info": { + "package_id": "ULTIMAKERASAMETHOD", + "package_type": "material", + "display_name": "Ultimaker ASA", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-asa/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-ASA" + } + } + }, + "ULTIMAKERNYLON12CFMETHOD": { + "package_info": { + "package_id": "ULTIMAKERNYLON12CFMETHOD", + "package_type": "material", + "display_name": "Ultimaker Nylon12 Carbon Fiber", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-nylon-12-carbon-fiber/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-Nylon12-CF" + } + } + }, + "ULTIMAKERRAPIDRINSEMETHOD": { + "package_info": { + "package_id": "ULTIMAKERRAPIDRINSEMETHOD", + "package_type": "material", + "display_name": "Ultimaker RapidRinse", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-rapidrinse/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-RapidRinse" + } + } + }, + "ULTIMAKERSR30METHOD": { + "package_info": { + "package_id": "ULTIMAKERSR30METHOD", + "package_type": "material", + "display_name": "Ultimaker SR-30", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-sr-30/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://support.ultimaker.com/s/article/How-to-print-with-Method-SR-30" } } }, @@ -1848,7 +2035,7 @@ "display_name": "Vertex Delta ABS", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1865,7 +2052,7 @@ "display_name": "Vertex Delta PET", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1882,7 +2069,7 @@ "display_name": "Vertex Delta PLA", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1899,7 +2086,7 @@ "display_name": "Vertex Delta TPU", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "8.5.0", + "sdk_version": "8.6.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", diff --git a/resources/conanfile.py b/resources/conanfile.py new file mode 100644 index 0000000000..b4cafc705e --- /dev/null +++ b/resources/conanfile.py @@ -0,0 +1,64 @@ +import os + +from conan import ConanFile +from conan.tools.files import copy, update_conandata +from conan.tools.scm import Version +from conan.errors import ConanInvalidConfiguration + +required_conan_version = ">=1.58.0 <2.0.0" + + +class CuraResource(ConanFile): + name = "cura_resources" + license = "" + author = "UltiMaker" + url = "https://github.com/Ultimaker/cura" + description = "Cura Resources" + topics = ("conan", "cura") + settings = "os", "compiler", "build_type", "arch" + no_copy_source = True + + + @property + def _shared_resources(self): + return ["definitions", "extruders", "images", "intent", "meshes", "quality", "variants"] + + def set_version(self): + if not self.version: + self.version = self.conan_data["version"] + + def export(self): + copy(self, pattern="conandata.yml", src=os.path.join(self.recipe_folder, ".."), dst=self.export_folder, + keep_path=False) + copy(self, pattern="LICENSE*", src=os.path.join(self.recipe_folder, ".."), dst=self.export_folder, + keep_path=False) + update_conandata(self, {"version": self.version}) + + def export_sources(self): + for shared_resources in self._shared_resources: + copy(self, pattern="*", src=os.path.join(self.recipe_folder, shared_resources), + dst=os.path.join(self.export_sources_folder, shared_resources)) + + def validate(self): + if Version(self.version) <= Version("4"): + raise ConanInvalidConfiguration("Only versions 5+ are support") + + def layout(self): + self.cpp.source.resdirs = self._shared_resources + self.cpp.package.resdirs = [f"res/{res}" for res in self._shared_resources] + + def package(self): + copy(self, "*", os.path.join(self.export_sources_folder), + os.path.join(self.package_folder, "res")) + + def package_info(self): + self.cpp_info.includedirs = [] + self.runenv_info.append_path("CURA_RESOURCES", os.path.join(self.package_folder, "res")) + self.runenv_info.append_path("CURA_ENGINE_SEARCH_PATH", os.path.join(self.package_folder, "res", "definitions")) + self.runenv_info.append_path("CURA_ENGINE_SEARCH_PATH", os.path.join(self.package_folder, "res", "extruders")) + self.env_info.CURA_RESOURCES.append(os.path.join(self.package_folder, "res")) + self.env_info.CURA_ENGINE_SEARCH_PATH.append(os.path.join(self.package_folder, "res", "definitions")) + self.env_info.CURA_ENGINE_SEARCH_PATH.append(os.path.join(self.package_folder, "res", "definitions")) + + def package_id(self): + self.info.clear() diff --git a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json index c8ab3ca623..6050090e1d 100644 --- a/resources/definitions/Geeetech_Base_Dual_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Dual_Extruder.def.json @@ -130,8 +130,7 @@ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, - "support_interface_pattern": { "value": "zigzag" }, - "support_interface_skip_height": { "value": 0.2 }, + "support_interface_pattern": { "value": "'zigzag'" }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json index 36783200dd..db239bf424 100644 --- a/resources/definitions/Geeetech_Base_Multi_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Multi_Extruder.def.json @@ -131,8 +131,7 @@ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, - "support_interface_pattern": { "value": "zigzag" }, - "support_interface_skip_height": { "value": 0.2 }, + "support_interface_pattern": { "value": "'zigzag'" }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Geeetech_Base_Single_Extruder.def.json b/resources/definitions/Geeetech_Base_Single_Extruder.def.json index b901668859..03f9fa15cf 100644 --- a/resources/definitions/Geeetech_Base_Single_Extruder.def.json +++ b/resources/definitions/Geeetech_Base_Single_Extruder.def.json @@ -118,8 +118,7 @@ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 3" }, - "support_interface_pattern": { "value": "zigzag" }, - "support_interface_skip_height": { "value": 0.2 }, + "support_interface_pattern": { "value": "'zigzag'" }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 5eda5ca6f2..a3c5f5e06b 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -137,10 +137,9 @@ "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 Z0; home all\\nG28 X0 Y0\\nG0 Z20 F2400 ;move the platform to 20mm\\nG92 E0\\nM190 S{material_bed_temperature_layer_0}\\nM109 T0 S{material_standby_temperature, 0}\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nT1 ; move to the 2th head\\nG0 Z20 F2400\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-5.1 F1500 ; retract\\nG1 X90 Z0.01 F5000 ; move away from the prime poop\\nG1 X50 F9000\\nG0 Z20 F2400\\nT0 ; move to the first head\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM104 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 X60 Z0.01 F5000 ; move away from the prime poop\\nG1 X20 F9000\\nM400 ;finish all moves\\nG92 E0\\n;end of startup sequence\\n\"" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, "machine_width": { "default_value": 223 }, + "prime_tower_position_y": { "value": "170" }, "retraction_amount": { "default_value": 5.1 }, "retraction_speed": { "default_value": 25 }, - "speed_support": { "value": "speed_wall_0" }, - "speed_wall_x": { "value": "speed_wall" }, "switch_extruder_prime_speed": { "enabled": false, diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index 45b2572242..c700e3916b 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -59,7 +59,7 @@ "machine_width": { "default_value": 280 }, "material_diameter": { "default_value": 1.75 }, "material_initial_print_temperature": { "value": "material_print_temperature" }, - "prime_tower_min_volume": { "value": "((resolveOrValue('layer_height'))/2" }, + "prime_tower_min_volume": { "value": "resolveOrValue('layer_height')/2" }, "prime_tower_size": { "value": "30" }, "prime_tower_wipe_enabled": { "default_value": true }, "retraction_amount": { "default_value": 5 }, diff --git a/resources/definitions/ankermake_m5.def.json b/resources/definitions/ankermake_m5.def.json index 0880f0b007..4e4b3498b3 100644 --- a/resources/definitions/ankermake_m5.def.json +++ b/resources/definitions/ankermake_m5.def.json @@ -112,7 +112,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_enable": { "value": true }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_roof_enable": { "value": true }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, diff --git a/resources/definitions/ankermake_m5c.def.json b/resources/definitions/ankermake_m5c.def.json new file mode 100644 index 0000000000..8a131534be --- /dev/null +++ b/resources/definitions/ankermake_m5c.def.json @@ -0,0 +1,246 @@ +{ + "version": 2, + "name": "AnkerMake M5C", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "just-trey", + "manufacturer": "AnkerMake", + "file_formats": "text/x-gcode", + "platform": "ankermake_m5c_platform.obj", + "has_machine_quality": true, + "machine_extruder_trains": { "0": "ankermake_m5c_extruder_0" }, + "platform_texture": "ankermake_m5c.png", + "preferred_material": "generic_pla", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_infill": { "value": 5000 }, + "acceleration_layer_0": { "value": 2500 }, + "acceleration_prime_tower": { "value": 5000 }, + "acceleration_print": { "value": 5000 }, + "acceleration_print_layer_0": { "value": 2500 }, + "acceleration_roofing": { "value": 2500 }, + "acceleration_skirt_brim": { "value": 2500 }, + "acceleration_support": { "value": 5000 }, + "acceleration_support_bottom": { "value": 5000 }, + "acceleration_support_infill": { "value": 5000 }, + "acceleration_support_interface": { "value": 5000 }, + "acceleration_support_roof": { "value": 5000 }, + "acceleration_topbottom": { "value": 2500 }, + "acceleration_travel_layer_0": { "value": 2500 }, + "acceleration_wall": { "value": 5000 }, + "acceleration_wall_x": { "value": 5000 }, + "adhesion_type": { "default_value": "skirt" }, + "alternate_extra_perimeter": { "value": true }, + "bottom_layers": { "value": 3 }, + "bottom_skin_expand_distance": { "value": 0.84 }, + "bottom_skin_preshrink": { "value": 0.84 }, + "bottom_thickness": { "value": 0.8 }, + "bridge_fan_speed_2": { "value": 100 }, + "bridge_fan_speed_3": { "value": 100 }, + "bridge_settings_enabled": { "value": true }, + "bridge_skin_density_2": { "value": 80 }, + "bridge_skin_material_flow": { "value": 100 }, + "bridge_skin_material_flow_2": { "value": 80 }, + "bridge_skin_speed": { "value": 20 }, + "bridge_skin_speed_2": { "value": 50 }, + "bridge_skin_speed_3": { "value": 50 }, + "bridge_wall_material_flow": { "value": 100 }, + "bridge_wall_speed": { "value": 20 }, + "connect_infill_polygons": { "value": false }, + "cool_fan_full_at_height": { "value": 0.14 }, + "cool_min_layer_time": { "value": 6 }, + "cool_min_speed": { "value": 30 }, + "cross_infill_pocket_size": { "value": 8 }, + "expand_skins_expand_distance": { "value": 0.84 }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": 25 }, + "gradual_infill_step_height": { "value": 2 }, + "infill_angles": + { + "value": [ + 90 + ] + }, + "infill_extruder_nr": { "value": -1 }, + "infill_line_distance": { "value": 8 }, + "infill_material_flow": { "value": 90 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density >= 25 else 'grid'" }, + "infill_sparse_density": { "value": 10 }, + "infill_sparse_thickness": { "value": 0.25 }, + "infill_wipe_dist": { "value": 0.1 }, + "initial_bottom_layers": { "value": 3 }, + "jerk_enabled": { "value": true }, + "jerk_infill": { "value": 15 }, + "jerk_layer_0": { "value": 15 }, + "jerk_prime_tower": { "value": 15 }, + "jerk_print": { "value": 15 }, + "jerk_print_layer_0": { "value": 15 }, + "jerk_roofing": { "value": 15 }, + "jerk_skirt_brim": { "value": 15 }, + "jerk_support": { "value": 15 }, + "jerk_support_bottom": { "value": 15 }, + "jerk_support_infill": { "value": 15 }, + "jerk_support_interface": { "value": 15 }, + "jerk_support_roof": { "value": 15 }, + "jerk_topbottom": { "value": 15 }, + "jerk_travel": { "value": 15 }, + "jerk_travel_layer_0": { "value": 15 }, + "jerk_wall": { "value": 15 }, + "jerk_wall_0": { "value": 15 }, + "jerk_wall_x": { "value": 15 }, + "machine_buildplate_type": { "value": "glass" }, + "machine_depth": { "value": 220 }, + "machine_heated_bed": { "value": true }, + "machine_height": { "value": 250 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 30 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "AnkerMake M5" }, + "machine_shape": { "value": "rectangular" }, + "machine_show_variants": { "value": false }, + "machine_start_gcode": { "default_value": "M104 S{material_print_temperature_layer_0} ; set final nozzle temp\nM190 S{material_bed_temperature_layer_0} ; set and wait for nozzle temp to stabilize\nM109 S{material_print_temperature_layer_0} ; wait for nozzle temp to stabilize\nG28 ;Home\nG1 E10 F3600; push out retracted filament(fix for over retraction after prime)" }, + "machine_width": { "value": 220 }, + "material_diameter": { "default_value": 1.75 }, + "material_flow_layer_0": { "value": 120 }, + "material_no_load_move_factor": { "value": 0.94 }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": "2 if support_structure == 'normal' else 0" }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": { "value": 0.8 }, + "retraction_combing": { "value": "noskin" }, + "retraction_combing_max_distance": { "value": 3 }, + "retraction_extrusion_window": { "value": 0.8 }, + "retraction_min_travel": { "value": 0.8 }, + "retraction_prime_speed": { "value": 60 }, + "retraction_retract_speed": { "value": 60 }, + "retraction_speed": { "value": 60 }, + "roofing_angles": { "value": [] }, + "roofing_monotonic": { "value": false }, + "roofing_pattern": { "value": "zigzag" }, + "skin_material_flow": { "value": 97 }, + "skin_monotonic": { "default_value": true }, + "skirt_brim_speed": + { + "maximum_value_warning": "550", + "value": 50 + }, + "skirt_line_count": { "value": 3 }, + "small_feature_max_length": { "value": 9.42 }, + "small_hole_max_size": { "value": 3 }, + "speed_infill": + { + "maximum_value_warning": "550", + "value": 270 + }, + "speed_layer_0": + { + "maximum_value_warning": "550", + "value": 50 + }, + "speed_prime_tower": + { + "maximum_value_warning": "550", + "value": 500 + }, + "speed_print": + { + "maximum_value_warning": "550", + "value": 500 + }, + "speed_print_layer_0": + { + "maximum_value_warning": "550", + "value": 50 + }, + "speed_roofing": + { + "maximum_value_warning": "550", + "value": 150 + }, + "speed_support": + { + "maximum_value_warning": "550", + "value": 250 + }, + "speed_support_bottom": + { + "maximum_value_warning": "550", + "value": 166.667 + }, + "speed_support_infill": + { + "maximum_value_warning": "550", + "value": 250 + }, + "speed_support_interface": + { + "maximum_value_warning": "550", + "value": 166.667 + }, + "speed_support_roof": + { + "maximum_value_warning": "550", + "value": 166.667 + }, + "speed_topbottom": + { + "maximum_value_warning": "550", + "value": 150 + }, + "speed_travel": + { + "maximum_value_warning": "550", + "value": 500 + }, + "speed_travel_layer_0": + { + "maximum_value_warning": "550", + "value": 150 + }, + "speed_wall": + { + "maximum_value_warning": "550", + "value": 250 + }, + "speed_wall_0": + { + "maximum_value_warning": "550", + "value": 150 + }, + "speed_wall_x": + { + "maximum_value_warning": "550", + "value": 250 + }, + "speed_wall_x_roofing": { "maximum_value_warning": "550" }, + "support_bottom_distance": { "value": 0.2 }, + "support_brim_enable": { "value": false }, + "support_brim_line_count": { "value": 20 }, + "support_brim_width": { "value": 8 }, + "support_infill_angles": { "value": [] }, + "support_infill_rate": { "value": 30 }, + "support_initial_layer_line_distance": { "value": 1.333 }, + "support_line_distance": { "value": 1.333 }, + "support_offset": { "value": 2 }, + "support_top_distance": { "value": 0.2 }, + "support_xy_distance": { "value": 0.8 }, + "support_xy_overrides_z": { "value": "xy_overrides_z" }, + "top_layers": { "value": 4 }, + "top_skin_expand_distance": { "value": 0.84 }, + "top_skin_preshrink": { "value": 0.84 }, + "travel_avoid_distance": { "value": 0.63 }, + "wall_0_extruder_nr": { "value": -1 }, + "wall_extruder_nr": { "value": -1 }, + "wall_line_width_0": { "value": 0.44 }, + "wall_overhang_angle": { "value": 45 }, + "wall_overhang_speed_factor": { "value": 40 }, + "wall_thickness": { "value": 0.84 }, + "wall_x_extruder_nr": { "value": -1 }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kobra2.def.json b/resources/definitions/anycubic_kobra2.def.json new file mode 100644 index 0000000000..965504338b --- /dev/null +++ b/resources/definitions/anycubic_kobra2.def.json @@ -0,0 +1,90 @@ +{ + "version": 2, + "name": "Anycubic Kobra 2", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "ThatGuyZim", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "platform": "anycubic_kobra2_platform.stl", + "machine_extruder_trains": { "0": "anycubic_kobra2_extruder_0" } + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_print": { "value": 2500 }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "gantry_height": { "value": "0" }, + "infill_before_walls": { "value": false }, + "jerk_enabled": { "value": true }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": 10 }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height": { "default_value": 0.2 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 220 }, + "machine_end_gcode": { "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM107 ; fan off\nG91 ;relative positioning\nG1 E-2 F3000 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 F3000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 F3000 ;move X/Y to min endstops, so the head is out of the way\nG1 Y210 F3000\nM84 ;steppers off\nG90\nM300 S1318 P266" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 250 }, + "machine_max_acceleration_e": { "value": 2500 }, + "machine_max_acceleration_x": { "value": 2500 }, + "machine_max_acceleration_y": { "value": 2500 }, + "machine_max_acceleration_z": { "value": 800 }, + "machine_max_feedrate_e": { "default_value": 100 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 250 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "value": 10 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 2 }, + "machine_name": { "default_value": "Anycubic Kobra 2" }, + "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ; use absolute coordinates\nM82 ; use absolute distances for extrusion\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG28 ; home all axes\nM300 S1318 P266\nG1 Z5 F5000 ; lift nozzle\nG1 X5 Y0 F3000\nG1 Z0.3 ; set nozzle height\nG92 E0\nG1 X50 Y0 E20 F500 ; Extrude 20mm of filament in a 5cm line \nG92 E0 ; zero the extruded length again \nG1 E-4.5 F4800 ; Retract a little \nG92 E0\nG1 X120 F4000 ; Quickly wipe away from the filament line\nM117 ; Printing\u2026\nG5" }, + "machine_width": { "default_value": 220 }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_bed_temperature_layer_0": { "maximum_value_warning": 110 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": + { + "maximum_value_warning": 260, + "value": "material_print_temperature + 5" + }, + "material_print_temperature": { "maximum_value_warning": 260 }, + "material_print_temperature_layer_0": + { + "maximum_value_warning": 260, + "value": "material_print_temperature + 5" + }, + "retraction_amount": { "value": 2 }, + "retraction_combing": { "value": "'off'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_min_travel": { "value": 1 }, + "retraction_prime_speed": { "maximum_value_warning": 100 }, + "retraction_retract_speed": { "maximum_value_warning": 100 }, + "retraction_speed": + { + "maximum_value_warning": 100, + "value": 80 + }, + "speed_print": { "value": 80 }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": + { + "maximum_value": 200.0, + "maximum_value_warning": 175.0, + "value": 125 + }, + "speed_travel_layer_0": { "value": "speed_travel" }, + "speed_wall_x": { "value": "speed_wall" }, + "top_bottom_pattern": { "default_value": "zigzag" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_line_count": { "value": 3 }, + "wall_thickness": { "value": 1.2 } + } +} \ No newline at end of file diff --git a/resources/definitions/anycubic_kobra_go.def.json b/resources/definitions/anycubic_kobra_go.def.json index 8c546bdbb7..686734d962 100644 --- a/resources/definitions/anycubic_kobra_go.def.json +++ b/resources/definitions/anycubic_kobra_go.def.json @@ -23,7 +23,7 @@ "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Anycubic Kobra Go" }, - "machine_start_gcode": { "default_value": "M140 S[first_layer_bed_temperature]; Heat bed\nM104 S[first_layer_temperature\n ]; Heat extruder\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nM420 S1 ; Enable Bed Levelling Mesh\nM190 S[first_layer_bed_temperature\n ]; Wait for bed to get up to temperature\nM109 S[first_layer_temperature\n ]; Wait for extruder to get up to temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X2 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X2 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X2.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X2.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 F2400 E-1\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, + "machine_start_gcode": { "default_value": "M140 S{material_bed_temperature_layer_0}; Heat bed\nM104 S{material_print_temperature_layer_0}; Heat extruder\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ; Home all axes\nG92 E0 ; Reset Extruder\nM420 S1 ; Enable Bed Levelling Mesh\nM190 S{material_bed_temperature_layer_0}; Wait for bed to get up to temperature\nM109 S{material_print_temperature_layer_0}; Wait for extruder to get up to temperature\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X2 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X2 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X2.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X2.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 F2400 E-1\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish" }, "machine_width": { "default_value": 222 } } } \ No newline at end of file diff --git a/resources/definitions/artillery_base.def.json b/resources/definitions/artillery_base.def.json index d9e71e4333..38d9531f7f 100644 --- a/resources/definitions/artillery_base.def.json +++ b/resources/definitions/artillery_base.def.json @@ -114,7 +114,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index f19dc8920d..cd59e1c169 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -154,7 +154,6 @@ "support_infill_rate": { "value": "20" }, "support_interface_enable": { "value": "True" }, "support_interface_height": { "value": "1" }, - "support_interface_skip_height": { "value": "layer_height" }, "support_join_distance": { "value": "1" }, "support_offset": { "value": "1.5" }, "support_pattern": { "default_value": "zigzag" }, diff --git a/resources/definitions/biqu_base.def.json b/resources/definitions/biqu_base.def.json index 78edc62b74..a42f4044a0 100755 --- a/resources/definitions/biqu_base.def.json +++ b/resources/definitions/biqu_base.def.json @@ -108,7 +108,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/blocks_base.def.json b/resources/definitions/blocks_base.def.json index d83e6b31f6..fde5f912da 100644 --- a/resources/definitions/blocks_base.def.json +++ b/resources/definitions/blocks_base.def.json @@ -97,7 +97,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, "support_xy_distance_overhang": { "value": "wall_line_width_0" }, diff --git a/resources/definitions/creality_ender3v2neo.def.json b/resources/definitions/creality_ender3v2neo.def.json new file mode 100644 index 0000000000..b5cc2ed52a --- /dev/null +++ b/resources/definitions/creality_ender3v2neo.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Creality Ender-3 v2 Neo", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "platform": "creality_ender3.3mf", + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 25 }, + "machine_depth": { "default_value": 230 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Creality Ender-3 v2 Neo" }, + "machine_start_gcode": { "default_value": "G92 E0 ;Reset Extruder\nG28 ;Home\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up" }, + "machine_width": { "default_value": 230 }, + "retraction_amount": { "value": 4 }, + "retraction_speed": { "value": 25 } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index 12a861a2a9..bf49d8dd1b 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -20,15 +20,18 @@ }, "overrides": { - "gantry_height": { "value": 25 }, + "gantry_height": { "value": 38 }, "machine_depth": { "default_value": 220 }, "machine_head_with_fans_polygon": { "default_value": [ - [-20, 10], - [10, 10], - [10, -10], - [-20, -10] + [-36, -18], + [-20, -42], + [6, -42], + [30, -18], + [30, 52], + [-3, 56], + [-36, 52] ] }, "machine_heated_bed": { "default_value": true }, @@ -42,7 +45,7 @@ "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 30 }, "machine_name": { "default_value": "Creality Ender-3 V3 SE" }, - "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Enable mesh leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S[material_print_temperature_layer_0]\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, + "machine_start_gcode": { "default_value": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\n\nM420 S1; Use saved mesh leveling data\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X-3 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait\nM109 S{material_print_temperature_layer_0} ; Set hotend temperature and wait\nG1 X-3 Y100.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X-2 Y100.0 Z0.28 F5000.0 ;Move to side a little\nG1 X-2 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 E-1.0000 F1800 ;Retract a bit\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 E0.0000 F1800 \n" }, "machine_width": { "default_value": 220 }, "retraction_amount": { "value": 0.8 }, "retraction_speed": { "default_value": 40 }, diff --git a/resources/definitions/creality_ender5plus.def.json b/resources/definitions/creality_ender5plus.def.json index b7b11343e5..5ad71ee2df 100644 --- a/resources/definitions/creality_ender5plus.def.json +++ b/resources/definitions/creality_ender5plus.def.json @@ -23,7 +23,7 @@ }, "machine_height": { "default_value": 400 }, "machine_name": { "default_value": "Creality Ender-5 Plus" }, - "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nM420 S1 Z2 ;Enable ABL using saved Mesh and Fade Height\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, + "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Auto bed level\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" }, "machine_width": { "default_value": 350 }, "speed_print": { "value": 80.0 } } diff --git a/resources/definitions/creality_ender5s1.def.json b/resources/definitions/creality_ender5s1.def.json index 32dbf75b02..598b206dca 100644 --- a/resources/definitions/creality_ender5s1.def.json +++ b/resources/definitions/creality_ender5s1.def.json @@ -13,7 +13,7 @@ "cool_min_layer_time": { "value": 5 }, "gantry_height": { "value": 25 }, "machine_depth": { "default_value": 225 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG1 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y0 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, "machine_head_with_fans_polygon": { "default_value": [ diff --git a/resources/definitions/creality_k1max.def.json b/resources/definitions/creality_k1max.def.json new file mode 100755 index 0000000000..7c67db2ba9 --- /dev/null +++ b/resources/definitions/creality_k1max.def.json @@ -0,0 +1,55 @@ +{ + "version": 2, + "name": "Creality K1 Max", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "author": "Itay Grudev", + "manufacturer": "Creality3D", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "creality_k1max_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "preferred_variant_name": "0.4mm Nozzle", + "quality_definition": "creality_base", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "gantry_height": { "value": 45 }, + "machine_depth": { "default_value": 300 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-50, 40], + [-50, -62], + [25, 40], + [25, -62] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 20000.0 }, + "machine_max_acceleration_y": { "value": 20000.0 }, + "machine_max_acceleration_z": { "value": 500.0 }, + "machine_max_feedrate_e": { "value": 100 }, + "machine_max_feedrate_x": { "value": 800 }, + "machine_max_feedrate_y": { "value": 800 }, + "machine_max_feedrate_z": { "value": 30 }, + "machine_max_jerk_e": { "value": 2.5 }, + "machine_max_jerk_xy": { "value": 9 }, + "machine_max_jerk_z": { "value": 2 }, + "machine_name": { "default_value": "Creality K1 Max" }, + "machine_start_gcode": { "default_value": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}\n" }, + "machine_width": { "default_value": 300 }, + "retraction_amount": { "default_value": 0.5 }, + "retraction_speed": { "default_value": 40 } + } +} \ No newline at end of file diff --git a/resources/definitions/dagoma_pro_430_dual.def.json b/resources/definitions/dagoma_pro_430_dual.def.json index 6038ce9e57..df537809f8 100644 --- a/resources/definitions/dagoma_pro_430_dual.def.json +++ b/resources/definitions/dagoma_pro_430_dual.def.json @@ -55,6 +55,7 @@ [215, 160] ] ] - } + }, + "prime_tower_position_x": { "value": "350" } } } \ No newline at end of file diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json new file mode 100644 index 0000000000..8bbac5a483 --- /dev/null +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -0,0 +1,32 @@ +{ + "version": 2, + "name": "Dagoma Sigma Pro 500Z", + "inherits": "dagoma_delta", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "file_formats": "text/x-gcode", + "platform": "dagoma_sigma_pro.obj", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_variants": true, + "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" }, + "platform_texture": "dagoma_sigma_pro.png", + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm", + "quality_definition": "dagoma_sigma_pro", + "variants_name": "Nozzle" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 501 }, + "machine_name": { "default_value": "Dagoma Sigma Pro 500Z" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json new file mode 100644 index 0000000000..eb11b37603 --- /dev/null +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -0,0 +1,37 @@ +{ + "version": 2, + "name": "Dagoma Sigma Pro 500Z Dual", + "inherits": "dagoma_delta", + "metadata": + { + "visible": true, + "author": "Dagoma", + "manufacturer": "Dagoma", + "file_formats": "text/x-gcode", + "platform": "dagoma_sigma_pro.obj", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "dagoma_sigma_pro_dual_extruder_right", + "1": "dagoma_sigma_pro_dual_extruder_left" + }, + "platform_texture": "dagoma_sigma_pro.png", + "preferred_quality_type": "h0.2", + "preferred_variant_name": "Brass 0.4mm", + "quality_definition": "dagoma_sigma_pro_dual", + "variants_name": "Nozzle" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";End Gcode for {machine_name}\n;Author: Dagoma\nM104 S0\nM107 ;stop fan\nM140 S0 ;heated bed heater off (if you have it)\nG92 E0\nG1 E-55 F4600\nG27\nG90 ; Absolute positioning\nT0" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 501 }, + "machine_name": { "default_value": "Dagoma Sigma Pro 500Z Dual" }, + "machine_start_gcode": { "default_value": ";Start Gcode for {machine_name}\n;Author: Dagoma\n;Sliced: {date} {time}\n;Estimated print time: {print_time}\n;Print speed: {speed_print}mm/s\n;Layer height: {layer_height}mm\n;Wall thickness: {wall_thickness}mm\n;Infill density: {infill_sparse_density}%\n;Infill pattern: {infill_pattern}\n;Support: {support_enable}\n;Print temperature: {material_print_temperature}\u00b0C\n;Flow: {material_flow}%\n;Retraction amount: {retraction_amount}mm\n;Retraction speed: {retraction_retract_speed}mm/s\nG90 ;absolute positioning\nM190 S{material_bed_temperature_layer_0};\nM109 S140;\nG1 F200 E-1.0\nM106 S255 ;Activating layers fans\nG28 ;Homing\nG29 ;Calibration\nM107 ;Off Ventilateur\nM109 S{material_print_temperature_layer_0} ;Temperature for the first layer only\nG92 E0 ;Zero the extruded length again\nG1 X0 Y-105 Z1 F3000\nG1 F{speed_travel}\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc20dual.def.json b/resources/definitions/deltacomb_dc20dual.def.json index f90e40d5b4..60a71276d2 100644 --- a/resources/definitions/deltacomb_dc20dual.def.json +++ b/resources/definitions/deltacomb_dc20dual.def.json @@ -101,6 +101,8 @@ }, "machine_height": { "default_value": 250 }, "machine_name": { "default_value": "Deltacomb DC-20 DUAL" }, - "machine_width": { "default_value": 190 } + "machine_width": { "default_value": 190 }, + "prime_tower_position_x": { "value": "60" }, + "prime_tower_position_y": { "value": "60" } } } \ No newline at end of file diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json index 4a42ae4d63..7ba4f4252d 100644 --- a/resources/definitions/deltacomb_dc30flux.def.json +++ b/resources/definitions/deltacomb_dc30flux.def.json @@ -31,7 +31,7 @@ "material_final_print_temperature": { "value": "material_print_temperature" }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "material_standby_temperature": { "value": "material_print_temperature" }, - "prime_tower_enable": { "value": "1" }, + "prime_tower_enable": { "value": "True" }, "prime_tower_min_volume": { "value": "50" }, "switch_extruder_retraction_amount": { "value": "0" } } diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index bb61db1686..ebe94ee169 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -131,10 +131,9 @@ "machine_width": { "default_value": 238 }, "material_adhesion_tendency": { "enabled": true }, "material_diameter": { "default_value": 1.75 }, + "prime_tower_position_x": { "value": "200" }, "retraction_amount": { "default_value": 6.5 }, "retraction_speed": { "default_value": 25 }, - "speed_support": { "value": "speed_wall_0" }, - "speed_wall_x": { "value": "speed_wall" }, "switch_extruder_prime_speed": { "enabled": false, diff --git a/resources/definitions/elegoo_neptune_1.def.json b/resources/definitions/elegoo_neptune_1.def.json index 2b23fd8482..e0d5ee435a 100644 --- a/resources/definitions/elegoo_neptune_1.def.json +++ b/resources/definitions/elegoo_neptune_1.def.json @@ -11,7 +11,7 @@ "overrides": { "machine_depth": { "default_value": 210 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_head_with_fans_polygon": { "value": [ diff --git a/resources/definitions/elegoo_neptune_2.def.json b/resources/definitions/elegoo_neptune_2.def.json index 8554137dcd..e64ecf690b 100644 --- a/resources/definitions/elegoo_neptune_2.def.json +++ b/resources/definitions/elegoo_neptune_2.def.json @@ -24,7 +24,7 @@ "brim_width": { "default_value": 5 }, "gantry_height": { "value": 30 }, "machine_depth": { "default_value": 235 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json index c9aa5a0184..45ad94c2fe 100644 --- a/resources/definitions/elegoo_neptune_2D.def.json +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -29,7 +29,7 @@ "gantry_height": { "value": 30 }, "machine_always_write_active_tool": { "default_value": true }, "machine_depth": { "default_value": 235 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-80 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-80 Z0.2 F1600 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_extruder_count": { "default_value": 2 }, "machine_extruders_share_heater": { "default_value": true }, "machine_extruders_share_nozzle": { "default_value": true }, diff --git a/resources/definitions/elegoo_neptune_2s.def.json b/resources/definitions/elegoo_neptune_2s.def.json index e1d6b14082..b4ecdb78fd 100644 --- a/resources/definitions/elegoo_neptune_2s.def.json +++ b/resources/definitions/elegoo_neptune_2s.def.json @@ -11,7 +11,7 @@ "overrides": { "machine_depth": { "default_value": 235 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_head_with_fans_polygon": { "value": [ diff --git a/resources/definitions/elegoo_neptune_3.def.json b/resources/definitions/elegoo_neptune_3.def.json index 2bb7e035ce..cb6b067393 100644 --- a/resources/definitions/elegoo_neptune_3.def.json +++ b/resources/definitions/elegoo_neptune_3.def.json @@ -11,7 +11,7 @@ "overrides": { "machine_depth": { "default_value": 235 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_head_with_fans_polygon": { "value": [ diff --git a/resources/definitions/elegoo_neptune_3pro.def.json b/resources/definitions/elegoo_neptune_3pro.def.json index 9d2bacbf1f..4a6d17ea54 100644 --- a/resources/definitions/elegoo_neptune_3pro.def.json +++ b/resources/definitions/elegoo_neptune_3pro.def.json @@ -12,7 +12,7 @@ { "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, "machine_depth": { "default_value": 235 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-8 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-8 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_head_with_fans_polygon": { "value": [ diff --git a/resources/definitions/elegoo_neptune_4.def.json b/resources/definitions/elegoo_neptune_4.def.json new file mode 100644 index 0000000000..20b8dfbb5b --- /dev/null +++ b/resources/definitions/elegoo_neptune_4.def.json @@ -0,0 +1,104 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4", + "inherits": "elegoo_base", + "metadata": + { + "visible": true, + "author": "mastercaution" + }, + "overrides": + { + "acceleration_print": + { + "maximum_value_warning": "20000", + "value": 10000 + }, + "acceleration_wall": { "value": "acceleration_print/2" }, + "cool_fan_full_layer": { "value": 2 }, + "infill_line_width": { "value": "line_width + 0.05" }, + "infill_overlap": { "value": "0 if infill_sparse_density < 40.01 and infill_pattern != 'concentric' else -5" }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 35 else 'grid'" }, + "initial_layer_line_width_factor": { "value": "100.0 if resolveOrValue('adhesion_type') == 'raft' else 125 if line_width < 0.5 else 110" }, + "machine_acceleration": { "value": 5000 }, + "machine_depth": { "default_value": 230 }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z2 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth - 5} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_head_with_fans_polygon": + { + "value": [ + [-40, 50], + [-40, -30], + [40, 50], + [40, -30] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 270 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 20000 }, + "machine_max_acceleration_y": { "value": 20000 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 4" }, + "machine_nozzle_cool_down_speed": { "value": 0.75 }, + "machine_nozzle_heat_up_speed": { "value": 1.6 }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 4 / 4 PRO\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140 ;Start heating extruder\nM190 S{material_bed_temperature_layer_0} ;Wait for the bed to reach print temp\nG90\nG28 ;home\nG1 Z10 F300\nG1 X67.5 Y0 F6000\nG1 Z0 F300\nM109 S{material_print_temperature_layer_0} ;Wait for extruder to reach print temp\nG92 E0 ;Reset Extruder\nG1 X67.5 Y0 Z0.4 F300 ;Move to start position\nG1 X167.5 E30 F400 ;Draw the first line\nG1 Z0.6 F120.0 ;Move to side a little\nG1 X162.5 F3000\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 235 }, + "retraction_amount": { "default_value": 0.5 }, + "retraction_count_max": { "value": 80 }, + "retraction_speed": { "default_value": 45 }, + "skirt_brim_speed": { "maximum_value_warning": "500" }, + "speed_infill": + { + "maximum_value_warning": "500", + "value": "speed_print" + }, + "speed_layer_0": + { + "maximum_value_warning": "500", + "value": 60 + }, + "speed_prime_tower": { "maximum_value_warning": "500" }, + "speed_print": + { + "default_value": 250, + "maximum_value_warning": "500" + }, + "speed_print_layer_0": { "maximum_value_warning": "500" }, + "speed_roofing": { "maximum_value_warning": "500" }, + "speed_support": { "maximum_value_warning": "500" }, + "speed_support_bottom": { "maximum_value_warning": "500" }, + "speed_support_infill": { "maximum_value_warning": "500" }, + "speed_support_interface": { "maximum_value_warning": "500" }, + "speed_support_roof": { "maximum_value_warning": "500" }, + "speed_topbottom": + { + "maximum_value_warning": "500", + "value": "speed_wall" + }, + "speed_travel": + { + "maximum_value_warning": "500", + "value": "speed_print" + }, + "speed_travel_layer_0": + { + "maximum_value_warning": "500", + "value": "speed_layer_0*2" + }, + "speed_wall": + { + "maximum_value_warning": "500", + "value": "speed_print / 2" + }, + "speed_wall_0": + { + "maximum_value_warning": "500", + "value": "speed_wall" + }, + "speed_wall_x": + { + "maximum_value_warning": "500", + "value": "speed_wall + (speed_wall / 2)" + } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_4max.def.json b/resources/definitions/elegoo_neptune_4max.def.json new file mode 100644 index 0000000000..c12953959b --- /dev/null +++ b/resources/definitions/elegoo_neptune_4max.def.json @@ -0,0 +1,62 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Max", + "inherits": "elegoo_neptune_4", + "metadata": + { + "visible": true, + "author": "mastercaution", + "platform": "elegoo_platform_max.3mf", + "platform_offset": [ + -2.1, + -0.2, + 0 + ], + "quality_definition": "elegoo_neptune_4" + }, + "overrides": + { + "acceleration_print": + { + "maximum_value_warning": "15000", + "value": 2500 + }, + "machine_depth": { "default_value": 430 }, + "machine_height": { "default_value": 482 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 15000 }, + "machine_max_acceleration_y": { "value": 15000 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Max" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 4 MAX\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140 ;Start heating extruder\nM190 S{material_bed_temperature_layer_0} ;Wait for the bed to reach print temp\nG90\nG28 ;home\nG1 Z10 F300\nG1 X165 Y0 F6000\nG1 Z0 F300\nM109 S{material_print_temperature_layer_0} ;Wait for extruder to reach print temp\nG92 E0 ;Reset Extruder\nG1 X165 Y0 Z0.4 F300 ;Move to start position\nG1 X265 E30 F400 ;Draw the first line\nG1 Z0.6 F120.0 ;Move to side a little\nG1 X260 F3000\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 430 }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-215, -215], + [-215, 215], + [-211, 215], + [-211, -215] + ], + [ + [215, 215], + [215, -215], + [211, -215], + [211, 215] + ], + [ + [-215, -215], + [215, -215], + [-215, -211], + [215, -211] + ], + [ + [-215, 215], + [215, 215], + [-215, 211], + [215, 211] + ] + ] + } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_4plus.def.json b/resources/definitions/elegoo_neptune_4plus.def.json new file mode 100644 index 0000000000..c11b99956f --- /dev/null +++ b/resources/definitions/elegoo_neptune_4plus.def.json @@ -0,0 +1,59 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Plus", + "inherits": "elegoo_neptune_4", + "metadata": + { + "visible": true, + "author": "mastercaution", + "platform": "elegoo_platform_max.3mf", + "platform_offset": [ + -2.1, + -0.2, + 0 + ], + "quality_definition": "elegoo_neptune_4" + }, + "overrides": + { + "acceleration_print": { "value": 4000 }, + "machine_acceleration": { "value": 4000 }, + "machine_depth": { "default_value": 330 }, + "machine_height": { "default_value": 387 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 20000 }, + "machine_max_acceleration_y": { "value": 20000 }, + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Plus" }, + "machine_start_gcode": { "default_value": ";ELEGOO NEPTUNE 4 PLUS\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140 ;Start heating extruder\nM190 S{material_bed_temperature_layer_0} ;Wait for the bed to reach print temp\nG90\nG28 ;home\nG1 Z10 F300\nG1 X115 Y0 F6000\nG1 Z0 F300\nM109 S{material_print_temperature_layer_0} ;Wait for extruder to reach print temp\nG92 E0 ;Reset Extruder\nG1 X115 Y0 Z0.4 F300 ;Move to start position\nG1 X215 E30 F400 ;Draw the first line\nG1 Z0.6 F120.0 ;Move to side a little\nG1 X210 F3000\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 330 }, + "nozzle_disallowed_areas": + { + "default_value": [ + [ + [-165, -165], + [-165, 165], + [-161, 165], + [-161, -165] + ], + [ + [165, 165], + [165, -165], + [161, -165], + [161, 165] + ], + [ + [-165, -165], + [165, -165], + [-165, -161], + [165, -161] + ], + [ + [-165, 165], + [165, 165], + [-165, 161], + [165, 161] + ] + ] + } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_4pro.def.json b/resources/definitions/elegoo_neptune_4pro.def.json new file mode 100644 index 0000000000..ca7e7c1293 --- /dev/null +++ b/resources/definitions/elegoo_neptune_4pro.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "ELEGOO NEPTUNE 4 Pro", + "inherits": "elegoo_neptune_4", + "metadata": + { + "visible": true, + "author": "mastercaution", + "quality_definition": "elegoo_neptune_4" + }, + "overrides": + { + "machine_name": { "default_value": "ELEGOO NEPTUNE 4 Pro" } + } +} \ No newline at end of file diff --git a/resources/definitions/elegoo_neptune_x.def.json b/resources/definitions/elegoo_neptune_x.def.json index 77f6c1e10d..52657a2cab 100644 --- a/resources/definitions/elegoo_neptune_x.def.json +++ b/resources/definitions/elegoo_neptune_x.def.json @@ -11,7 +11,7 @@ "overrides": { "machine_depth": { "default_value": 235 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-10 X5 Y5 Z3 F3000 ;Retract\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_head_with_fans_polygon": { "value": [ diff --git a/resources/definitions/erzay3d.def.json b/resources/definitions/erzay3d.def.json index 28884a894a..5baadf32e4 100644 --- a/resources/definitions/erzay3d.def.json +++ b/resources/definitions/erzay3d.def.json @@ -14,7 +14,7 @@ { "acceleration_print": { "default_value": 1000 }, "adhesion_type": { "default_value": "skirt" }, - "brim_outside_only": { "default_value": false }, + "brim_location": { "default_value": "everywhere" }, "default_material_print_temperature": { "default_value": 220 }, "infill_sparse_density": { "default_value": 20 }, "ironing_flow": { "default_value": 7.0 }, diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index d79a0cb045..f60cf63360 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -7,7 +7,7 @@ "author": "Ultimaker", "manufacturer": "Unknown", "position": "0", - "setting_version": 22, + "setting_version": 23, "type": "extruder" }, "settings": @@ -62,6 +62,18 @@ "settable_per_meshgroup": false, "type": "str" }, + "machine_extruder_end_code_duration": + { + "default_value": 0, + "description": "The time it takes to execute the end g-code, when switching away from this extruder.", + "label": "Extruder End G-Code Duration", + "minimum_value": "0", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float" + }, "machine_extruder_end_pos_abs": { "default_value": false, @@ -108,6 +120,18 @@ "settable_per_meshgroup": false, "type": "str" }, + "machine_extruder_start_code_duration": + { + "default_value": 0, + "description": "The time it'll take to execute the start g-code, when switching to this extruder.", + "label": "Extruder Start G-Code Duration", + "minimum_value": "0", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float" + }, "machine_extruder_start_pos_abs": { "default_value": false, diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b6e6a027e9..124ba37967 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6,7 +6,7 @@ "type": "machine", "author": "Unknown", "manufacturer": "Unknown", - "setting_version": 22, + "setting_version": 23, "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "visible": false, "has_materials": true, @@ -76,6 +76,22 @@ "type": "str", "enabled": false }, + "material_type": + { + "label": "Material Type", + "description": "The type of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, + "material_brand": + { + "label": "Material Brand", + "description": "The brand of material used.", + "default_value": "", + "type": "str", + "enabled": false + }, "material_diameter": { "label": "Diameter", @@ -963,7 +979,7 @@ "description": "Width of a single prime tower line.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", "default_value": 0.4, "value": "line_width", "minimum_value": "0.001", @@ -1159,7 +1175,7 @@ "label": "Optimize Wall Printing Order", "description": "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type.", "type": "bool", - "default_value": false, + "default_value": true, "settable_per_mesh": true }, "inset_direction": @@ -1396,7 +1412,6 @@ { "label": "Z Seam Relative", "description": "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate.", - "unit": "mm", "type": "bool", "default_value": false, "enabled": "z_seam_type == 'back'", @@ -1479,6 +1494,7 @@ "description": "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", "type": "bool", "value": true, + "default_value": true, "enabled": "roofing_layer_count > 0 and top_layers > 0 and roofing_pattern != 'concentric'", "limit_to_extruder": "roofing_extruder_nr", "settable_per_mesh": true @@ -1668,7 +1684,7 @@ "value": "skin_line_width * 2", "default_value": 1, "minimum_value": "0", - "maximum_value_warning": "skin_line_width * 3", + "maximum_value_warning": "skin_line_width * 10", "type": "float", "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", "limit_to_extruder": "top_bottom_extruder_nr", @@ -2603,7 +2619,7 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage\")) / len(extruderValues(\"material_shrinkage_percentage\"))", + "resolve": "max(extruderValues(\"material_shrinkage_percentage\")) if any(extruderValues('material_is_support_material')) else sum(extruderValues(\"material_shrinkage_percentage\")) / len(extruderValues(\"material_shrinkage_percentage\"))", "children": { "material_shrinkage_percentage_xy": @@ -2619,7 +2635,7 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage_xy\")) / len(extruderValues(\"material_shrinkage_percentage_xy\"))", + "resolve": "max(extruderValues(\"material_shrinkage_percentage\")) if any(extruderValues('material_is_support_material')) else sum(extruderValues(\"material_shrinkage_percentage_xy\")) / len(extruderValues(\"material_shrinkage_percentage_xy\"))", "value": "material_shrinkage_percentage" }, "material_shrinkage_percentage_z": @@ -2635,7 +2651,7 @@ "maximum_value_warning": "120", "settable_per_mesh": false, "settable_per_extruder": false, - "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))", + "resolve": "max(extruderValues(\"material_shrinkage_percentage_z\")) if any(extruderValues('material_is_support_material')) else sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))", "value": "material_shrinkage_percentage" } } @@ -3347,7 +3363,7 @@ "description": "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal.", "type": "float", "unit": "mm/s", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", "default_value": 60, "value": "speed_print", "minimum_value": "0.1", @@ -3725,7 +3741,7 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_print", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('acceleration_enabled')", + "enabled": "prime_tower_enable and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false } } @@ -4044,7 +4060,7 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_print", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('jerk_enabled')", + "enabled": "prime_tower_enable and resolveOrValue('jerk_enabled')", "settable_per_mesh": false } } @@ -4579,6 +4595,7 @@ "unit": "\u00b0C", "type": "float", "value": "material_print_temperature", + "default_value": 0, "enabled": "cool_min_layer_time > 0", "minimum_value_warning": "max(material_final_print_temperature, material_initial_print_temperature)", "maximum_value_warning": "material_print_temperature", @@ -4758,6 +4775,34 @@ "settable_per_mesh": true, "settable_per_extruder": true }, + "support_z_seam_away_from_model": + { + "label": "Support Z Seam Away from Model", + "description": "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model.", + "type": "bool", + "default_value": true, + "enabled": "support_enable", + "settable_per_mesh": false, + "settable_per_extruder": true, + "settable_per_meshgroup": false, + "children": + { + "support_z_seam_min_distance": + { + "label": "Min Z Seam Distance from Model", + "description": "The distance between the model and its support structure at the z-axis seam.", + "unit": "mm", + "minimum_value": "0.001", + "value": "line_width * 2", + "default_value": 0.8, + "maximum_value_warning": "line_width * 4", + "type": "float", + "enabled": "support_z_seam_away_from_model and support_enable", + "settable_per_mesh": false, + "settable_per_extruder": true + } + } + }, "support_type": { "label": "Support Placement", @@ -5130,11 +5175,11 @@ "support_z_distance": { "label": "Support Z Distance", - "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height.", + "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers.", "unit": "mm", "type": "float", "minimum_value": "0", - "maximum_value_warning": "machine_nozzle_size", + "maximum_value_warning": "5*layer_height", "default_value": 0.1, "limit_to_extruder": "support_interface_extruder_nr if support_interface_enable else support_infill_extruder_nr", "enabled": "support_enable or support_meshes_present", @@ -5158,7 +5203,7 @@ "support_bottom_distance": { "label": "Support Bottom Distance", - "description": "Distance from the print to the bottom of the support.", + "description": "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height.", "unit": "mm", "minimum_value": "0", "maximum_value_warning": "machine_nozzle_size", @@ -5422,20 +5467,6 @@ } } }, - "support_interface_skip_height": - { - "label": "Support Interface Resolution", - "description": "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface.", - "unit": "mm", - "type": "float", - "default_value": 0.2, - "value": "layer_height", - "minimum_value": "0", - "maximum_value_warning": "support_interface_height", - "limit_to_extruder": "support_interface_extruder_nr", - "enabled": "support_interface_enable and (support_enable or support_meshes_present)", - "settable_per_mesh": true - }, "support_interface_density": { "label": "Support Interface Density", @@ -6066,12 +6097,18 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "brim_outside_only": + "brim_location": { - "label": "Brim Only on Outside", - "description": "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much.", - "type": "bool", - "default_value": true, + "label": "Brim Location", + "description": "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion.", + "type": "enum", + "options": + { + "outside": "Outside Only", + "inside": "Inside Only", + "everywhere": "Everywhere" + }, + "default_value": "outside", "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, @@ -6079,13 +6116,14 @@ }, "brim_inside_margin": { - "label": "Brim Inside Avoid Margin", - "description": "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes.", + "label": "Brim Avoid Margin", + "description": "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models.", "unit": "mm", "type": "float", - "default_value": 2.5, + "value": "line_width * 4", + "default_value": "1.6", "minimum_value": "0", - "enabled": "resolveOrValue('adhesion_type') == 'brim' and any(extruderValues('brim_outside_only'))", + "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true @@ -6113,7 +6151,101 @@ "enabled": "resolveOrValue('adhesion_type') == 'raft'", "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": true, + "children": + { + "raft_base_margin": + { + "label": "Raft Base Extra Margin", + "description": "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", + "unit": "mm", + "type": "float", + "value": "raft_margin", + "default_value": 15, + "minimum_value_warning": "raft_interface_line_width", + "maximum_value_warning": "min(raft_interface_margin, 20)", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_base_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "raft_interface_margin": + { + "label": "Raft Middle Extra Margin", + "description": "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", + "unit": "mm", + "type": "float", + "value": "raft_margin", + "default_value": 15, + "minimum_value_warning": "raft_interface_line_width", + "maximum_value_warning": "min(raft_surface_margin, 20)", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_interface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "raft_surface_margin": + { + "label": "Raft Top Extra Margin", + "description": "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print.", + "unit": "mm", + "type": "float", + "value": "raft_margin", + "default_value": 15, + "minimum_value_warning": "raft_interface_line_width", + "maximum_value_warning": "20", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "limit_to_extruder": "raft_surface_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": true + } + } + }, + "raft_remove_inside_corners": + { + "label": "Remove Raft Inside Corners", + "description": "Remove inside corners from the raft, causing the raft to become convex.", + "type": "bool", + "default_value": false, + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false, + "children": + { + "raft_base_remove_inside_corners": + { + "label": "Remove Raft Base Inside Corners", + "description": "Remove inside corners from the raft base, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_remove_inside_corners": + { + "label": "Remove Raft Middle Inside Corners", + "description": "Remove inside corners from the raft middle part, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_surface_remove_inside_corners": + { + "label": "Remove Raft Top Inside Corners", + "description": "Remove inside corners from the raft top part, causing the raft to become convex.", + "type": "bool", + "value": "raft_remove_inside_corners", + "default_value": false, + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } }, "raft_smoothing": { @@ -6125,9 +6257,53 @@ "minimum_value": "0", "minimum_value_warning": "raft_interface_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_remove_inside_corners", - "limit_to_extruder": "adhesion_extruder_nr", "settable_per_mesh": false, - "settable_per_extruder": true + "settable_per_extruder": false, + "children": + { + "raft_base_smoothing": + { + "label": "Raft Base Smoothing", + "description": "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", + "unit": "mm", + "type": "float", + "value": "raft_smoothing", + "default_value": 5, + "minimum_value": "0", + "minimum_value_warning": "raft_interface_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_base_remove_inside_corners", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_smoothing": + { + "label": "Raft Middle Smoothing", + "description": "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", + "unit": "mm", + "type": "float", + "value": "raft_smoothing", + "default_value": 5, + "minimum_value": "0", + "minimum_value_warning": "raft_interface_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_interface_remove_inside_corners", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_surface_smoothing": + { + "label": "Raft Top Smoothing", + "description": "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle.", + "unit": "mm", + "type": "float", + "value": "raft_smoothing", + "default_value": 5, + "minimum_value": "0", + "minimum_value_warning": "raft_interface_line_width", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and not raft_surface_remove_inside_corners", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } }, "raft_airgap": { @@ -6146,7 +6322,7 @@ "layer_0_z_overlap": { "label": "Initial Layer Z Overlap", - "description": "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.", + "description": "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior", "unit": "mm", "type": "float", "default_value": 0.22, @@ -6158,66 +6334,53 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_surface_layers": + "raft_base_thickness": { - "label": "Raft Top Layers", - "description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1.", - "type": "int", - "default_value": 2, - "minimum_value": "0", - "maximum_value_warning": "20", + "label": "Raft Base Thickness", + "description": "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate.", + "unit": "mm", + "type": "float", + "default_value": 0.3, + "value": "resolveOrValue('layer_height_0') * 1.2", + "minimum_value": "0.001", + "minimum_value_warning": "0.04", + "maximum_value_warning": "0.75 * raft_base_line_width", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, - "raft_surface_thickness": + "raft_base_line_width": { - "label": "Raft Top Layer Thickness", - "description": "Layer thickness of the top raft layers.", + "label": "Raft Base Line Width", + "description": "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion.", "unit": "mm", "type": "float", - "default_value": 0.1, - "value": "resolveOrValue('layer_height')", + "default_value": 0.8, "minimum_value": "0.001", - "minimum_value_warning": "0.04", - "maximum_value_warning": "0.75 * machine_nozzle_size", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "value": "machine_nozzle_size * 2", + "minimum_value_warning": "machine_nozzle_size * 0.5", + "maximum_value_warning": "machine_nozzle_size * 3", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, - "raft_surface_line_width": + "raft_base_line_spacing": { - "label": "Raft Top Line Width", - "description": "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth.", + "label": "Raft Base Line Spacing", + "description": "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate.", "unit": "mm", "type": "float", - "default_value": 0.4, - "value": "line_width", - "minimum_value": "0.001", - "minimum_value_warning": "machine_nozzle_size * 0.1", - "maximum_value_warning": "machine_nozzle_size * 2", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", - "settable_per_mesh": false, - "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" - }, - "raft_surface_line_spacing": - { - "label": "Raft Top Spacing", - "description": "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid.", - "unit": "mm", - "type": "float", - "default_value": 0.4, + "default_value": 1.6, + "value": "raft_base_line_width * 2", "minimum_value": "0", - "minimum_value_warning": "raft_surface_line_width", - "maximum_value_warning": "raft_surface_line_width * 3", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", - "value": "raft_surface_line_width", + "minimum_value_warning": "raft_base_line_width", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_layers": { @@ -6280,53 +6443,126 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_thickness": + "raft_surface_layers": { - "label": "Raft Base Thickness", - "description": "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate.", + "label": "Raft Top Layers", + "description": "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1.", + "type": "int", + "default_value": 2, + "minimum_value": "0", + "maximum_value_warning": "20", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_surface_extruder_nr" + }, + "raft_surface_thickness": + { + "label": "Raft Top Layer Thickness", + "description": "Layer thickness of the top raft layers.", "unit": "mm", "type": "float", - "default_value": 0.3, - "value": "resolveOrValue('layer_height_0') * 1.2", + "default_value": 0.1, + "value": "resolveOrValue('layer_height')", "minimum_value": "0.001", "minimum_value_warning": "0.04", - "maximum_value_warning": "0.75 * raft_base_line_width", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "maximum_value_warning": "0.75 * machine_nozzle_size", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_base_line_width": + "raft_surface_line_width": { - "label": "Raft Base Line Width", - "description": "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion.", + "label": "Raft Top Line Width", + "description": "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth.", "unit": "mm", "type": "float", - "default_value": 0.8, + "default_value": 0.4, + "value": "line_width", "minimum_value": "0.001", - "value": "machine_nozzle_size * 2", - "minimum_value_warning": "machine_nozzle_size * 0.5", - "maximum_value_warning": "machine_nozzle_size * 3", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "minimum_value_warning": "machine_nozzle_size * 0.1", + "maximum_value_warning": "machine_nozzle_size * 2", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" }, - "raft_base_line_spacing": + "raft_surface_line_spacing": { - "label": "Raft Base Line Spacing", - "description": "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate.", + "label": "Raft Top Spacing", + "description": "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid.", "unit": "mm", "type": "float", - "default_value": 1.6, - "value": "raft_base_line_width * 2", + "default_value": 0.4, "minimum_value": "0", - "minimum_value_warning": "raft_base_line_width", - "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "minimum_value_warning": "raft_surface_line_width", + "maximum_value_warning": "raft_surface_line_width * 3", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "value": "raft_surface_line_width", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" + }, + "raft_surface_monotonic": + { + "label": "Monotonic Raft Top Surface Order", + "description": "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface.", + "type": "bool", + "default_value": false, + "value": "skin_monotonic", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_surface_extruder_nr" + }, + "raft_wall_count": + { + "label": "Raft Wall Count", + "description": "The number of contours to print around the linear pattern of the raft.", + "type": "int", + "default_value": 1, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false, + "children": + { + "raft_base_wall_count": + { + "label": "Raft Base Wall Count", + "description": "The number of contours to print around the linear pattern in the base layer of the raft.", + "type": "int", + "default_value": 1, + "value": "raft_wall_count", + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_interface_wall_count": + { + "label": "Raft Middle Wall Count", + "description": "The number of contours to print around the linear pattern in the middle layers of the raft.", + "type": "int", + "default_value": 0, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "raft_surface_wall_count": + { + "label": "Raft Top Wall Count", + "description": "The number of contours to print around the linear pattern in the top layers of the raft.", + "type": "int", + "default_value": 0, + "minimum_value": "0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": false + } + } }, "raft_speed": { @@ -6345,21 +6581,21 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_speed": + "raft_base_speed": { - "label": "Raft Top Print Speed", - "description": "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines.", + "label": "Raft Base Print Speed", + "description": "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.", "unit": "mm/s", "type": "float", - "default_value": 20, + "default_value": 15, "minimum_value": "0.1", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", - "value": "raft_speed", + "maximum_value_warning": "200", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "value": "0.75 * raft_speed", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_speed": { @@ -6377,21 +6613,21 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_speed": + "raft_surface_speed": { - "label": "Raft Base Print Speed", - "description": "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high.", + "label": "Raft Top Print Speed", + "description": "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines.", "unit": "mm/s", "type": "float", - "default_value": 15, + "default_value": 20, "minimum_value": "0.1", "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", - "maximum_value_warning": "200", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "value": "0.75 * raft_speed", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "value": "raft_speed", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } }, @@ -6411,10 +6647,10 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_acceleration": + "raft_base_acceleration": { - "label": "Raft Top Print Acceleration", - "description": "The acceleration with which the top raft layers are printed.", + "label": "Raft Base Print Acceleration", + "description": "The acceleration with which the base raft layer is printed.", "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, @@ -6422,9 +6658,9 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled') and raft_surface_layers > 0", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", "settable_per_mesh": false, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_acceleration": { @@ -6441,10 +6677,10 @@ "settable_per_mesh": false, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_acceleration": + "raft_surface_acceleration": { - "label": "Raft Base Print Acceleration", - "description": "The acceleration with which the base raft layer is printed.", + "label": "Raft Top Print Acceleration", + "description": "The acceleration with which the top raft layers are printed.", "unit": "mm/s\u00b2", "type": "float", "default_value": 3000, @@ -6452,9 +6688,9 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('acceleration_enabled') and raft_surface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } }, @@ -6474,20 +6710,20 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_jerk": + "raft_base_jerk": { - "label": "Raft Top Print Jerk", - "description": "The jerk with which the top raft layers are printed.", + "label": "Raft Base Print Jerk", + "description": "The jerk with which the base raft layer is printed.", "unit": "mm/s", "type": "float", "default_value": 20, "value": "raft_jerk", "minimum_value": "0", "minimum_value_warning": "5", - "maximum_value_warning": "100", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled') and raft_surface_layers > 0", + "maximum_value_warning": "50", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", "settable_per_mesh": false, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_jerk": { @@ -6504,20 +6740,20 @@ "settable_per_mesh": false, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_jerk": + "raft_surface_jerk": { - "label": "Raft Base Print Jerk", - "description": "The jerk with which the base raft layer is printed.", + "label": "Raft Top Print Jerk", + "description": "The jerk with which the top raft layers are printed.", "unit": "mm/s", "type": "float", "default_value": 20, "value": "raft_jerk", "minimum_value": "0", "minimum_value_warning": "5", - "maximum_value_warning": "50", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled')", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and resolveOrValue('jerk_enabled') and raft_surface_layers > 0", "settable_per_mesh": false, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } }, @@ -6536,20 +6772,20 @@ "limit_to_extruder": "adhesion_extruder_nr", "children": { - "raft_surface_fan_speed": + "raft_base_fan_speed": { - "label": "Raft Top Fan Speed", - "description": "The fan speed for the top raft layers.", + "label": "Raft Base Fan Speed", + "description": "The fan speed for the base raft layer.", "unit": "%", "type": "float", "minimum_value": "0", "maximum_value": "100", "default_value": 0, "value": "raft_fan_speed", - "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", + "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_surface_extruder_nr" + "limit_to_extruder": "raft_base_extruder_nr" }, "raft_interface_fan_speed": { @@ -6566,20 +6802,20 @@ "settable_per_extruder": true, "limit_to_extruder": "raft_interface_extruder_nr" }, - "raft_base_fan_speed": + "raft_surface_fan_speed": { - "label": "Raft Base Fan Speed", - "description": "The fan speed for the base raft layer.", + "label": "Raft Top Fan Speed", + "description": "The fan speed for the top raft layers.", "unit": "%", "type": "float", "minimum_value": "0", "maximum_value": "100", "default_value": 0, "value": "raft_fan_speed", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", + "enabled": "resolveOrValue('adhesion_type') == 'raft' and raft_surface_layers > 0", "settable_per_mesh": false, "settable_per_extruder": true, - "limit_to_extruder": "raft_base_extruder_nr" + "limit_to_extruder": "raft_surface_extruder_nr" } } } @@ -6604,13 +6840,29 @@ "settable_per_mesh": false, "settable_per_extruder": false }, + "prime_tower_mode": + { + "label": "Prime Tower Type", + "description": "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
", + "type": "enum", + "resolve": "'interleaved' if (all(material_type_var == extruderValues('material_type')[0] for material_type_var in extruderValues('material_type')) and all(material_brand_var == extruderValues('material_brand')[0] for material_brand_var in extruderValues('material_brand'))) else 'normal'", + "options": + { + "normal": "Normal", + "interleaved": "Interleaved" + }, + "default_value": "normal", + "enabled": "prime_tower_enable", + "settable_per_mesh": false, + "settable_per_extruder": false + }, "prime_tower_size": { "label": "Prime Tower Size", "description": "The width of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", "default_value": 20, "resolve": "max(extruderValues('prime_tower_size'))", "minimum_value": "0", @@ -6629,7 +6881,20 @@ "default_value": 6, "minimum_value": "0", "maximum_value_warning": "(resolveOrValue('prime_tower_size') * 0.5) ** 2 * 3.14159 * resolveOrValue('layer_height') - sum(extruderValues('prime_tower_min_volume')) + prime_tower_min_volume", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "prime_tower_max_bridging_distance": + { + "label": "Prime Tower Maximum Bridging Distance", + "description": "The maximum length of the branches which may be printed over the air.", + "unit": "mm", + "type": "float", + "default_value": 5, + "minimum_value": "line_width", + "maximum_value_warning": "10.0", + "enabled": "prime_tower_enable", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6639,9 +6904,9 @@ "description": "The x coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", "default_value": 200, - "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "((resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_x')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1))) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - (machine_width / 2 if machine_center_is_zero else 0)", "settable_per_mesh": false, @@ -6653,9 +6918,9 @@ "description": "The y coordinate of the position of the prime tower.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", "default_value": 200, - "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "(machine_depth / -2 if machine_center_is_zero else 0) + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "settable_per_mesh": false, @@ -6666,7 +6931,7 @@ "label": "Wipe Inactive Nozzle on Prime Tower", "description": "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable')", + "enabled": "prime_tower_enable", "default_value": true, "settable_per_mesh": false, "settable_per_extruder": true @@ -6675,9 +6940,9 @@ { "value": "resolveOrValue('adhesion_type') in ['raft', 'brim']", "label": "Prime Tower Base", - "description": "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't.", + "description": "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('adhesion_type') != 'raft'", + "enabled": "prime_tower_enable and resolveOrValue('adhesion_type') != 'raft'", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false @@ -6686,11 +6951,11 @@ { "value": "resolveOrValue('raft_margin') if resolveOrValue('adhesion_type') == 'raft' else resolveOrValue('brim_width')", "label": "Prime Tower Base Size", - "description": "The width of the prime tower base.", + "description": "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", - "default_value": "resolveOrValue('brim_width')", + "enabled": "prime_tower_enable and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "default_value": 1.2, "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", "settable_per_mesh": false, @@ -6700,10 +6965,10 @@ { "value": "resolveOrValue('layer_height')", "label": "Prime Tower Base Height", - "description": "The height of the prime tower base.", + "description": "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "prime_tower_enable and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 0, "minimum_value": "0", "maximum_value": "machine_height", @@ -6712,16 +6977,32 @@ }, "prime_tower_base_curve_magnitude": { - "label": "Prime Tower Base Curve Magnitude", - "description": "The magnitude factor used for the curve of the prime tower foot.", + "label": "Prime Tower Base Slope", + "description": "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker.", "type": "float", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", + "enabled": "prime_tower_enable and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 4, "minimum_value": "0", "maximum_value": "10", "settable_per_mesh": false, "settable_per_extruder": false }, + "prime_tower_raft_base_line_spacing": + { + "label": "Prime Tower Raft Line Spacing", + "description": "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate.", + "unit": "mm", + "type": "float", + "default_value": 1.6, + "value": "raft_base_line_spacing", + "minimum_value": "0", + "minimum_value_warning": "raft_base_line_width", + "maximum_value_warning": "100", + "enabled": "prime_tower_enable and resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_base_extruder_nr" + }, "ooze_shield_enabled": { "label": "Enable Ooze Shield", @@ -7045,6 +7326,16 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, + "user_defined_print_order_enabled": + { + "label": "Set Print Sequence Manually", + "description": "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first.", + "type": "bool", + "default_value": false, + "settable_per_mesh": false, + "settable_per_extruder": false, + "enabled": "print_sequence == 'one_at_a_time'" + }, "infill_mesh": { "label": "Infill Mesh", @@ -7823,7 +8114,7 @@ "type": "float", "minimum_value": "5", "minimum_value_warning": "50", - "maximum_value_warning": "150", + "maximum_value_warning": "250", "enabled": "bridge_settings_enabled", "settable_per_mesh": true }, @@ -7850,7 +8141,7 @@ "type": "float", "minimum_value": "5", "minimum_value_warning": "50", - "maximum_value_warning": "150", + "maximum_value_warning": "250", "enabled": "bridge_settings_enabled", "settable_per_mesh": true }, @@ -8258,28 +8549,6 @@ "settable_per_mesh": true, "settable_per_extruder": true }, - "raft_remove_inside_corners": - { - "label": "Remove Raft Inside Corners", - "description": "Remove inside corners from the raft, causing the raft to become convex.", - "type": "bool", - "default_value": false, - "resolve": "any(extruderValues('raft_remove_inside_corners'))", - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "raft_base_wall_count": - { - "label": "Raft Base Wall Count", - "description": "The number of contours to print around the linear pattern in the base layer of the raft.", - "type": "int", - "default_value": 1, - "enabled": "resolveOrValue('adhesion_type') == 'raft'", - "resolve": "max(extruderValues('raft_base_wall_count'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, "group_outer_walls": { "label": "Group Outer Walls", @@ -8290,6 +8559,100 @@ } } }, + "ppr": + { + "label": "Print Process Reporting", + "type": "category", + "icon": "DocumentFilled", + "description": "Reporting events that go out of set thresholds", + "enabled": false, + "children": + { + "ppr_enable": + { + "label": "Enable Print Process Reporting", + "description": "Enable print process reporting for setting threshold values for possible fault detection.", + "type": "bool", + "enabled": false, + "default_value": false, + "value": false, + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "flow_warn_limit": + { + "label": "Flow Warning", + "description": "Limit on the flow warning for detection.", + "default_value": 15.0, + "enabled": "ppr_enable", + "unit": "%", + "type": "float", + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false + }, + "flow_anomaly_limit": + { + "label": "Flow Limit", + "description": "Limit on flow anomaly for detection.", + "default_value": 25.0, + "enabled": "ppr_enable", + "unit": "%", + "type": "float", + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false + }, + "print_temp_warn_limit": + { + "label": "Print temperature Warning", + "description": "Limit on Print temperature warning for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": 3.0, + "enabled": "ppr_enable", + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false + }, + "print_temp_anomaly_limit": + { + "label": "Print temperature Limit", + "description": "Limit on Print Temperature anomaly for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": 7.0, + "enabled": "ppr_enable", + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false + }, + "bv_temp_warn_limit": + { + "label": "Build Volume temperature Warning", + "description": "Limit on Build Volume Temperature warning for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": 7.5, + "enabled": "ppr_enable", + "settable_per_extruder": false, + "settable_per_mesh": false, + "settable_per_meshgroup": false + }, + "bv_temp_anomaly_limit": + { + "label": "Build Volume temperature Limit", + "description": "Limit on Build Volume temperature Anomaly for detection.", + "unit": "\u00b0C", + "type": "float", + "default_value": 10.0, + "enabled": "ppr_enable", + "settable_per_extruder": false, + "settable_per_mesh": false, + "settable_per_meshgroup": false + } + } + }, "command_line_settings": { "label": "Command Line Settings", diff --git a/resources/definitions/flashforge_adventurer3.def.json b/resources/definitions/flashforge_adventurer3.def.json new file mode 100644 index 0000000000..a05a7d5b8f --- /dev/null +++ b/resources/definitions/flashforge_adventurer3.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Adventurer 3", + "inherits": "flashforge_adventurer3c", + "metadata": + { + "visible": true, + "author": "Jeremie-C", + "supports_network_connection": true + }, + "overrides": + { + "machine_name": { "default_value": "Adventurer 3" } + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer3c.def.json b/resources/definitions/flashforge_adventurer3c.def.json new file mode 100644 index 0000000000..f66e542591 --- /dev/null +++ b/resources/definitions/flashforge_adventurer3c.def.json @@ -0,0 +1,33 @@ +{ + "version": 2, + "name": "Adventurer 3C", + "inherits": "flashforge_adventurer_base", + "metadata": + { + "visible": true, + "author": "Jeremie-C", + "quality_definition": "flashforge_adventurer3" + }, + "overrides": + { + "default_material_bed_temperature": { "maximum_value_warning": "100" }, + "gantry_height": { "value": "150" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": ";end gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 10], + [-20, -10], + [10, 10], + [10, -10] + ] + }, + "machine_height": { "default_value": 150 }, + "machine_name": { "default_value": "Adventurer 3C" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start" }, + "machine_width": { "default_value": 150 }, + "speed_print": { "maximum_value_warning": 100 } + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer4.def.json b/resources/definitions/flashforge_adventurer4.def.json new file mode 100644 index 0000000000..2460051a9d --- /dev/null +++ b/resources/definitions/flashforge_adventurer4.def.json @@ -0,0 +1,33 @@ +{ + "version": 2, + "name": "Adventurer 4", + "inherits": "flashforge_adventurer_base", + "metadata": + { + "visible": true, + "author": "Jeremie-C", + "quality_definition": "flashforge_adventurer4", + "supports_network_connection": true + }, + "overrides": + { + "default_material_bed_temperature": { "maximum_value_warning": "110" }, + "gantry_height": { "value": "250" }, + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": ";End Gcode\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-20, 10], + [-20, -10], + [10, 10], + [10, -10] + ] + }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Adventurer 4" }, + "machine_start_gcode": { "default_value": ";Start Gcode\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;End Start" }, + "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, + "machine_width": { "default_value": 220 } + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer4lite.def.json b/resources/definitions/flashforge_adventurer4lite.def.json new file mode 100644 index 0000000000..f5b1975601 --- /dev/null +++ b/resources/definitions/flashforge_adventurer4lite.def.json @@ -0,0 +1,14 @@ +{ + "version": 2, + "name": "Adventurer 4 Lite", + "inherits": "flashforge_adventurer4", + "metadata": + { + "visible": true, + "author": "Jeremie-C" + }, + "overrides": + { + "machine_name": { "default_value": "Adventurer 4 Lite" } + } +} \ No newline at end of file diff --git a/resources/definitions/flashforge_adventurer_base.def.json b/resources/definitions/flashforge_adventurer_base.def.json new file mode 100644 index 0000000000..c077a4584c --- /dev/null +++ b/resources/definitions/flashforge_adventurer_base.def.json @@ -0,0 +1,34 @@ +{ + "version": 2, + "name": "Flashforge Adventurer Base", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Jeremie-C", + "manufacturer": "Flashforge", + "file_formats": "application/gx;text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "flashforge_adventurer_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "adhesion_type": { "default_value": "skirt" }, + "default_material_print_temperature": { "maximum_value_warning": "265" }, + "layer_height": + { + "maximum_value_warning": "0.4", + "minimum_value_warning": "0.1" + }, + "machine_center_is_zero": { "default_value": true }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index 70ae7e8f96..8733a85a84 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -41,10 +41,9 @@ "infill_line_width": { "value": "line_width + 0.1" }, "infill_overlap": { "value": 30 }, "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, - "infill_sparse_density": { "value": 20 }, "infill_wipe_dist": { "value": 0.0 }, "layer_height_0": { "value": 0.2 }, - "machine_buildplate_type": { "value": "glass" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_end_gcode": { "default_value": "G91 ;use relative coordinates\nG1 E-4 F1500 ;retract the filament\nG1 X5 Y5 Z0.2 F5000 ;wipe\nG1 Z5 F1500 ;raise z\nG90 ;use absolute coordinates\nG1 X10 Y{machine_depth} F5000 ;park print head\n\nM107 ;turn off fan\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\nM84 ;disable motors" }, "machine_heated_bed": { "default_value": true }, @@ -93,7 +92,6 @@ "support_interface_height": { "value": "layer_height * 4" }, "support_interface_line_width": { "value": "line_width - 0.1" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/flyingbear_ghost_6.def.json b/resources/definitions/flyingbear_ghost_6.def.json new file mode 100644 index 0000000000..26c067285e --- /dev/null +++ b/resources/definitions/flyingbear_ghost_6.def.json @@ -0,0 +1,48 @@ +{ + "version": 2, + "name": "Flying Bear Ghost 6", + "inherits": "flyingbear_base", + "metadata": + { + "visible": true, + "author": "barrnet", + "platform": "flyingbear_platform.obj", + "platform_texture": "flyingbear_platform.png", + "quality_definition": "flyingbear_base" + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "acceleration_print": { "value": 1500 }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "jerk_enabled": { "value": false }, + "jerk_print": { "value": 20 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 1500 }, + "machine_depth": { "default_value": 210 }, + "machine_height": { "default_value": 210 }, + "machine_max_acceleration_e": { "value": 80000 }, + "machine_max_acceleration_x": { "value": 1000 }, + "machine_max_acceleration_y": { "value": 1000 }, + "machine_max_acceleration_z": { "value": 200 }, + "machine_max_feedrate_e": { "value": 70 }, + "machine_max_feedrate_x": { "value": 200 }, + "machine_max_feedrate_y": { "value": 200 }, + "machine_max_feedrate_z": { "value": 20 }, + "machine_max_jerk_e": { "value": 5.0 }, + "machine_max_jerk_xy": { "value": 15 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "Flying Bear Ghost 6" }, + "machine_steps_per_mm_e": { "default_value": 405 }, + "machine_steps_per_mm_x": { "default_value": 160 }, + "machine_steps_per_mm_y": { "default_value": 160 }, + "machine_steps_per_mm_z": { "default_value": 800 }, + "machine_width": { "default_value": 255 }, + "retraction_amount": { "value": 0.8 }, + "retraction_extrusion_window": { "value": 1.5 }, + "retraction_speed": { "default_value": 35 } + } +} \ No newline at end of file diff --git a/resources/definitions/fusion3_f410.def.json b/resources/definitions/fusion3_f410.def.json index 6f50a15fd8..83fdb8affd 100644 --- a/resources/definitions/fusion3_f410.def.json +++ b/resources/definitions/fusion3_f410.def.json @@ -112,7 +112,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 0 }, "support_xy_distance": { "value": "wall_line_width_0 * 3" }, diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json index 554b188b82..1d95bbbde4 100644 --- a/resources/definitions/inat_base.def.json +++ b/resources/definitions/inat_base.def.json @@ -113,7 +113,7 @@ "minimum_value_warning": "100" }, "adhesion_type": { "value": "'skirt'" }, - "brim_outside_only": { "value": false }, + "brim_location": { "value": "everywhere" }, "cool_fan_speed_min": { "value": "0.5*cool_fan_speed" }, "cool_min_layer_time_fan_speed_max": { "value": 10 }, "default_material_bed_temperature": { "maximum_value": "150" }, diff --git a/resources/definitions/kingroon_base.def.json b/resources/definitions/kingroon_base.def.json index 7b318018f7..b800b81cca 100644 --- a/resources/definitions/kingroon_base.def.json +++ b/resources/definitions/kingroon_base.def.json @@ -133,7 +133,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index b22a4267d1..f46c39ec1e 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -70,7 +70,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/koonovo_kn3.def.json b/resources/definitions/koonovo_kn3.def.json index ae978b12e0..06cf226ff4 100644 --- a/resources/definitions/koonovo_kn3.def.json +++ b/resources/definitions/koonovo_kn3.def.json @@ -88,7 +88,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/koonovo_kn5.def.json b/resources/definitions/koonovo_kn5.def.json index 96ae03a6d9..c8e444f5d4 100644 --- a/resources/definitions/koonovo_kn5.def.json +++ b/resources/definitions/koonovo_kn5.def.json @@ -88,7 +88,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/longer_base.def.json b/resources/definitions/longer_base.def.json index fdc78b838b..6010b7af46 100644 --- a/resources/definitions/longer_base.def.json +++ b/resources/definitions/longer_base.def.json @@ -109,7 +109,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/lotmaxx_sc10.def.json b/resources/definitions/lotmaxx_sc10.def.json index f2ef02c664..224328c505 100644 --- a/resources/definitions/lotmaxx_sc10.def.json +++ b/resources/definitions/lotmaxx_sc10.def.json @@ -20,10 +20,9 @@ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, "cool_min_layer_time": { "value": 10 }, "gantry_height": { "value": 40 }, - "jerk_enabled": { "value": false }, "jerk_print": { "value": 8 }, "jerk_travel": { "value": "jerk_print" }, - "jerk_travel_layer_0": { "value": " jerk_travel" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, "machine_depth": { "default_value": 235 }, "machine_end_gcode": { "default_value": "; SC-10 Custom End G-code\nG4 ; Wait\nM220 S100 ; Reset Speed factor override percentage to default (100%)\nM221 S100 ; Reset Extrude factor override percentage to default (100%)\nG91 ; Set coordinates to relative\nG1 F1800 E-3 ; Retract filament 3 mm to prevent oozing\nG1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely\nG90 ; Set coordinates to absolute\nG1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal\nM84 ; Disable stepper motors\n; End of custom end GCode" }, "machine_head_with_fans_polygon": diff --git a/resources/definitions/mingda_base.def.json b/resources/definitions/mingda_base.def.json index 23dcf21f48..b07dbe458f 100644 --- a/resources/definitions/mingda_base.def.json +++ b/resources/definitions/mingda_base.def.json @@ -119,7 +119,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/mixware_hyper_s.def.json b/resources/definitions/mixware_hyper_s.def.json index 9268b99808..e3d67de8e0 100644 --- a/resources/definitions/mixware_hyper_s.def.json +++ b/resources/definitions/mixware_hyper_s.def.json @@ -78,7 +78,7 @@ "minimum_value_warning": "0.01" }, "retraction_amount": { "default_value": 2 }, - "retraction_combing": { "value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_combing_max_distance": { "default_value": 0.5 }, "retraction_count_max": { "default_value": 100 }, "retraction_extrusion_window": diff --git a/resources/definitions/modix_v3_base.def.json b/resources/definitions/modix_v3_base.def.json index 911d674e68..80921d3254 100644 --- a/resources/definitions/modix_v3_base.def.json +++ b/resources/definitions/modix_v3_base.def.json @@ -82,6 +82,6 @@ "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, "wall_thickness": { "value": "line_width * 2" }, - "z_seam_corner": { "value": "z_seam_corner_weighted" } + "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } } \ No newline at end of file diff --git a/resources/definitions/modix_v4_base.def.json b/resources/definitions/modix_v4_base.def.json index 71b99c7cae..55d901db1c 100644 --- a/resources/definitions/modix_v4_base.def.json +++ b/resources/definitions/modix_v4_base.def.json @@ -82,6 +82,6 @@ "travel_avoid_supports": { "value": true }, "travel_retract_before_outer_wall": { "value": true }, "wall_thickness": { "value": "line_width * 2" }, - "z_seam_corner": { "value": "z_seam_corner_weighted" } + "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } } \ No newline at end of file diff --git a/resources/definitions/multicomp_mcpi200.def.json b/resources/definitions/multicomp_mcpi200.def.json new file mode 100644 index 0000000000..b9d0e36f29 --- /dev/null +++ b/resources/definitions/multicomp_mcpi200.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Multicomp Pro MCPI-200", + "inherits": "goofoo_near", + "metadata": + { + "visible": true, + "author": "Woosh", + "manufacturer": "Multicomp Pro" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Multicomp Pro MCPI-200" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_base.def.json b/resources/definitions/ratrig_base.def.json new file mode 100644 index 0000000000..69ab0f139d --- /dev/null +++ b/resources/definitions/ratrig_base.def.json @@ -0,0 +1,20 @@ +{ + "version": 2, + "name": "RatRig Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "nu-hin", + "manufacturer": "RatRig", + "file_formats": "text/x-gcode", + "exclude_materials": [], + "first_start_actions": [ "MachineSettingsAction" ], + "has_materials": true, + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "standard", + "quality_definition": "ratrig_base", + "supported_actions": [ "MachineSettingsAction" ] + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_200.def.json b/resources/definitions/ratrig_vcore3_200.def.json new file mode 100644 index 0000000000..143063b95f --- /dev/null +++ b/resources/definitions/ratrig_vcore3_200.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 200mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_200.stl", + "platform_offset": [ + 0, + 0, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "RatRig V-Core 3 200mm" }, + "machine_width": { "default_value": 200 } + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_300.def.json b/resources/definitions/ratrig_vcore3_300.def.json new file mode 100644 index 0000000000..c96860e90b --- /dev/null +++ b/resources/definitions/ratrig_vcore3_300.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 300mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_300.stl", + "platform_offset": [ + 0, + 5, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_name": { "default_value": "RatRig V-Core 3 300mm" }, + "machine_width": { "default_value": 300 } + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_400.def.json b/resources/definitions/ratrig_vcore3_400.def.json new file mode 100644 index 0000000000..fcd51686e8 --- /dev/null +++ b/resources/definitions/ratrig_vcore3_400.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 400mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_400.stl", + "platform_offset": [ + 0, + 3, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 400 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "RatRig V-Core 3 400mm" }, + "machine_width": { "default_value": 400 } + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_500.def.json b/resources/definitions/ratrig_vcore3_500.def.json new file mode 100644 index 0000000000..97798bc4ce --- /dev/null +++ b/resources/definitions/ratrig_vcore3_500.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "RatRig V-Core 3 500mm", + "inherits": "ratrig_vcore3_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vcore3_500.stl", + "platform_offset": [ + 0, + 0, + 0 + ], + "weight": 16 + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "RatRig V-Core 3 500mm" }, + "machine_width": { "default_value": 500 } + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vcore3_base.def.json b/resources/definitions/ratrig_vcore3_base.def.json new file mode 100644 index 0000000000..73049b2020 --- /dev/null +++ b/resources/definitions/ratrig_vcore3_base.def.json @@ -0,0 +1,116 @@ +{ + "version": 2, + "name": "RatRig V-Core 3", + "inherits": "ratrig_base", + "metadata": + { + "visible": false, + "has_machine_quality": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_topbottom": { "value": "acceleration_print / 3" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel / 3" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "brim_width": { "value": "3" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 2 }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "value": 3000 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 90], + [-40, -30], + [40, -30], + [40, 90] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 9000 }, + "machine_max_acceleration_y": { "value": 9000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 60 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 5 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "RatRig V-Core 3" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}" }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": "machine_nozzle_size * 2" }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_speed": { "value": 40 }, + "roofing_layer_count": { "value": 1 }, + "skin_overlap": { "value": 18 }, + "skirt_brim_minimal_length": { "default_value": 30 }, + "skirt_gap": { "value": 10 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_print": { "value": 100 }, + "speed_roofing": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.floor(speed_print / 2)" }, + "speed_travel": { "value": 250 }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_pattern": { "value": "'zigzag'" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_pattern": { "value": "'lines'" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/ratrig_vminion.def.json b/resources/definitions/ratrig_vminion.def.json new file mode 100644 index 0000000000..daf0d4f302 --- /dev/null +++ b/resources/definitions/ratrig_vminion.def.json @@ -0,0 +1,127 @@ +{ + "version": 2, + "name": "RatRig V-Minion", + "inherits": "ratrig_base", + "metadata": + { + "visible": true, + "platform": "ratrig_vminion.stl", + "has_machine_quality": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ratrig_base_extruder_0" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size", + "weight": 8 + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": "acceleration_topbottom" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + "acceleration_topbottom": { "value": "acceleration_print / 3" }, + "acceleration_travel": { "value": 3000 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel / 3" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "brim_replaces_support": { "value": false }, + "brim_width": { "value": "3" }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 2 }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": 30 }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0 }, + "layer_height": { "default_value": 0.2 }, + "layer_height_0": { "default_value": 0.2 }, + "machine_acceleration": { "value": 3000 }, + "machine_depth": { "default_value": 180 }, + "machine_end_gcode": { "default_value": "END_PRINT" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-40, 90], + [-40, -30], + [40, -30], + [40, 90] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 180 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 9000 }, + "machine_max_acceleration_y": { "value": 9000 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_feedrate_e": { "value": 60 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 5 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_name": { "default_value": "RatRig V-Minion" }, + "machine_shape": { "default_value": "rectangular" }, + "machine_show_variants": { "default_value": true }, + "machine_start_gcode": { "default_value": "START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0}" }, + "machine_width": { "default_value": 180 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.25" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": true }, + "retraction_amount": { "value": "machine_nozzle_size * 2" }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_speed": { "value": 40 }, + "roofing_layer_count": { "value": 1 }, + "skin_overlap": { "value": 18 }, + "skirt_brim_minimal_length": { "default_value": 30 }, + "skirt_gap": { "value": 10 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_print": { "value": 100 }, + "speed_roofing": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support": { "value": "math.floor(speed_print * 3 / 10)" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "math.floor(speed_print / 2)" }, + "speed_travel": { "value": 250 }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_wall": { "value": "math.floor(speed_print / 2)" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_pattern": { "value": "'zigzag'" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_bottom_pattern": { "value": "'lines'" }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_pro10plus.def.json b/resources/definitions/renkforce_pro10plus.def.json new file mode 100644 index 0000000000..414d59ec0b --- /dev/null +++ b/resources/definitions/renkforce_pro10plus.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Renkforce Pro 10+", + "inherits": "goofoo_near", + "metadata": + { + "visible": true, + "author": "Woosh (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce" + }, + "overrides": + { + "machine_depth": { "default_value": 360 }, + "machine_height": { "default_value": 400 }, + "machine_name": { "default_value": "Renkforce Pro 10+" }, + "machine_width": { "default_value": 360 } + } +} \ No newline at end of file diff --git a/resources/definitions/sovol_base_planetary.def.json b/resources/definitions/sovol_base_planetary.def.json index 8deee57012..a132f105a8 100644 --- a/resources/definitions/sovol_base_planetary.def.json +++ b/resources/definitions/sovol_base_planetary.def.json @@ -13,8 +13,6 @@ "machine_acceleration": { "value": 1000 }, "machine_max_feedrate_e": { "value": 40 }, "machine_max_jerk_xy": { "value": 5 }, - "material_print_temperature": { "value": 195 }, - "retraction_speed": { "default_value": 30 }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } } \ No newline at end of file diff --git a/resources/definitions/sovol_sv04_copy_mode.def.json b/resources/definitions/sovol_sv04_copy_mode.def.json index 7c98aadf4d..5d8d356e9d 100644 --- a/resources/definitions/sovol_sv04_copy_mode.def.json +++ b/resources/definitions/sovol_sv04_copy_mode.def.json @@ -14,7 +14,7 @@ "overrides": { "machine_depth": { "default_value": 302 }, - "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_height": { "default_value": 402 }, "machine_name": { "default_value": "SV04 Copy Mode" }, "machine_start_gcode": { "default_value": ";SV04 start\nM140 S{material_bed_temperature};\nM104 S{material_print_temperature};\nM280 P0 S160;\nG4 P100;\nG28;\nM420 S1;\nM190 S{material_bed_temperature};\nM109 S{material_print_temperature};\nG92 E0;\nG1 X10.1 Y20 Z0.28 F5000.0;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15;\nG1 X10.4 Y200.0 Z0.28 F5000.0;\nG1 X10.4 Y20 Z0.28 F1500.0 E30;\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000;" }, diff --git a/resources/definitions/sovol_sv04_dual_mode.def.json b/resources/definitions/sovol_sv04_dual_mode.def.json index 49b3d483db..1d7fe7d10d 100644 --- a/resources/definitions/sovol_sv04_dual_mode.def.json +++ b/resources/definitions/sovol_sv04_dual_mode.def.json @@ -18,7 +18,7 @@ "overrides": { "machine_depth": { "default_value": 302 }, - "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_extruder_count": { "default_value": 2 }, "machine_height": { "default_value": 402 }, "machine_name": { "default_value": "SV04 Dual Mode" }, diff --git a/resources/definitions/sovol_sv04_mirror_mode.def.json b/resources/definitions/sovol_sv04_mirror_mode.def.json index 70dc7b8392..3029d4cec1 100644 --- a/resources/definitions/sovol_sv04_mirror_mode.def.json +++ b/resources/definitions/sovol_sv04_mirror_mode.def.json @@ -14,7 +14,7 @@ "overrides": { "machine_depth": { "default_value": 302 }, - "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_height": { "default_value": 402 }, "machine_name": { "default_value": "SV04 Mirror Mode" }, "machine_start_gcode": { "default_value": ";SV04 start\nM140 S{material_bed_temperature};\nM104 S{material_print_temperature};\nM280 P0 S160;\nG4 P100;\nG28;\nM420 S1;\nM190 S{material_bed_temperature};\nM109 S{material_print_temperature};\nG92 E0;\nG1 X10.1 Y20 Z0.28 F5000.0;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15;\nG1 X10.4 Y200.0 Z0.28 F5000.0;\nG1 X10.4 Y20 Z0.28 F1500.0 E30;\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000;" }, diff --git a/resources/definitions/sovol_sv04_single_mode_1.def.json b/resources/definitions/sovol_sv04_single_mode_1.def.json index 88919a040a..4f04dfe696 100644 --- a/resources/definitions/sovol_sv04_single_mode_1.def.json +++ b/resources/definitions/sovol_sv04_single_mode_1.def.json @@ -14,7 +14,7 @@ "overrides": { "machine_depth": { "default_value": 302 }, - "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_height": { "default_value": 402 }, "machine_name": { "default_value": "SV04 Single Mode 01" }, "machine_start_gcode": { "default_value": ";SV04 start\nM140 S{material_bed_temperature};\nM104 S{material_print_temperature};\nM280 P0 S160;\nG4 P100;\nG28;\nM420 S1;\nM190 S{material_bed_temperature};\nM109 S{material_print_temperature};\nG92 E0;\nG1 X10.1 Y20 Z0.28 F5000.0;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15;\nG1 X10.4 Y200.0 Z0.28 F5000.0;\nG1 X10.4 Y20 Z0.28 F1500.0 E30;\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000;" }, diff --git a/resources/definitions/sovol_sv04_single_mode_2.def.json b/resources/definitions/sovol_sv04_single_mode_2.def.json index 8c4ab10f9d..669539f3a6 100644 --- a/resources/definitions/sovol_sv04_single_mode_2.def.json +++ b/resources/definitions/sovol_sv04_single_mode_2.def.json @@ -14,7 +14,7 @@ "overrides": { "machine_depth": { "default_value": 302 }, - "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, + "machine_end_gcode": { "default_value": ";SV04 end\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" }, "machine_height": { "default_value": 402 }, "machine_name": { "default_value": "SV04 Single Mode 02" }, "machine_start_gcode": { "default_value": ";SV04 start\nM140 S{material_bed_temperature};\nM104 S{material_print_temperature};\nM280 P0 S160;\nG4 P100;\nG28;\nM420 S1;\nM190 S{material_bed_temperature};\nM109 S{material_print_temperature};\nG92 E0;\nG1 X10.1 Y20 Z0.28 F5000.0;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15;\nG1 X10.4 Y200.0 Z0.28 F5000.0;\nG1 X10.4 Y20 Z0.28 F1500.0 E30;\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000;" }, diff --git a/resources/definitions/sovol_sv06_plus.def.json b/resources/definitions/sovol_sv06_plus.def.json index a88c30d13c..1edf3b6819 100644 --- a/resources/definitions/sovol_sv06_plus.def.json +++ b/resources/definitions/sovol_sv06_plus.def.json @@ -20,7 +20,7 @@ "infill_wipe_dist": { "value": 0.1 }, "jerk_travel": { "value": "jerk_print" }, "machine_depth": { "default_value": 300 }, - "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y220 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y220 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }, "machine_head_with_fans_polygon": { "default_value": [ diff --git a/resources/definitions/tank_m_base.def.json b/resources/definitions/tank_m_base.def.json index 3692793259..dfeaa7e9d8 100644 --- a/resources/definitions/tank_m_base.def.json +++ b/resources/definitions/tank_m_base.def.json @@ -70,7 +70,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/tronxy_x.def.json b/resources/definitions/tronxy_x.def.json index 683761a81b..233dbb1c64 100644 --- a/resources/definitions/tronxy_x.def.json +++ b/resources/definitions/tronxy_x.def.json @@ -111,7 +111,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, "support_xy_distance": { "value": "wall_line_width_0 * 3" }, diff --git a/resources/definitions/two_trees_base.def.json b/resources/definitions/two_trees_base.def.json index ff01e46f6f..c83476db65 100644 --- a/resources/definitions/two_trees_base.def.json +++ b/resources/definitions/two_trees_base.def.json @@ -68,7 +68,6 @@ "support_interface_density": { "value": 33.333 }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": "1 if (support_structure == 'tree') else 0" }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 1669dd5e00..3821fdefd6 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -8,8 +8,8 @@ "author": "Ultimaker", "manufacturer": "Ultimaker B.V.", "exclude_materials": [ - "generic_hips", - "structur3d_dap100silicone" + "structur3d_", + "generic_hips" ] }, "overrides": @@ -96,16 +96,14 @@ "raft_interface_thickness": { "value": "(raft_base_thickness + raft_surface_thickness) / 2" }, "raft_speed": { "value": 15 }, "raft_surface_fan_speed": { "value": "cool_fan_speed_min" }, + "raft_surface_monotonic": { "value": true }, "raft_surface_speed": { "value": "speed_topbottom" }, - "relative_extrusion": - { - "enabled": false, - "value": false - }, + "relative_extrusion": { "enabled": false }, "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_combing_max_distance": { "value": 15 }, "retraction_count_max": { "value": 25 }, "retraction_extrusion_window": { "value": 1 }, + "retraction_min_travel": { "value": 5 }, "roofing_layer_count": { "value": "1" }, "roofing_material_flow": { "value": "material_flow" }, "skin_angles": { "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" }, diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index def26c9b6f..8c0e066cd1 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -10,23 +10,23 @@ "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "exclude_materials": [ + "generic_bam", + "generic_cffcpe", + "generic_cffpa", + "generic_flexible", + "generic_gffcpe", + "generic_gffpa", "generic_hips", + "generic_petcf", "generic_petg", - "structur3d_dap100silicone", - "ultimaker_petg_red", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent" + "generic_pva", + "generic_tough_pla", + "structur3d_", + "ultimaker_bam", + "ultimaker_petcf", + "ultimaker_petg", + "ultimaker_pva", + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker2.hex", "has_machine_quality": true, diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index 1b3ddcc953..b5ad30bb8d 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -9,43 +9,23 @@ "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "exclude_materials": [ - "generic_hips", - "generic_petg", "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "generic_tough_pla", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tough_pla_blue", - "ultimaker_tough_pla_gray", - "ultimaker_tough_pla_yellow", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", - "structur3d_dap100silicone", - "ultimaker_petg_red", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray" + "generic_petg", + "generic_pva", + "generic_tough_pla", + "structur3d_", + "ultimaker_bam", + "ultimaker_petcf", + "ultimaker_petg", + "ultimaker_pva", + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker2plus.hex", "first_start_actions": [], diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 20e914284f..8aae2d4c19 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -9,20 +9,19 @@ "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker2_plus_connect_platform.obj", "exclude_materials": [ - "generic_hips", "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray", - "generic_petcf", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", - "structur3d_dap100silicone" + "generic_hips", + "generic_petcf", + "generic_pva", + "structur3d_", + "ultimaker_bam", + "ultimaker_petcf", + "ultimaker_pva" ], "first_start_actions": [], "has_machine_materials": true, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 058b3dfa7a..173fbdb524 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -13,16 +13,15 @@ 9066 ], "exclude_materials": [ - "generic_hips", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray", - "structur3d_dap100silicone" + "structur3d_", + "ultimaker_petcf" ], "firmware_update_info": { @@ -150,12 +149,12 @@ "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, "prime_tower_enable": { "default_value": true }, + "prime_tower_position_x": { "value": "185" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "skin_overlap": { "value": "10" }, "speed_prime_tower": { "value": "speed_topbottom" }, diff --git a/resources/definitions/ultimaker_factor4.def.json b/resources/definitions/ultimaker_factor4.def.json new file mode 100644 index 0000000000..5501148967 --- /dev/null +++ b/resources/definitions/ultimaker_factor4.def.json @@ -0,0 +1,365 @@ +{ + "version": 2, + "name": "UltiMaker Factor 4", + "inherits": "ultimaker", + "metadata": + { + "visible": true, + "author": "UltiMaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-ufp;text/x-gcode", + "platform": "ultimaker_factor4_platform.obj", + "bom_numbers": [ + 227380 + ], + "firmware_update_info": + { + "check_urls": [ "http://software.ultimaker.com/releases/firmware/227380/stable/um-update.swu.version" ], + "id": 227380, + "update_url": "https://ultimaker.com/firmware" + }, + "first_start_actions": [ "DiscoverUM3Action" ], + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_factor4_extruder_left", + "1": "ultimaker_factor4_extruder_right" + }, + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "UltimakerFactor4Backplate.png", + "preferred_material": "ultimaker_tough_pla_black", + "preferred_quality_type": "draft", + "preferred_variant_name": "AA 0.4", + "supported_actions": [ "DiscoverUM3Action" ], + "supports_material_export": true, + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Print core", + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": { "value": "True" }, + "acceleration_prime_tower": { "value": "acceleration_print" }, + "acceleration_print": { "value": "2500" }, + "acceleration_support": { "value": "acceleration_print" }, + "acceleration_support_interface": { "value": "acceleration_topbottom" }, + "acceleration_topbottom": { "value": "acceleration_print" }, + "acceleration_wall": { "value": "acceleration_print" }, + "acceleration_wall_0": { "value": "acceleration_wall" }, + "acceleration_wall_x": { "value": "acceleration_wall" }, + "adhesion_type": { "value": "'skirt'" }, + "bridge_enable_more_layers": { "value": "True" }, + "bridge_fan_speed_2": { "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" }, + "bridge_settings_enabled": { "value": "True" }, + "bridge_skin_density": { "value": "100" }, + "bridge_skin_material_flow": { "maximum_value": "100" }, + "bridge_skin_material_flow_2": { "maximum_value": "100" }, + "bridge_skin_material_flow_3": { "maximum_value": "100" }, + "bridge_wall_material_flow": { "maximum_value": "100" }, + "bridge_wall_speed": { "value": "speed_wall" }, + "brim_width": { "value": "5" }, + "build_volume_temperature": + { + "maximum_value": "max(35, min((material_bed_temperature + 20) / 2, 70))", + "maximum_value_warning": "max(30, min((material_bed_temperature + 10) / 2, 70))", + "minimum_value": "max((material_bed_temperature - 30) / 2, 30)", + "minimum_value_warning": "max((material_bed_temperature - 20) / 2, 30)" + }, + "cool_min_layer_time": { "value": 3 }, + "cool_min_layer_time_fan_speed_max": { "value": "cool_min_layer_time + 12" }, + "cool_min_speed": { "value": "round(speed_wall_0 * 1 / 2) if cool_lift_head else round(speed_wall_0 / 3)" }, + "default_material_print_temperature": { "maximum_value": "340" }, + "expand_skins_expand_distance": { "value": "skin_preshrink * 2" }, + "extruder_prime_pos_abs": { "default_value": true }, + "gantry_height": { "value": 35 }, + "gradual_support_infill_steps": { "value": "3 if support_interface_enable and support_structure != 'tree' else 0" }, + "group_outer_walls": { "value": "False" }, + "infill_before_walls": { "value": "False if infill_sparse_density > 50 else True" }, + "infill_enable_travel_optimization": { "value": "True" }, + "infill_material_flow": + { + "maximum_value": "100", + "value": "(1 + (skin_material_flow-infill_sparse_density) / 100 if infill_sparse_density > skin_material_flow else 1) * material_flow" + }, + "infill_overlap": { "value": "0" }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 50 else 'triangles'" }, + "infill_sparse_density": { "maximum_value": "100" }, + "infill_wipe_dist": { "value": "0" }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": { "value": "True" }, + "jerk_travel": + { + "maximum_value": "5", + "value": "5" + }, + "jerk_travel_enabled": { "value": "True" }, + "layer_height": { "value": "min(min(extruderValues('machine_nozzle_size')) / 2, 0.2)" }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_depth": { "default_value": 240 }, + "machine_end_gcode": { "default_value": "" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-30, -80], + [-30, 20], + [50, 20], + [50, -80] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_heated_build_volume": { "default_value": true }, + "machine_height": { "default_value": 300 }, + "machine_max_acceleration_e": { "default_value": 2000 }, + "machine_max_feedrate_x": { "default_value": 125 }, + "machine_max_feedrate_y": { "default_value": 125 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_max_jerk_e": { "default_value": 2 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "Ultimaker Factor 4" }, + "machine_nozzle_cool_down_speed": { "value": "0.3 + 0.0025 * material_print_temperature" }, + "machine_nozzle_heat_up_speed": { "value": "2 - 0.0025 * material_print_temperature" }, + "machine_start_gcode": { "default_value": "" }, + "machine_width": { "default_value": 330 }, + "material_bed_temperature": { "maximum_value": "120" }, + "material_bed_temperature_layer_0": { "maximum_value": "120" }, + "material_final_print_temperature": + { + "maximum_value": "340", + "value": "material_print_temperature" + }, + "material_flow": + { + "maximum_value": "100", + "value": "100" + }, + "material_flow_layer_0": + { + "maximum_value": "100", + "value": "95" + }, + "material_initial_print_temperature": + { + "maximum_value": "340", + "value": "material_print_temperature" + }, + "material_print_temperature": + { + "maximum_value": "340", + "value": "default_material_print_temperature" + }, + "material_print_temperature_layer_0": { "maximum_value": "320" }, + "material_shrinkage_percentage": { "enabled": true }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": false, + "enabled": true + }, + "prime_tower_base_curve_magnitude": { "value": 2 }, + "prime_tower_base_height": { "value": 6 }, + "prime_tower_base_size": { "value": 6 }, + "prime_tower_brim_enable": { "value": "True" }, + "prime_tower_enable": { "value": "True" }, + "prime_tower_flow": + { + "maximum_value": "100", + "value": "material_flow" + }, + "prime_tower_min_volume": { "value": "10" }, + "prime_tower_position_x": { "value": "315" }, + "prime_tower_position_y": { "value": "25" }, + "prime_tower_wipe_enabled": { "value": "True" }, + "retraction_amount": { "value": "1.5" }, + "retraction_combing_max_distance": { "value": "speed_travel / 10" }, + "retraction_count_max": { "value": "200" }, + "retraction_hop": { "value": "0.2" }, + "retraction_hop_enabled": { "value": "True" }, + "retraction_hop_only_when_collides": { "value": "True" }, + "retraction_min_travel": { "value": 1 }, + "retraction_prime_speed": { "value": "15" }, + "retraction_speed": { "value": "25" }, + "roofing_material_flow": + { + "maximum_value": "100", + "value": "skin_material_flow" + }, + "roofing_monotonic": { "value": "True" }, + "skin_material_flow": + { + "maximum_value": "100", + "value": "material_flow * 0.93" + }, + "skin_material_flow_layer_0": + { + "maximum_value": "100", + "value": "material_flow_layer_0" + }, + "skin_monotonic": { "value": "False" }, + "skin_overlap": { "value": "0" }, + "skirt_brim_material_flow": + { + "maximum_value": "100", + "value": "material_flow" + }, + "skirt_brim_minimal_length": { "value": "500" }, + "small_skin_on_surface": { "value": "True" }, + "small_skin_width": { "value": "1.5" }, + "speed_infill": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_print" + }, + "speed_layer_0": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "30" + }, + "speed_prime_tower": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_topbottom" + }, + "speed_print": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "50" + }, + "speed_print_layer_0": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_layer_0" + }, + "speed_roofing": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_wall_0" + }, + "speed_support": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_print" + }, + "speed_support_interface": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_topbottom" + }, + "speed_topbottom": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_print" + }, + "speed_travel": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "125" + }, + "speed_travel_layer_0": { "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)" }, + "speed_wall": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "30" + }, + "speed_wall_0": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_wall" + }, + "speed_wall_x": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_print" + }, + "speed_wall_x_roofing": + { + "maximum_value": "min(machine_max_feedrate_x, machine_max_feedrate_y)", + "value": "speed_wall" + }, + "support_angle": { "value": "60" }, + "support_bottom_distance": { "value": "support_z_distance * 2" }, + "support_bottom_height": { "value": "support_interface_height" }, + "support_bottom_material_flow": + { + "maximum_value": "100", + "value": "support_interface_material_flow" + }, + "support_brim_enable": { "value": "True" }, + "support_fan_enable": { "value": "True" }, + "support_interface_enable": { "value": "True" }, + "support_interface_height": { "value": "layer_height * 2" }, + "support_interface_material_flow": { "maximum_value": "100" }, + "support_material_flow": + { + "maximum_value": "100", + "value": "material_flow" + }, + "support_roof_material_flow": + { + "maximum_value": "100", + "value": "support_interface_material_flow" + }, + "support_supported_skin_fan_speed": { "value": "cool_fan_speed_max" }, + "support_top_distance": { "value": "support_z_distance" }, + "support_z_distance": { "value": "max(0.2, layer_height)" }, + "switch_extruder_retraction_amount": { "value": "10" }, + "switch_extruder_retraction_speeds": { "value": "retraction_speed" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_thickness": { "value": "wall_thickness" }, + "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter * 2" }, + "travel_avoid_supports": { "value": "True" }, + "wall_0_inset": { "value": "0" }, + "wall_0_material_flow": + { + "maximum_value": "100", + "value": "wall_material_flow" + }, + "wall_0_material_flow_layer_0": + { + "maximum_value": "100", + "value": "material_flow_layer_0" + }, + "wall_0_material_flow_roofing": + { + "maximum_value": "100", + "value": "wall_material_flow" + }, + "wall_0_wipe_dist": { "value": "0" }, + "wall_material_flow": + { + "maximum_value": "100", + "value": "material_flow" + }, + "wall_x_material_flow": + { + "maximum_value": "100", + "value": "(wall_material_flow + skin_material_flow) / 2" + }, + "wall_x_material_flow_layer_0": + { + "maximum_value": "100", + "value": "material_flow_layer_0" + }, + "wall_x_material_flow_roofing": + { + "maximum_value": "100", + "value": "(wall_material_flow + roofing_material_flow) / 2" + }, + "z_seam_position": { "value": "'backleft'" }, + "z_seam_type": { "value": "'back'" }, + "zig_zaggify_infill": { "value": "True" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json new file mode 100644 index 0000000000..22d25f92c7 --- /dev/null +++ b/resources/definitions/ultimaker_method_base.def.json @@ -0,0 +1,436 @@ +{ + "version": 2, + "name": "UltiMaker Method Base Profile", + "inherits": "ultimaker", + "metadata": + { + "visible": false, + "author": "UltiMaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_platform.stl", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_bvoh_175", + "generic_cpe_175", + "generic_hips_175", + "generic_pc_175", + "ultimaker_rapidrinse_175", + "generic_tpu_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_" + ], + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_method_extruder_left", + "1": "ultimaker_method_extruder_right" + }, + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_material": "generic_pla_175", + "preferred_quality_type": "fast", + "preferred_variant_name": "1A", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": + { + "enabled": false, + "value": true + }, + "acceleration_infill": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_layer_0": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_prime_tower": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_print": + { + "enabled": false, + "value": 800 + }, + "acceleration_print_layer_0": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_roofing": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_bottom": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_infill": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_interface": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_roof": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_topbottom": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_travel": + { + "enabled": false, + "value": 5000 + }, + "acceleration_travel_enabled": + { + "enabled": false, + "value": true + }, + "acceleration_travel_layer_0": + { + "enabled": false, + "value": "acceleration_travel" + }, + "acceleration_wall": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_0": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_0_roofing": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_x": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_x_roofing": + { + "enabled": false, + "value": "acceleration_print" + }, + "adhesion_extruder_nr": { "value": 0 }, + "adhesion_type": { "value": "'raft'" }, + "bridge_enable_more_layers": { "value": true }, + "bridge_fan_speed": { "value": "cool_fan_speed_max" }, + "bridge_fan_speed_2": { "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" }, + "bridge_fan_speed_3": { "value": "cool_fan_speed_min" }, + "bridge_settings_enabled": { "value": true }, + "bridge_skin_density": { "value": 100 }, + "bridge_skin_density_2": { "value": 100 }, + "bridge_skin_density_3": { "value": 100 }, + "bridge_skin_material_flow": { "value": "material_flow" }, + "bridge_skin_material_flow_2": { "value": "material_flow" }, + "bridge_skin_material_flow_3": { "value": "material_flow" }, + "bridge_skin_speed": { "value": "speed_topbottom" }, + "bridge_skin_speed_2": { "value": "speed_topbottom" }, + "bridge_skin_speed_3": { "value": "speed_topbottom" }, + "bridge_sparse_infill_max_density": { "value": 50 }, + "bridge_wall_coast": { "value": 0 }, + "bridge_wall_material_flow": { "value": "material_flow" }, + "bridge_wall_speed": { "value": "speed_wall" }, + "brim_width": { "value": 5 }, + "extruder_prime_pos_abs": { "default_value": true }, + "gradual_support_infill_steps": { "value": 0 }, + "infill_before_walls": { "value": false }, + "infill_enable_travel_optimization": { "value": true }, + "infill_material_flow": { "value": "material_flow" }, + "infill_overlap": { "value": 0 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'lines'" }, + "infill_wipe_dist": { "value": 0 }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": + { + "enabled": false, + "value": true + }, + "jerk_infill": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_layer_0": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_prime_tower": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_print": + { + "enabled": false, + "value": 6.25 + }, + "jerk_print_layer_0": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_roofing": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_bottom": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_infill": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_interface": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_roof": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_topbottom": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_travel": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_travel_enabled": + { + "enabled": false, + "value": true + }, + "jerk_travel_layer_0": + { + "enabled": false, + "value": "jerk_travel" + }, + "jerk_wall": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_0": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_0_roofing": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_x": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_x_roofing": + { + "enabled": false, + "value": "jerk_print" + }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "value": true }, + "machine_end_gcode": { "default_value": "" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_heated_bed": { "default_value": false }, + "machine_heated_build_volume": { "default_value": true }, + "machine_min_cool_heat_time_window": { "value": 15 }, + "machine_name": { "default_value": "UltiMaker Method" }, + "machine_nozzle_cool_down_speed": { "value": 0.8 }, + "machine_nozzle_heat_up_speed": { "value": 3.5 }, + "machine_scale_fan_speed_zero_to_one": { "value": true }, + "machine_start_gcode": { "default_value": "" }, + "material_bed_temperature": { "enabled": "machine_heated_bed" }, + "material_bed_temperature_layer_0": { "enabled": "machine_heated_bed" }, + "material_final_print_temperature": { "value": "material_print_temperature-10" }, + "material_flow": { "value": 97 }, + "material_initial_print_temperature": { "value": "material_print_temperature-10" }, + "material_print_temperature": { "value": "default_material_print_temperature" }, + "material_shrinkage_percentage": { "enabled": true }, + "min_wall_line_width": { "value": 0.4 }, + "minimum_support_area": { "value": 0.1 }, + "multiple_mesh_overlap": { "value": 0 }, + "optimize_wall_printing_order": { "value": true }, + "prime_blob_enable": { "enabled": false }, + "prime_tower_base_curve_magnitude": { "value": 2 }, + "prime_tower_base_height": { "value": 6 }, + "prime_tower_base_size": { "value": 10 }, + "prime_tower_enable": { "value": false }, + "prime_tower_flow": { "value": "material_flow" }, + "prime_tower_line_width": { "value": 1 }, + "prime_tower_raft_base_line_spacing": { "value": "raft_base_line_width" }, + "prime_tower_wipe_enabled": { "value": true }, + "print_sequence": { "enabled": false }, + "raft_base_line_spacing": { "value": "2*raft_base_line_width" }, + "raft_base_line_width": { "value": 1.4 }, + "raft_base_speed": { "value": 10 }, + "raft_base_thickness": { "value": 0.8 }, + "raft_interface_extruder_nr": { "value": "raft_surface_extruder_nr" }, + "raft_interface_layers": { "value": 2 }, + "raft_interface_line_width": { "value": 0.7 }, + "raft_interface_speed": { "value": 90 }, + "raft_interface_thickness": { "value": 0.3 }, + "raft_interface_wall_count": { "value": "raft_wall_count" }, + "raft_margin": { "value": 1.2 }, + "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, + "raft_surface_wall_count": { "value": "raft_wall_count" }, + "retraction_amount": { "value": 0.75 }, + "retraction_combing": { "value": "'off'" }, + "retraction_combing_max_distance": { "value": "speed_travel / 10" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 0 }, + "retraction_hop": { "value": 0.4 }, + "retraction_hop_enabled": { "value": true }, + "retraction_hop_only_when_collides": { "value": false }, + "retraction_prime_speed": { "value": "retraction_speed" }, + "retraction_speed": { "value": 5 }, + "roofing_layer_count": { "value": 2 }, + "roofing_monotonic": { "value": true }, + "skin_material_flow": { "value": "0.95*material_flow" }, + "skin_outline_count": { "value": 0 }, + "skin_overlap": { "value": 0 }, + "skin_preshrink": { "value": 0 }, + "skirt_brim_material_flow": { "value": "material_flow" }, + "skirt_brim_minimal_length": { "value": 500 }, + "small_skin_width": { "value": 4 }, + "speed_equalize_flow_width_factor": { "value": 0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50 }, + "speed_roofing": { "value": "speed_wall_0" }, + "speed_support": { "value": "speed_wall" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_wall" }, + "speed_travel": { "value": 250 }, + "speed_wall": { "value": "speed_print * 40/50" }, + "speed_wall_0": { "value": "speed_wall * 30/40" }, + "speed_wall_x": { "value": "speed_wall" }, + "support_angle": { "value": 40 }, + "support_bottom_distance": { "value": "support_z_distance / 2" }, + "support_bottom_material_flow": { "value": "material_flow" }, + "support_brim_enable": { "value": false }, + "support_conical_min_width": { "value": 10 }, + "support_enable": { "value": true }, + "support_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, + "support_fan_enable": { "value": false }, + "support_infill_rate": { "value": 20.0 }, + "support_interface_enable": { "value": true }, + "support_interface_material_flow": { "value": "material_flow" }, + "support_interface_offset": { "value": 0 }, + "support_interface_pattern": { "value": "'lines'" }, + "support_interface_wall_count": { "value": 2 }, + "support_material_flow": { "value": "material_flow" }, + "support_pattern": { "value": "'lines'" }, + "support_roof_material_flow": { "value": "material_flow" }, + "support_supported_skin_fan_speed": { "value": "cool_fan_speed_max" }, + "support_top_distance": { "value": "support_z_distance" }, + "support_wall_count": { "value": "1 if support_conical_enabled or support_structure == 'tree' else 0" }, + "support_xy_distance": { "value": 0.2 }, + "support_z_distance": { "value": 0 }, + "switch_extruder_retraction_amount": { "value": 0.5 }, + "switch_extruder_retraction_speeds": { "value": "retraction_speed" }, + "top_bottom_thickness": { "value": "5*layer_height" }, + "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, + "travel_avoid_other_parts": { "value": false }, + "wall_0_inset": { "value": 0 }, + "wall_0_material_flow": { "value": "material_flow" }, + "wall_0_wipe_dist": { "value": 0.8 }, + "wall_material_flow": { "value": "material_flow" }, + "wall_x_material_flow": { "value": "material_flow" }, + "xy_offset": { "value": 0 }, + "xy_offset_layer_0": { "value": "xy_offset" }, + "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_position": { "value": "'backright'" }, + "z_seam_type": { "value": "'sharpest_corner'" }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json new file mode 100644 index 0000000000..9828ba96f2 --- /dev/null +++ b/resources/definitions/ultimaker_methodx.def.json @@ -0,0 +1,122 @@ +{ + "version": 2, + "name": "UltiMaker Method X", + "inherits": "ultimaker_method_base", + "metadata": + { + "visible": true, + "author": "UltiMaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_platform.stl", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_asa_175", + "generic_abs_175", + "generic_bvoh_175", + "generic_petg_175", + "generic_pla_175", + "generic_tough_pla_175", + "generic_pva_175", + "generic_cffpa_175", + "generic_cpe_175", + "generic_nylon_175", + "generic_hips_175", + "generic_pc_175", + "generic_tpu_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_" + ], + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_methodx_extruder_left", + "1": "ultimaker_methodx_extruder_right" + }, + "platform_offset": [ + 0, + 0, + 16 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_material": "ultimaker_absr_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "1XA", + "reference_machine_id": "lava_f", + "supports_network_connection": true, + "supports_usb_connection": false, + "variant_definition": "ultimaker_methodx", + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "machine_depth": { "default_value": 236.48 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-141.65, -118.11], + [141.65, -118.11], + [141.65, -94], + [-141.65, -94] + ], + [ + [-141.65, 118.37], + [141.65, 118.37], + [141.65, 94], + [-141.65, 94] + ], + [ + [-141.65, -118.11], + [-75, -118.11], + [-75, 118.37], + [-141.65, 118.37] + ], + [ + [75, -118.11], + [141.65, -118.11], + [141.65, 118.37], + [75, 118.37] + ] + ] + }, + "machine_height": { "default_value": 196 }, + "machine_name": { "default_value": "UltiMaker Method X" }, + "machine_width": { "default_value": 283.3 }, + "prime_tower_position_x": { "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_y": { "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json new file mode 100644 index 0000000000..6c12218b51 --- /dev/null +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -0,0 +1,74 @@ +{ + "version": 2, + "name": "UltiMaker Method XL", + "inherits": "ultimaker_methodx", + "metadata": + { + "visible": true, + "author": "UltiMaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_xl_platform.stl", + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_methodxl_extruder_left", + "1": "ultimaker_methodxl_extruder_right" + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_quality_type": "draft", + "reference_machine_id": "magma_10", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "machine_depth": { "default_value": 320 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-204, -160], + [204, -160], + [204, -154.5], + [-204, -154.5] + ], + [ + [-204, 160], + [204, 160], + [204, 154.5], + [-204, 154.5] + ], + [ + [-205, -160], + [-154.5, -160], + [-154.5, 160], + [-205, 160] + ], + [ + [154.5, -160], + [205, -160], + [205, 160], + [154.5, 160] + ] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 320 }, + "machine_name": { "default_value": "UltiMaker Method XL" }, + "machine_width": { "default_value": 410 }, + "prime_tower_position_x": { "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" }, + "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" }, + "speed_travel": { "value": 500 } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index 00f4615971..6848cb3c86 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -10,43 +10,22 @@ "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", "exclude_materials": [ - "generic_hips", - "generic_petg", - "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "generic_tough_pla", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tough_pla_blue", - "ultimaker_tough_pla_gray", - "ultimaker_tough_pla_yellow", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", - "structur3d_dap100silicone", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent", - "ultimaker_petg_red", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray" + "generic_petg", + "generic_pva", + "generic_tough_pla", + "structur3d_", + "ultimaker_bam", + "ultimaker_petcf", + "ultimaker_petg", + "ultimaker_pva", + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker-{baudrate}.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex", diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index a4cd6bfdf0..65fca17df7 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -10,43 +10,22 @@ "file_formats": "text/x-gcode", "platform": "ultimaker_platform.3mf", "exclude_materials": [ - "generic_hips", - "generic_petg", - "generic_bam", - "ultimaker_bam", - "generic_pva", - "ultimaker_pva", - "generic_tough_pla", - "ultimaker_tough_pla_black", - "ultimaker_tough_pla_green", - "ultimaker_tough_pla_red", - "ultimaker_tough_pla_white", - "ultimaker_tough_pla_blue", - "ultimaker_tough_pla_gray", - "ultimaker_tough_pla_yellow", "generic_cffcpe", "generic_cffpa", + "generic_flexible", "generic_gffcpe", "generic_gffpa", + "generic_hips", "generic_petcf", - "structur3d_dap100silicone", - "ultimaker_petg_blue", - "ultimaker_petg_grey", - "ultimaker_petg_black", - "ultimaker_petg_green", - "ultimaker_petg_white", - "ultimaker_petg_orange", - "ultimaker_petg_silver", - "ultimaker_petg_yellow", - "ultimaker_petg_transparent", - "ultimaker_petg_red_translucent", - "ultimaker_petg_blue_translucent", - "ultimaker_petg_green_translucent", - "ultimaker_petg_yellow_fluorescent", - "ultimaker_petg_red", - "ultimaker_petcf_black", - "ultimaker_petcf_blue", - "ultimaker_petcf_gray" + "generic_petg", + "generic_pva", + "generic_tough_pla", + "structur3d_", + "ultimaker_bam", + "ultimaker_petcf", + "ultimaker_petg", + "ultimaker_pva", + "ultimaker_tough_pla" ], "firmware_file": "MarlinUltimaker-{baudrate}-dual.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}-dual.hex", diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 24618a869b..3750b83553 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -1,11 +1,11 @@ { "version": 2, - "name": "Ultimaker S3", + "name": "UltiMaker S3", "inherits": "ultimaker", "metadata": { "visible": true, - "author": "Ultimaker", + "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker_s3_platform.obj", @@ -16,7 +16,8 @@ ], "exclude_materials": [ "generic_hips", - "structur3d_dap100silicone" + "generic_flexible", + "structur3d_" ], "firmware_update_info": { @@ -108,7 +109,6 @@ "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "retraction_speed": { "value": "45" }, "speed_prime_tower": { "value": "speed_topbottom" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 30ac2e297d..eb3984510e 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -1,11 +1,11 @@ { "version": 2, - "name": "Ultimaker S5", + "name": "UltiMaker S5", "inherits": "ultimaker", "metadata": { "visible": true, - "author": "Ultimaker", + "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker_s5_platform.obj", @@ -15,6 +15,11 @@ 214476, 214477 ], + "exclude_materials": [ + "generic_hips", + "generic_flexible", + "structur3d_" + ], "firmware_update_info": { "check_urls": [ "https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version" ], @@ -110,7 +115,6 @@ "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, - "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "retraction_speed": { "value": "45" }, "speed_prime_tower": { "value": "speed_topbottom" }, diff --git a/resources/definitions/ultimaker_s7.def.json b/resources/definitions/ultimaker_s7.def.json index d289147439..bb3f5a938d 100644 --- a/resources/definitions/ultimaker_s7.def.json +++ b/resources/definitions/ultimaker_s7.def.json @@ -1,11 +1,11 @@ { "version": 2, - "name": "Ultimaker S7", + "name": "UltiMaker S7", "inherits": "ultimaker_s5", "metadata": { "visible": true, - "author": "Ultimaker", + "author": "UltiMaker", "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-ufp;text/x-gcode", "platform": "ultimaker_s7_platform.obj", @@ -44,6 +44,8 @@ }, "overrides": { - "machine_name": { "default_value": "Ultimaker S7" } + "default_material_print_temperature": { "maximum_value_warning": "320" }, + "machine_name": { "default_value": "Ultimaker S7" }, + "material_print_temperature_layer_0": { "maximum_value_warning": "320" } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_sketch.def.json b/resources/definitions/ultimaker_sketch.def.json new file mode 100644 index 0000000000..05e506c3b6 --- /dev/null +++ b/resources/definitions/ultimaker_sketch.def.json @@ -0,0 +1,259 @@ +{ + "version": 2, + "name": "UltiMaker Sketch", + "inherits": "ultimaker", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-sketch", + "platform": "ultimaker_sketch_platform.obj", + "exclude_materials": [ + "dsm_175_novamidid1030cf", + "Essentium_175_UltrafuseZPCTG", + "imade3d_petg_175", + "imade3d_pla_175", + "imade3d_petg_green", + "imade3d_pla_green", + "imade3d_petg_pink", + "imade3d_pla_pink", + "chromatik_pla", + "3D-Fuel_PLA_PRO_Black", + "3D-Fuel_PLA_SnapSupport", + "bestfilament_abs_skyblue", + "bestfilament_petg_orange", + "bestfilament_pla_green", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "emotiontech_pc", + "emotiontech_pekk", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pla_hr_870", + "emotiontech_pva-m", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "eryone_petg", + "eryone_pla", + "eryone_pla_glow", + "eryone_pla_matte", + "eryone_pla_wood", + "eryone_tpu", + "eSUN_PETG_Black", + "eSUN_PETG_Grey", + "eSUN_PETG_Purple", + "eSUN_PLA_PRO_Black", + "eSUN_PLA_PRO_Grey", + "eSUN_PLA_PRO_Purple", + "eSUN_PLA_PRO_White", + "Extrudr_GreenTECPro_Anthracite_175", + "Extrudr_GreenTECPro_Black_175", + "Extrudr_GreenTECPro_Blue_175", + "Extrudr_GreenTECPro_Nature_175", + "Extrudr_GreenTECPro_Red_175", + "Extrudr_GreenTECPro_Silver_175", + "Extrudr_GreenTECPro_White_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fdplast_abs_tomato", + "fdplast_petg_gray", + "fdplast_pla_olive", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "generic_asa_175", + "generic_abs_175", + "generic_absr_175", + "generic_bvoh_175", + "generic_cpe_175", + "generic_cffpa_175", + "generic_hips_175", + "generic_nylon_175", + "generic_pc_175", + "generic_petg_175", + "generic_pva_175", + "generic_rapidrinse_175", + "generic_sr30_175", + "generic_tpu_175", + "goofoo_abs", + "goofoo_asa", + "goofoo_bronze_pla", + "goofoo_emarble_pla", + "goofoo_esilk_pla", + "goofoo_hips", + "goofoo_pa", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_peek", + "goofoo_petg", + "goofoo_pla", + "goofoo_pva", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_wood_pla", + "ideagen3D_ToughPLA", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "layer_one_black_pla", + "layer_one_dark_gray_pla", + "layer_one_white_pla", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla", + "tizyx_pla_bois", + "tizyx_pva", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_TPU", + "volumic_abs_ultra", + "volumic_arma_ultra", + "volumic_asa_ultra", + "volumic_br80_ultra", + "volumic_bumper_ultra", + "volumic_cu80_ultra", + "volumic_flex93_ultra", + "volumic_medical_ultra", + "volumic_nylon_ultra", + "volumic_pekk_carbone", + "volumic_petgcarbone_ultra", + "volumic_petg_ultra", + "volumic_pla_ultra", + "volumic_pp_ultra", + "volumic_strong_ultra", + "volumic_support_ultra", + "xyzprinting_abs", + "xyzprinting_antibact_pla", + "xyzprinting_carbon_fiber", + "xyzprinting_colorinkjet_pla", + "xyzprinting_flexible", + "xyzprinting_metallic_pla", + "xyzprinting_nylon", + "xyzprinting_pahtcf15", + "xyzprinting_pc", + "xyzprinting_petcf15", + "xyzprinting_petg", + "xyzprinting_pla", + "xyzprinting_ppgf30", + "xyzprinting_tough_pla", + "xyzprinting_tpu", + "zyyx_pro_flex", + "zyyx_pro_pla", + "octofiber_pla", + "fiberlogy_hd_pla" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": false, + "machine_extruder_trains": { "0": "ultimaker_sketch_extruder" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotSketch.png", + "preferred_quality_type": "draft", + "preferred_variant_name": "0.4mm", + "reference_machine_id": "sketch", + "supports_network_connection": true, + "supports_usb_connection": false, + "variant_definition": "ultimaker_sketch", + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": { "value": false }, + "adhesion_type": { "value": "'raft'" }, + "brim_width": { "value": "3" }, + "cool_fan_speed": { "value": "100" }, + "extruder_prime_pos_abs": { "default_value": true }, + "gantry_height": { "value": "60" }, + "infill_overlap": { "value": 15 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, + "infill_sparse_density": { "value": 15 }, + "jerk_enabled": { "value": false }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M107; Disable Fan; \n; End of print; \n; End GCode\nM104 S0 T0; Set Toolhead Temp to 0\nM140 S0 T0; Set Platform Temp to 0\nG162 Z F1800; Move to max axes position\nG28 X Y; Home\nM652; Turn off back fan\nM132 X Y Z A B; Set Home Position\nG91; Use Relative Positioning\nM18; Disable Axes\n\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "UltiMaker Sketch" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "M140 S50 T0; Set Platform Temp\nM104 S220 T0; Set Extruder Temp\nG90; Use Absolute Positioning\nG28; Home\nM132 X Y Z A B; Set Current Position to Home\nG161 X Y F3300; Move to min axes positions\nM7 T0; Wait For Platform to Heat\nM6 T0; Wait For Extruders to Heat\nM651; Turn on back fan\nM907 X100 Y100 Z40 A80 B20; Set Stepper Currents\nM106; Enable Cooling Fan\n; Purge Line\nG92 E0; Reset Extruder Axis Position\nG1 X-26.18 Y-75.90 Z0.200 F420\nG1 X26.18 Y-75.90 E10\nG92 E0; Reset Extruder Axis Position\n; Start GCode\n" }, + "machine_width": { "default_value": 150 }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "default_value": 109 }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": true, + "enabled": true, + "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" + }, + "raft_margin": { "value": "5" }, + "retraction_amount": { "value": "5.5" }, + "retraction_prime_speed": { "value": "15" }, + "retraction_speed": { "value": "25" }, + "speed_print": { "value": 60 }, + "speed_support": { "value": "0.7 * speed_print" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "0.7 * speed_print" }, + "speed_travel": { "value": 80 }, + "speed_wall": { "value": "0.7 * speed_print" }, + "speed_wall_0": { "value": "0.5 * speed_print " }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_z_hop": { "value": 7 }, + "support_angle": { "value": "45" }, + "top_bottom_thickness": { "value": "4 * layer_height" }, + "travel_avoid_distance": { "value": "machine_nozzle_tip_outer_diameter / 2 * 1.5" }, + "wall_0_inset": { "value": "0" }, + "wall_thickness": { "value": "2 * machine_nozzle_size" }, + "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json index c6405d213c..967a9423dc 100644 --- a/resources/definitions/uni_base.def.json +++ b/resources/definitions/uni_base.def.json @@ -47,10 +47,8 @@ "infill_enable_travel_optimization": { "value": "True" }, "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, "infill_pattern": { "value": "'gyroid'" }, - "initial_layer_line_width_factor": { "value": "100" }, "layer_height_0": { "value": "layer_height" }, - "line_width": { "value": "machine_nozzle_size" }, - "machine_buildplate_type": { "value": "glass" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 220 }, "machine_end_gcode": { "default_value": "G91\nG1 E-1 F600\nG1 Z+1 E-3 X-20 Y-20 F4800\nM104 S0\nM106 S0\nM140 S0\nM220 S100\nM221 S100\nG28\nG90\nM84\n;\n" }, diff --git a/resources/definitions/vivedino_base.def.json b/resources/definitions/vivedino_base.def.json index a638fc105c..a5cf0def87 100644 --- a/resources/definitions/vivedino_base.def.json +++ b/resources/definitions/vivedino_base.def.json @@ -99,7 +99,6 @@ "support_interface_enable": { "value": true }, "support_interface_height": { "value": "layer_height * 4" }, "support_interface_pattern": { "value": "'grid'" }, - "support_interface_skip_height": { "value": 0.2 }, "support_pattern": { "value": "'zigzag'" }, "support_wall_count": { "value": 1 }, "support_xy_distance": { "value": "wall_line_width_0 * 2" }, diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index 1e76380b69..dc6cd255bb 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -55,7 +55,7 @@ "machine_endstop_positive_direction_y": { "default_value": true }, "machine_endstop_positive_direction_z": { "default_value": false }, "machine_feeder_wheel_diameter": { "default_value": 7.5 }, - "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": { "default_value": [ @@ -76,7 +76,7 @@ "machine_max_jerk_xy": { "default_value": 20 }, "machine_max_jerk_z": { "default_value": 1 }, "machine_name": { "default_value": "VORON2" }, - "machine_start_gcode": { "default_value": "print_start" }, + "machine_start_gcode": { "default_value": ";Nozzle diameter = {machine_nozzle_size}\n;Filament type = {material_type}\n;Filament name = {material_name}\n;Filament weight = {filament_weight}\n; M190 S{material_bed_temperature_layer_0}\n; M109 S{material_print_temperature_layer_0}\nprint_start EXTRUDER={material_print_temperature_layer_0} BED={material_bed_temperature_layer_0} CHAMBER={build_volume_temperature}" }, "machine_steps_per_mm_x": { "default_value": 80 }, "machine_steps_per_mm_y": { "default_value": 80 }, "machine_steps_per_mm_z": { "default_value": 400 }, diff --git a/resources/definitions/weedo_base.def.json b/resources/definitions/weedo_base.def.json index bbc1fcd09e..04549e6768 100644 --- a/resources/definitions/weedo_base.def.json +++ b/resources/definitions/weedo_base.def.json @@ -222,7 +222,7 @@ "raft_surface_speed": { "value": 40.0 }, "raft_surface_thickness": { "value": 0.25 }, "retraction_amount": { "default_value": 3 }, - "retraction_combing": { "value": "off" }, + "retraction_combing": { "value": "'off'" }, "retraction_extrusion_window": { "value": 1.0 }, "retraction_hop_after_extruder_switch": { "default_value": false }, "retraction_min_travel": { "value": 0.8 }, diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json index 03178f5eb9..921f0b23be 100644 --- a/resources/definitions/zav_base.def.json +++ b/resources/definitions/zav_base.def.json @@ -46,10 +46,8 @@ "infill_enable_travel_optimization": { "value": "True" }, "infill_line_width": { "value": "round(line_width * 1.1, 2)" }, "infill_pattern": { "value": "'gyroid'" }, - "initial_layer_line_width_factor": { "value": "100" }, "layer_height_0": { "value": "layer_height" }, - "line_width": { "value": "machine_nozzle_size" }, - "machine_buildplate_type": { "value": "glass" }, + "machine_buildplate_type": { "value": "'glass'" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 200 }, "machine_end_gcode": { "default_value": ";---- Ending Script Start ----\nM104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-4 F300 ;retract the filament a bit before lifting the nozzle to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F5000 ;move Z up a bit and retract filament even more\nG28 Z0 ;move bed down\nG28 X0 Y0 ;move X/Y to min endstops so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ;switch off cooling fan\nM355 S0 P0 ;switch off case light\n;---- Ending Script End ----\n" }, diff --git a/resources/extruders/ankermake_m5c_extruder_0.def.json b/resources/extruders/ankermake_m5c_extruder_0.def.json new file mode 100644 index 0000000000..de3aeb8185 --- /dev/null +++ b/resources/extruders/ankermake_m5c_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ankermake_m5c", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/anycubic_kobra2_extruder_0.def.json b/resources/extruders/anycubic_kobra2_extruder_0.def.json new file mode 100644 index 0000000000..adfdb45986 --- /dev/null +++ b/resources/extruders/anycubic_kobra2_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "anycubic_kobra2", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/creality_k1max_extruder_0.def.json b/resources/extruders/creality_k1max_extruder_0.def.json new file mode 100755 index 0000000000..7c332cfe3e --- /dev/null +++ b/resources/extruders/creality_k1max_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "creality_k1max", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json new file mode 100644 index 0000000000..ac00cd1485 --- /dev/null +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_left.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma_pro_dual", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_end_code": { "default_value": ";END T1\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" }, + "machine_extruder_start_code": { "default_value": ";START T1\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json new file mode 100644 index 0000000000..9959d5108c --- /dev/null +++ b/resources/extruders/dagoma_sigma_pro_dual_extruder_right.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma_pro_dual", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" }, + "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/dagoma_sigma_pro_extruder.def.json b/resources/extruders/dagoma_sigma_pro_extruder.def.json new file mode 100644 index 0000000000..55337bd4a0 --- /dev/null +++ b/resources/extruders/dagoma_sigma_pro_extruder.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "dagoma_sigma_pro", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_end_code": { "default_value": ";END T0\nG92 E0\nM83\nG1 E-55 F4700\nM82\nG92 E0\n" }, + "machine_extruder_start_code": { "default_value": ";START T0\n;No temperature change\nG1 X0 Y77.5 F8000\nG92 E0\nM83\nG1 E50 F1200\nM82\nG92 E0\n" }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/flashforge_adventurer_extruder_0.def.json b/resources/extruders/flashforge_adventurer_extruder_0.def.json new file mode 100644 index 0000000000..232cf3f901 --- /dev/null +++ b/resources/extruders/flashforge_adventurer_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "flashforge_adventurer_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/geeetech_A20_1.def.json b/resources/extruders/geeetech_A20_1.def.json new file mode 100644 index 0000000000..96e94fe2f6 --- /dev/null +++ b/resources/extruders/geeetech_A20_1.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "geeetech_A20", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ratrig_base_extruder_0.def.json b/resources/extruders/ratrig_base_extruder_0.def.json new file mode 100644 index 0000000000..e5afcbdb54 --- /dev/null +++ b/resources/extruders/ratrig_base_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ratrig_base", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_factor4_extruder_left.def.json b/resources/extruders/ultimaker_factor4_extruder_left.def.json new file mode 100644 index 0000000000..9e0aeb3fee --- /dev/null +++ b/resources/extruders/ultimaker_factor4_extruder_left.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_factor4", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "extruder_prime_pos_x": { "default_value": -3 }, + "extruder_prime_pos_y": { "default_value": 6 }, + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "value": "machine_width - 20" }, + "machine_extruder_end_pos_y": { "default_value": 20 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "value": "machine_width - 20" }, + "machine_extruder_start_pos_y": { "default_value": 20 }, + "machine_nozzle_head_distance": { "default_value": 2.7 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_factor4_extruder_right.def.json b/resources/extruders/ultimaker_factor4_extruder_right.def.json new file mode 100644 index 0000000000..ddedc9f85a --- /dev/null +++ b/resources/extruders/ultimaker_factor4_extruder_right.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_factor4", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "extruder_prime_pos_x": { "default_value": 250 }, + "extruder_prime_pos_y": { "default_value": 6 }, + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "value": "machine_width - 20" }, + "machine_extruder_end_pos_y": { "default_value": 20 }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "value": "machine_width - 20" }, + "machine_extruder_start_pos_y": { "default_value": 20 }, + "machine_nozzle_head_distance": { "default_value": 4.2 }, + "machine_nozzle_offset_x": { "default_value": 18 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json new file mode 100644 index 0000000000..648a1d6a5c --- /dev/null +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_methodx", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code_duration": { "default_value": 8 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json new file mode 100644 index 0000000000..ea52c5dbd2 --- /dev/null +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_methodx", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code_duration": { "default_value": 8 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json new file mode 100644 index 0000000000..43de74b497 --- /dev/null +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_methodxl", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code_duration": { "default_value": 10 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json new file mode 100644 index 0000000000..581811646f --- /dev/null +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_methodxl", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed/100}" }, + "machine_extruder_start_code_duration": { "default_value": 10 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_sketch_extruder.def.json b/resources/extruders/ultimaker_sketch_extruder.def.json new file mode 100644 index 0000000000..5f6c3054ac --- /dev/null +++ b/resources/extruders/ultimaker_sketch_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_sketch", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/i18n/README.md b/resources/i18n/README.md new file mode 100644 index 0000000000..37445529df --- /dev/null +++ b/resources/i18n/README.md @@ -0,0 +1,5 @@ +If you aim to contribute translations please [look here](https://github.com/Ultimaker/Cura/wiki/Translating-Cura) first. + +In particular, take heed of the following:
+When we're in the release-window (so that's when we have the beta out for the next Cura, but not the final release yet), we're also in the process of updating translations. +_**If you make a PR with updated or fixed translations within this timespan, it's likely that your additions/changes will be ignored in favour of the 'official' ones, due to how our process is set up.**_ diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index f04a0d3b8e..035f893405 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2023-09-03 18:15+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -125,6 +125,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Uložit projekt..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Nasta&vení" @@ -270,6 +274,10 @@ msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné" msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné" msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." @@ -504,10 +512,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonymní" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Aplikační framework" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplikovat offsety extruderu do G kódu" @@ -566,6 +582,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Uspořádat selekci" + msgctxt "@label:button" msgid "Ask a question" msgstr "Položit otázku" @@ -630,6 +650,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Zálohy" +msgctxt "@label" +msgid "Balanced" +msgstr "Vyvážený" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Základna (mm)" @@ -686,6 +710,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Vypočítáno" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Vykreslování kamery:" @@ -1019,6 +1047,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Nelze přečíst odpověď serveru." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Nelze se připojit k Obchodu." @@ -1263,10 +1295,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Výchozí" -msgctxt "@label" -msgid "Default" -msgstr "Výchozí" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: " @@ -1415,6 +1443,10 @@ msgctxt "@label" msgid "Draft" msgstr "Návrh" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplikovat" @@ -1541,6 +1573,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Výběr exportu..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "Exportovat archiv s materiálem" @@ -1574,10 +1610,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Ukončující G-kód extuderu" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Počáteční G-kód extuderu" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(y) zakázány" @@ -1644,6 +1693,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Nepodařilo se uložit archiv s materiálem" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Oblíbené" @@ -1785,6 +1839,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Přední pohled" @@ -1873,6 +1930,10 @@ msgctxt "@action" msgid "Get started" msgstr "Začínáme" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Globální nastavení" @@ -1922,6 +1983,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Skrýt všechny připojené tiskárny" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Schovat toto nastavení" @@ -1998,6 +2063,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Abyste mohli balíček použít, musíte restartovat Curu" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Výplň" @@ -2354,6 +2423,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Spravovat materiály..." @@ -2687,6 +2772,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "S aktuálním filtrem nebyly nalezeny žádné výsledky" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Žádný odhad času není dostupný" @@ -2788,6 +2877,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Otevřít" @@ -2816,10 +2909,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Otevřít soubor s projektem" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "Otevřít s" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Otevřít jako projekt" @@ -3037,6 +3142,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Prosím synchronizujte před začátkem tisku materiálové profily s vašimi tiskárnami." @@ -3133,6 +3242,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Tisk" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Tisknout po" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Tisknout před" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3441,8 +3558,12 @@ msgid "Provides support for reading model files." msgstr "Poskytuje podporu pro čtení souborů modelu." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Poskytuje podporu pro psaní souborů 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3682,8 +3803,12 @@ msgid "Save Cura project" msgstr "Uložit projekt Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Uložit projekt Cura a tiskový soubor UFP" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3709,6 +3834,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Uložit nový profil" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Uložte soubor .umm na USB úložiště." @@ -3812,6 +3941,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Poslat záznam o pádu do UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Odeslat záznam" @@ -3864,6 +4005,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Nastavení" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:" @@ -3932,6 +4077,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Má být podložka vyčištěna před načtením nového modelu v jediné instanci Cury?" @@ -3988,6 +4137,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Zobrazit podrobný záznam pádu" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Zobrazit souhrnný dialog při ukládání projektu" @@ -4064,10 +4217,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicování selhalo" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Slicování selhalo na neočekávané chybě. Zvažte, prosím, nahlášení chyby v našem issue trackeru." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicuji..." @@ -4076,6 +4225,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Vyhlazování" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Pevný pohled" @@ -4201,10 +4354,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Úspěšně importován profil {0}." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Souhrn - Projekt Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Podpora" @@ -4328,6 +4497,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Záloha překračuje maximální povolenou velikost soubor." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produktivitou, kvalitou povrchu, mechanickými vlastnostmi a rozměrnou přesností." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Výška základny od podložky v milimetrech." @@ -4582,6 +4755,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?" @@ -4673,6 +4850,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4902,6 +5087,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Nedostupný" @@ -4922,6 +5112,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Jednotka" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Univerzální konfigurace překladu programů" @@ -5111,6 +5309,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Nahrát vlastní firmware" @@ -5143,6 +5345,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Pomocná knihovna zahrnující Voronoi generátor" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Aktualizace verze 2.1 na 2.2" @@ -5247,6 +5453,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Zobrazit tiskárny v Digital Factory" @@ -5324,6 +5534,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Jakou tiskárnu si přejete nakonfigurovat?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Jaký typ kamery by se měl použít?" @@ -5540,6 +5754,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "dnes" @@ -5561,14 +5779,6 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Nepovedlo se stáhnout {} zásuvných modulů" -msgctxt "@label" -msgid "Balanced" -msgstr "Vyvážený" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produktivitou, kvalitou povrchu, mechanickými vlastnostmi a rozměrnou přesností." - #, python-brace-format #~ msgctxt "info:{0} gets replaced by a number of printers" #~ msgid "... and {0} other" @@ -5577,10 +5787,6 @@ msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produkti #~ msgstr[1] "... a {0} další" #~ msgstr[2] "... a {0} dalších" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Uspořádat selekci" - #~ msgctxt "@tooltip:button" #~ msgid "Become a 3D printing expert with UltiMaker e-learning." #~ msgstr "Staňte se expertem na 3D tisk díky UltiMaker e-learningu." @@ -5589,6 +5795,10 @@ msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produkti #~ msgid "Cura does not accurately display layers when Wire Printing is enabled." #~ msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy." +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Výchozí" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout." @@ -5617,10 +5827,22 @@ msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produkti #~ msgid "Material profiles not installed" #~ msgstr "Materiálové profily nejsou nainstalovány" +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Poskytuje podporu pro psaní souborů 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Uložit projekt Cura a tiskový soubor UFP" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Pohled simulace" +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "Slicování selhalo na neočekávané chybě. Zvažte, prosím, nahlášení chyby v našem issue trackeru." + #~ msgctxt "@label" #~ msgid "The material used in this project is currently not installed in Cura.
Install the material profile and reopen the project." #~ msgstr "Materiál použitý v tomto projektu není aktuálně nainstalován v Cuře.
Nainstalujte materiálový profil a znovu otevřete projekt." diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po index bb02b81277..5819c51d85 100644 --- a/resources/i18n/cs_CZ/fdmextruder.def.json.po +++ b/resources/i18n/cs_CZ/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2020-02-20 17:30+0100\n" "Last-Translator: DenyCZ \n" "Language-Team: DenyCZ \n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ukončující G kód extruderu" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolutní finální pozice extruderu" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Počáteční G kód extruderu" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolutní počáteční pozice extruderu" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Číslo ventilátoru chlazení tisku přidruženého k tomuto extrudéru. Tuto změnu změňte pouze z výchozí hodnoty 0, pokud máte pro každý extrudér jiný ventilátor chlazení tisku." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Souřadnice x koncové polohy při vypnutí extrudéru." diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 7f25e8b1ba..5fd9a10ebe 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -17,6 +17,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.2\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Vzdálenost, která se má držet od okrajů modelu. Žehlení až k okraji mřížky může vést k zubatému okraji na výtisku." @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Seznam polygonů s oblastmi, do kterých tisková hlava nemá přístup." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "Doporučení, jak daleko se mohou větve pohnout od bodu, který podporují. Větve mohou tuto hodnotu porušit, aby dosáhly svého cíle (podložka nebo plochá část modelu). Snížení této hodnoty učiní podporu více pevnou, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku) " @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Všechna nastavení, která ovlivňují rozlišení tisku. Tato nastavení mají velký vliv na kvalitu (a dobu tisku)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternativní zeď navíc" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Límec" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Vzdálenost límce" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Vzdálenost od límce uvnitř" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Počet linek pro límec" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Límec pouze venku" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,18 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Teplota sestavení" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Centrovat objekt" @@ -746,16 +766,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Vzdálenost mezi tištěnými liniemi podpůrné struktury. Toto nastavení se vypočítá podle hustoty podpory." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Vzdálenost od tisku ke spodní části podpěry." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Vzdálenost od horní strany podpory k tisku." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -869,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Povolit chlazení při tisku" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Povolit retrakci" @@ -901,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Povolit vnější ochranu proti úniku. Tím se vytvoří model kolem modelu, který pravděpodobně otře druhou trysku, pokud je ve stejné výšce jako první tryska." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -933,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Vynutí vytištění límce kolem modelu, i když by tento prostor byl jinak obsazen podporou. To nahradí některé regiony první vrstvy podpory okrajovými regiony." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Všude" @@ -1037,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Míra vyrovnávání toku" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Faktor kompenzace průtoku" @@ -1049,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Graf teploty toku" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Kompenzace toku pro první vrstvu: množství materiálu vytlačovaného na počáteční vrstvě se vynásobí touto hodnotou." @@ -1097,6 +1137,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Kompenzace průtoku na vnější linii stěny." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Kompensace toku na nejvíce vnější stěnové lince horní plochy." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Kompensace toku na horní stěnové linky pro všechny stěnové linky kromě nejvnější." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Kompenzace průtoku na horních / dolních řádcích." @@ -1283,6 +1331,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Seskupit vnější stěny" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" @@ -1427,10 +1479,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Pokud by se mělo rychle za sebou přecházet tam a zpět mezi různými počty zdí, nebude se sbíhání provádět. Nastavení odstraní přechody mezi různými počty čar zdí, pokud by byly blíže než tato vzdálenost." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Pokud je raft povolen, jedná se o další oblast voru kolem modelu, která má také raft. Zvětšení tohoto okraje vytvoří silnější raft při použití více materiálu a ponechání menší plochy pro váš tisk." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignorujte vnitřní geometrii vznikající z překrývajících se svazků v síti a svazky vytiskněte jako jeden. To může způsobit, že nechtěné vnitřní dutiny zmizí." @@ -1659,6 +1723,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Inset aplikovaný na cestu vnější stěny. Pokud je vnější stěna menší než tryska a je vytištěna za vnitřními stěnami, použijte toto odsazení, aby se otvor v trysce překrýval s vnitřními stěnami místo vně modelu." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Zevnitř ven" @@ -1671,6 +1739,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Preferovat rozhraní" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Počet vrstev paprsků vzájemného propletení" @@ -1811,6 +1883,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Omezuje, jak daleko by měly větve cestovat od bodu, který podporují. Toto nastavení může učinit podporu pevnější, ale zvýší počet větví (a společně s tím také množství použitého materiálu a dobu tisku)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Objem této sítě omezte na jiné sítě. Můžete to použít k vytvoření určitých oblastí tisku jednoho oka s různým nastavením as úplně jiným extruderem." @@ -1908,8 +2004,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Zajistěte, aby hlavní poloha extrudéru byla absolutní, nikoli relativní k poslednímu známému umístění hlavy." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1935,10 +2033,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiál" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID materiálu" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Objem materiálu mezi čištěními" @@ -2215,6 +2321,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Monotónní pořadí žehlení" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Monotónní pořadí horního povrchu" @@ -2255,6 +2365,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normální" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normální" @@ -2387,10 +2501,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Žehlení provádějte pouze na poslední vrstvě sítě. To šetří čas, pokud spodní vrstvy nepotřebují hladký povrch." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Úhel Ooze štítu" @@ -2447,6 +2557,14 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Vzdálenost stírání vnější stěny" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Venkovní stěny různých ostrovů ve stejné vrstvě jsou tisknuty postupně. Když je povoleno, množství změn proudu je omezeno, protože stěny jsou tisknuty po jednom typu najednou, když je zakázáno, počet cest mezi ostrovy se snižuje, protože stěny na stejných ostrovech jsou seskupeny." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Zvenku dovnitř" @@ -2500,8 +2618,20 @@ msgid "Prime Tower Acceleration" msgstr "Akcelerace tisku hlavní věže" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Límec hlavní věže" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2515,10 +2645,18 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Šířka čáry primární věže" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Minimální objem hlavní věže" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Velikost hlavní věže" @@ -2527,6 +2665,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Rychlost tisku hlavní věže" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Pozice X hlavní věže" @@ -2535,10 +2677,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Pozice Y hlavní věže" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Akcelerace tisku" @@ -2547,6 +2685,10 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Trh při tisku" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Tisková sekvence" @@ -2559,6 +2701,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Tisk tenkých stěn" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Vytiskněte věž vedle tisku, která slouží k naplnění materiálu po každém přepnutí trysky." @@ -2579,6 +2725,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Tiskněte kousky modelu, které jsou vodorovně tenčí než velikost trysek." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Rychlost tisku, která se použije při tisku druhé vrstvy povrchu mostu." @@ -2587,6 +2737,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Rychlost tisku, která se použije při tisku třetí vrstvy povrchu mostu." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Vytiskněte výplň před tiskem na stěny. První tisk stěn může vést k přesnějším stěnám, ale převisy se zhoršují. Tisk výplně nejprve vede k robustnějším stěnám, ale vzor výplně se někdy může objevit skrz povrch." @@ -2631,6 +2789,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Vzduchový mezera v raftu" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extruder základny raftu" @@ -2659,6 +2821,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Rychlost tisku spodku raftu" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Tloušťka základny raftu" @@ -2675,6 +2841,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Rychlost ventilátoru při tisku raftu" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extruder vnitřku raftu" @@ -2703,6 +2873,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Rychlost tisku prostředku raftu" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Mezera ve středu raftu" @@ -2711,6 +2885,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Tloušťka prostředku raftu" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Zrychlení tisku raftu" @@ -2727,6 +2905,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Vyhlazování raftu" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extruder povrchu raftu" @@ -2759,10 +2941,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Rychlost tisku vršku raftu" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Mezera ve horních vrstvách raftu" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Náhodné" @@ -2815,10 +3009,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Odstanit průnik sítí" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Odstranit vnitřní rohy raftu" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Odstraňte oblasti, kde se více sítí vzájemně překrývají. To lze použít, pokud se sloučené duální hmotné objekty vzájemně překrývají." @@ -2827,6 +3033,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Odstraňte prázdné vrstvy pod první potištěnou vrstvou, pokud jsou přítomny. Deaktivace tohoto nastavení může způsobit prázdné první vrstvy, pokud je nastavení Tolerance řezu nastaveno na Exkluzivní nebo Střední." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Odstranit vnitřní rohy raftu a změnit tak raft v konvexní (vypouklý) tvar." @@ -2847,6 +3065,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Nahrazuje nejvzdálenější část horního / spodního vzoru řadou soustředných čar. Použití jedné nebo dvou čar zlepšuje střechy, které začínají na výplňovém materiálu." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferované umístění podpor" @@ -2919,6 +3141,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Rohová preference švu" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Nastavit tiskovou sekvenci ručně" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Nastavte výšku štítu proti průvanu. Zvolte, zda chcete tisknout štít konceptu v plné výšce modelu nebo v omezené výšce." @@ -3319,10 +3545,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Priorita rozhraní podpor" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Rozlišení rozhraní podpor" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Rychlost tisku rozhraní podpor" @@ -3607,6 +3829,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "Zrychlení, s nímž se tiskne horní vrstvy raftu." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Zrychlení, kterým jsou tisknuty vnitřní stěny horní plochy." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Zrychlení, kterým jsou tisknuty nejvíce vnější stěny horní plochy." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Zrychlení, kterým jsou stěny potištěny." @@ -3667,6 +3897,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Průměrná vzdálenost mezi náhodnými body zavedenými v každém segmentu čáry. Všimněte si, že původní body mnohoúhelníku jsou zahozeny, takže vysoká hladkost vede ke snížení rozlišení. Tato hodnota musí být vyšší než polovina tloušťky rozmazaného povrchu." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Výchozí zrychlení pohybu tiskové hlavy." @@ -3747,6 +3981,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Vzdálenost mezi liniemi raftů pro horní vrstvy raftů. Rozestup by měl být roven šířce čáry, takže povrch je pevný." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "Vzdálenost od hranic mezi modely, do jaké generovat vzájemně propletené struktury (měřeno v buňkách). Příliš málo buněk způsobí špatnou přilnavost." @@ -3943,6 +4181,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "Výška počáteční vrstvy v mm. Silnější počáteční vrstva usnadňuje přilnavost k montážní desce." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "Výška stupňů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám. Nastavením na nulu vypnete chování podobné schodišti." @@ -4015,6 +4257,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "Délka materiálu zasunutého během pohybu zasunutí." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "Materiál podložky nainstalované na tiskárně." @@ -4107,6 +4353,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne nosná struktura." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnější stěny horní plochy." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnitřní stěny horní plochy." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "Maximální okamžitá změna rychlosti, se kterou se stěny tisknou." @@ -4123,6 +4377,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Maximální okamžitá změna rychlosti, se kterou se pohybují pohyby." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Maximální rychlost pro motor ve směru X." @@ -4235,6 +4493,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Kolik obrysových čar se má tisknout okolo lineárního vzoru v základně raftu." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "Počet výplňových vrstev, které podporují okraje povrchu." @@ -4491,6 +4761,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "Rychlost tisku horních vrstev raftu. Ty by měly být vytištěny trochu pomaleji, aby tryska mohla pomalu vyhlazovat sousední povrchové linie." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Rychlost, kterou jsou tisknuty vnitřní stěny horní plochy." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Rychlost, kterou jsou tisknuty nejvíce vnější stěny horní plochy." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "Rychlost, při které se svislý pohyb Z provádí pro Z Hopy. To je obvykle nižší než rychlost tisku, protože stavba talíře nebo portálového zařízení je obtížnější se pohybovat." @@ -4552,8 +4830,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Teplota, na kterou se má začít ochlazovat těsně před koncem tisku." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Teplota, která se používá pro tisk první vrstvy." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4615,6 +4893,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Typ generovaného g-kódu." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Objem jinak vytekl. Tato hodnota by měla být obecně blízká průměru trysek." @@ -4631,6 +4913,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Šířka paprsků vzájemného propletení." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Šířka hlavní věže." @@ -4659,10 +4945,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Tím se řídí vzdálenost, kterou by extrudér měl dojet bezprostředně před začátkem zdi mostu. Pobyt před startem můstku může snížit tlak v trysce a může vést k ploššímu můstku." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Toto nastavení řídí, kolik vnitřních rohů v obrysu raftů je zaobleno. Vnitřní rohy jsou zaokrouhleny na půlkruh s poloměrem rovným zde uvedené hodnotě. Toto nastavení také odstraní otvory v obrysu raftu, které jsou menší než takový kruh." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Toto nastavení omezuje počet stažení, ke kterým dochází v okně minimální vzdálenosti vytlačování. Další stažení v tomto okně budou ignorovány. Tím se zabrání opakovanému navíjení na stejný kus vlákna, protože to může vlákno zploštit a způsobit problémy s broušením." @@ -4699,6 +4997,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Horní šířka odstranění povrchu" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Zrychlení vnitřní stěny horní plochy" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Rychlá změna nejvíce vnější stěny horní plochy" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Rychlost vnitřní stěny horní plochy" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Tok vnitřní stěny horní plochy" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Zrychlení vnější stěny horní plochy" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Tok nejvíce vnější stěnové linky horní plochy" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Rychlá změna nejvíce vnitřní stěny horní plochy" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Rychlost nejvíce vnější stěny horní plochy" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Akcelerace tisku horního povrchu" @@ -4991,10 +5321,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Stěny, které přesahují více než tento úhel, budou vytištěny pomocí nastavení převislých stěn. Pokud je hodnota 90, nebudou se žádné stěny považovat za převislé. Převis, který je podporován podporou, nebude považován ani za převis." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Při kontrole, kde je model nad a pod podpěrou, proveďte kroky dané výšky. Nižší hodnoty se budou řezat pomaleji, zatímco vyšší hodnoty mohou způsobit tisk normální podpory na místech, kde mělo být rozhraní podpory." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5387,713 +5713,74 @@ msgctxt "travel description" msgid "travel" msgstr "cestování" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Seskupit vnější stěny" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Část plně obklopená jinou částí může generovat vnější límec, který se dotýká vnitřku obklopující části. Toto nastavení odstraní límec v dané vzdálenosti od vnitřních otvorů." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Venkovní stěny různých ostrovů ve stejné vrstvě jsou tisknuty postupně. Když je povoleno, množství změn proudu je omezeno, protože stěny jsou tisknuty po jednom typu najednou, když je zakázáno, počet cest mezi ostrovy se snižuje, protože stěny na stejných ostrovech jsou seskupeny." +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Umožňuje řadit seznam objektů pro ruční nastavení tiskové sekvence. První objekt ze seznamu bude vytisknut jako první." -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Tok nejvíce vnější stěnové linky horní plochy" +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Vzdálenost od límce uvnitř" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Kompensace toku na nejvíce vnější stěnové lince horní plochy." +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Límec pouze venku" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Tok vnitřní stěny horní plochy" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Doba trvání každého kroku v postupné změně průtoku" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Kompensace toku na horní stěnové linky pro všechny stěnové linky kromě nejvnější." +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Rychlost nejvíce vnější stěny horní plochy" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Rychlost, kterou jsou tisknuty nejvíce vnější stěny horní plochy." +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Velikost kroku diskretizace postupné změny průtoku" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Rychlost vnitřní stěny horní plochy" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Postupné změny průtoku povoleny" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Rychlost, kterou jsou tisknuty vnitřní stěny horní plochy." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Maximální zrychlení postupných změn průtoku" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Zrychlení vnější stěny horní plochy" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximální zrychlení průtoku pro první vrstvu" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Zrychlení, kterým jsou tisknuty nejvíce vnější stěny horní plochy." +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů." -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Zrychlení vnitřní stěny horní plochy" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximální zrychlení pro postupné změny průtoku" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Zrychlení, kterým jsou tisknuty vnitřní stěny horní plochy." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Rychlá změna nejvíce vnitřní stěny horní plochy" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnitřní stěny horní plochy." +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Doba trvání resetování průtoku" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Rychlá změna nejvíce vnější stěny horní plochy" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Rozlišení rozhraní podpor" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnější stěny horní plochy." - - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Postupné změny průtoku povoleny" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximální zrychlení postupných změn průtoku" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximální zrychlení pro postupné změny průtoku" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximální zrychlení průtoku pro první vrstvu" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Velikost kroku diskretizace postupné změny průtoku" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Doba trvání každého kroku v postupné změně průtoku" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Doba trvání resetování průtoku" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" - - - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "2D silueta tiskové hlavy (včetně krytů ventilátoru)." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korekční termín pro úpravu celkového objemu, který se vytlačuje pokaždé, když se plní špagety." - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Mez pro přidání prostřední čáry" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Upravuje hustotu výplně špaget. Mějte na paměti, že hustota výplně řídí pouze rozteč linií výplňového vzoru, nikoli velikost výtluku pro výplň špaget." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Množství ofsetu aplikovaného na všechny díry v každé vrstvě. Pozitivní hodnoty zvětšují velikost děr, záporné hodnoty snižují velikost děr." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Naneste odsazení extrudéru na souřadnicový systém." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Automatická teplota" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Změňte teplotu pro každou vrstvu automaticky s průměrnou rychlostí průtoku této vrstvy." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompenzovat" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompenzujte překrytí vnitřní stěny" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompenzujte překrytí vnější stěny" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompenzujte překrytí stěn" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Vykompenzujte tok částí tisku, které se tisknou tam, kde je již zeď na místě." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompenzujte tok částí tisknuté vnitřní stěny, kde již je zeď na místě." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Vykompenzujte tok částí tisknuté vnější stěny, kde již je zeď na místě." - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Vytvoří malý uzel v horní části vzestupné linie, takže po sobě jdoucí vodorovná vrstva má lepší šanci se k němu připojit. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Zpoždění po pohybu dolů. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Zpoždění po pohybu vzhůru, aby mohla stoupající čára ztvrdnout. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Doba zpoždění mezi dvěma vodorovnými segmenty. Zavedení takového zpoždění může způsobit lepší přilnavost k předchozím vrstvám ve spojovacích bodech, zatímco příliš dlouhé zpoždění může způsobit ochabnutí. Platí pouze pro drátový tisk." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Určuje pořadí, v jakém budou tištěny zdi. Tištění vnějších zdí jako prvních pomáhá s rozměrovou přesností, jelikož se vady z vnitřních stěn nemohou přenášet na vnějšek. Naproti tomu tištění vnějších zdí nakonec dovoluje jejich lepší vrstvení při tištění převisů." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejnižším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje prioritu této sítě při zvažování překrývajících se objemů. Oblasti, kde je umístěno více sítí, budou vyhrány sítí s nižším hodnocením. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a běžnými oky." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Určuje, která výplň je uvnitř výplně jiné výplně. Výplňová síť s vyšším pořádkem upraví výplň síťových výplní s nižším řádem a normálními oky." - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Vzdálenost mezi tryskou a vodorovnými liniemi dolů. Větší vůle vede k diagonálně dolů směřujícím liniím s menším strmým úhlem, což zase vede k menšímu spojení nahoru s další vrstvou. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Vzdálenost pohybu nahoru, který je vytlačován poloviční rychlostí.\n" -#~ "To může způsobit lepší přilnavost k předchozím vrstvám, aniž by se materiál v těchto vrstvách příliš zahříval. Platí pouze pro drátový tisk." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Vzdálenost podpor od převisu ve směru X / Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost, se kterou materiál padá po vytlačení směrem nahoru. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost, se kterou je materiál vytlačování směrem vzhůru tažen spolu s diagonálně směrem dolů vytlačováním. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Délka proplachování konce filamentu" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Rychlost proplachování konce filamentu" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Vyrovnat tok vlákna" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Všude" - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Vzdálenost filamentového parkingu" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Vyplnit mezery mezi stěnami" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Vyplní mezery mezi stěnami, kde se žádné stěny nehodí." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Vyfiltrujte drobné mezery" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrujte drobné mezery, abyste zmenšili kuličky na vnější straně modelu." - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Kompenzace toku při stoupání nebo klesání. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Kompenzace toku při tisku rovných čar. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou. Platí pouze pro drátový tisk." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID materiálu. Toto je nastaveno automaticky. " - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Vygenerujte stromovou podporu s větvemi, které podporují váš tisk. To může snížit spotřebu materiálu a dobu tisku, ale výrazně prodlužuje dobu slicování." - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Jak daleko od sebe musí být větve, když se dotýkají modelu. Zmenšení této vzdálenosti způsobí, že se stromová podpora dotkne modelu ve více bodech, což způsobí lepší přesah, ale těžší odstranění podpory." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Jak krájet vrstvy s diagonálními povrchy. Oblasti vrstvy mohou být generovány na základě toho, kde střed vrstvy protíná povrch (Střední). Alternativně každá vrstva může mít oblasti, které padají uvnitř objemu po celé výšce vrstvy (Exkluzivní), nebo vrstva má oblasti, které padají dovnitř kdekoli v rámci vrstvy (Inkluzivní). Exkluzivní zachovává co nejvíce podrobností, Inkluzivní dělá to nejlepší a Střední trvá zpracování nejméně času." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Je-li tato funkce povolena, je pro retrakční pohyby, které nahrazují stěny, jejichž průtok je pod prahem minimálního průtoku, používáno spíše zatahování." - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Pořadí sítě výplně" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Uzel" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Omezení retrakce podpor" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Interní hodnota stanice materiálu" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maximální feedrate" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximální rychlost pro vyrovnávání průtoku" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maximální rychlost tisku při úpravě rychlosti tisku za účelem vyrovnání toku." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimální průtok zdi" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimální povolený procentuální průtok pro linii stěny. Kompenzace překrytí stěny snižuje průtok stěny, když leží blízko ke stávající zdi. Stěny, jejichž průtok je menší než tato hodnota, budou nahrazeny pohybem. Při použití tohoto nastavení musíte povolit kompenzaci překrytí stěny a vnější stěnu vytisknout před vnitřními stěnami." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nikde" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Při přechodu od podpory k podpoře v přímé linii vynechejte stažení. Povolením tohoto nastavení se šetří čas tisku, ale může to vést k nadměrnému strunění uvnitř podpůrné struktury." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Vnější stěny před vnitřními" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Procento diagonálně sestupné linie, která je zakryta vodorovnou čárou. To může zabránit ochabnutí nejvyššího bodu vzhůru. Platí pouze pro drátový tisk." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferovat retrakci" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Tiskněte pouze vnější povrch s řídkou strukturou struktury a tiskněte „na vzduchu“. To je realizováno horizontálním tiskem kontur modelu v daných intervalech Z, které jsou spojeny pomocí linií nahoru a diagonálně dolů." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Výplň tiskněte tak často, aby se vlákno chaoticky stočilo uvnitř objektu. To zkracuje dobu tisku, ale chování je spíše nepředvídatelné." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Tiskněte tenčí než normální čáry rychleji, takže množství materiálu vytlačovaného za sekundu zůstává stejné. Tenké kousky ve vašem modelu mohou vyžadovat čáry vytištěné s menší šířkou čáry, než je uvedeno v nastavení. Toto nastavení řídí změny rychlosti těchto linek." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Když je povoleno, tiskne stěny v pořadí od vnějšku dovnitř. To může pomoci zlepšit rozměrovou přesnost v X a Y při použití plastu s vysokou viskozitou, jako je ABS; může však snížit kvalitu tisku vnějšího povrchu, zejména na převisy." - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Rozlišení pro výpočet kolizí, aby nedošlo k nárazu do modelu. Nastavením této nižší se vytvoří přesnější stromy, které selhávají méně často, ale dramaticky se zvyšuje doba slicování." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrakce" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Zasuňte vlákno, když se tryska pohybuje po netisknuté oblasti. " - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Shell" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Poměr smrštění" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Poměr smrštění v procentech." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Průtok při špagetové výplni" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Špagetová výplň" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Objem navíc při špagetové výplni" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maximální výška špagetové výplně" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Krokování při špagetové výplni" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Špagetová výplň" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximální úhel špagetové výplně" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Rychlost, jakou se tryska pohybuje při vytlačování materiálu. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku linie šikmo dolů. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku řádku nahoru „na vzduchu“. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku první vrstvy, která je jedinou vrstvou dotýkající se platformy sestavení. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Rychlost tisku vodorovných obrysů modelu. Platí pouze pro drátový tisk." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Mez pro rozdělení prostřední čáry" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Strategie pro zajištění toho, aby se v každém místě připojení připojily dvě po sobě následující vrstvy. Zpětné zasunutí umožní, aby linie vzhůru ztvrdly ve správné poloze, ale mohou způsobit broušení vlákna. Uzel může být vytvořen na konci vzestupné linie, aby se zvýšila šance na připojení k ní a aby se linka ochladila; to však může vyžadovat nízké rychlosti tisku. Další strategií je kompenzovat prohnutý vrchol horní linie; čáry však nebudou vždy klesat, jak bylo předpovězeno." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Úhel větví. Použijte nižší úhel, aby byly více vertikální a stabilnější. K dosažení většího dosahu použijte vyšší úhel." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami se větve bleskové výplně zkracují." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "Určuje, pod jakým úhlem mezi jednotlivými vrstvami může docházet k vyrovnávání větví bleskové výplně." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "Vzdálenost ujetá při vytváření spojení od obrysu střechy dovnitř. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost koncového kusu vnitřní linie, která se táhne, když se vrací zpět k vnějšímu obrysu střechy. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Vzdálenost, kterou vodorovné linie střechy vytištěné „na vzduchu“ klesají při tisku. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Výška nahoru a diagonálně dolů směřujících čar mezi dvěma vodorovnými částmi. To určuje celkovou hustotu struktury sítě. Platí pouze pro drátový tisk." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Maximální úhel osy Z uvnitř tisku pro oblasti, které mají být poté vyplněny špagetovou výplní. Snížení této hodnoty způsobí, že se na každé vrstvě vyplní více šikmých částí modelu." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Maximální výška vnitřního prostoru, kterou lze kombinovat a naplnit shora." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Minimální vzdálenost mezi vnější stranou formy a vnější stranou modelu." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "Minimální šířka čáry použité jako výplň mezi párovými čárami zdi. Toto nastavení určuje tloušťku modelu, při které se přepíná z tisku dvou čar zdi na tisk dvou vnějších čar zdi a jedné centrální čáry zdi mezi nimi. Vyšší hodnota Minimální šířky nepárové čáry zdi vede k vyšší maximální šířce párové čáry zdi. Maximální šířka nepárové čáry zdi je vypočtena jako 2 * Minimální šířka párové čáry zdi," - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Odsazení od stěn, odkud bude vytištěna výplň špaget." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Vzor výplňového materiálu tisku. Směr a cik-cak vyplňují směr výměny na alternativních vrstvách, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychlový, oktet, čtvrtý krychlový, křížový a soustředný obrazec jsou plně vytištěny v každé vrstvě. Výplň Gyroid, krychlový, kvartální a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze horní povrchy objektu. U bleskového vzoru má procento význam pouze v první vrstvě pod každým povrchem." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude přidána prostřední nepárová čára mezi dvě párové čáry (pokud mezi nimi ještě nebyla). Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "Nejnižší šířka čáry, zadaná jako procento běžné šířky čáry, nad kterou bude prostřední nepárová čára (pokud nějaká je) rozdělena na dvě párové čáry. Snižte toto nastavení, aby se používalo více tenkých čar. Zvyšte toto nastavení pro použití méně a širších čar. Je třeba si uvědomit, že toto nastavení se použije, jako kdyby byl celý tvar vyplněn zdmi. Takže termín prostřední zde znamená prostředek objektu mezi dvěma vnějšími hranami tvaru, a to i v případě, že se namísto zdi tiskne výplň nebo jiný povrch." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Teplota použitá pro vyhřívanou podložku v první vrstvě." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Teplota použitá pro vyhřívanou podložku. Pokud je to 0, teplota podložky nebude upravena." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "Čas strávený na vnějším obvodu díry, která se má stát střechou. Delší časy mohou zajistit lepší spojení. Platí pouze pro drátový tisk." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Horní a/nebo dolní povrch objektu s větším úhlem, než je toto nastavení, nebudou mít rozbalenou horní/dolní plochu. Tím se zabrání rozšíření úzkých oblastí vzhledu, které jsou vytvořeny, když má povrch modelu téměř svislý sklon. Úhel 0° je vodorovný, zatímco úhel 90° je svislý." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Stromová podpora" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Úhel větve stromové podpory" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Průměr větve podpěry stromu" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Průměr úhlu větve podpěry stromu" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Vzdálenost větví stromu" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Stromová podpora - rozlišení kolize" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Průměr kmene stromové podpory" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Zpoždení pohybu dole při tisku DT" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Rychlost tisku spodního DT" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Průtok při spojování DT" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Výška připojení DT" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Rychlost tisku směrem dolů u DT" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Tah DT" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Poloviční rychlost DT" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Pád materiálu DT" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Zpoždění při tisku plochých segmentů DT" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Průtok při plochém DT" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Průtok při DT" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Rychlost horizontálního tisku DT" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Velikost uzlu DT" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Vyčištění trysky DT" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Tah střechy DT" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Pád materiálu střechy DT" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Vzdálenost střechy DT" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Vnější zpoždění střechy DT" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Rychlost DT" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Vyrovnat spodní linky DT" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Strategie DT" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Zpoždení pohybu nahoře při tisku DT" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Rychlost tisku nahoru u DT" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "Zda se mají tisknout všechny modely po jedné vrstvě najednou, nebo počkat na dokončení jednoho modelu, než se přesunete na další. Jeden za časovým režimem je možný, pokud a) je povolen pouze jeden extruder ab) všechny modely jsou odděleny tak, že celá tisková hlava se může pohybovat mezi a všechny modely jsou menší než vzdálenost mezi tryskou a X / Osy Y. " - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Zda se má tisknout špagetová výplň po krocích, nebo se vytlačí veškeré výplňové vlákno na konci tisku." - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Drátový tisk" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimentální!" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Při kontrole, kde je model nad a pod podpěrou, proveďte kroky dané výšky. Nižší hodnoty se budou řezat pomaleji, zatímco vyšší hodnoty mohou způsobit tisk normální podpory na místech, kde mělo být rozhraní podpory." diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..2529ed73e4 --- /dev/null +++ b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 6aad1da459..4141ac0f71 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -3,11 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -122,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "" @@ -243,6 +248,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "" @@ -465,10 +474,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -527,6 +544,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -587,6 +608,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "" + msgctxt "@action:label" msgid "Base (mm)" msgstr "" @@ -643,6 +668,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "" @@ -951,6 +980,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1165,10 +1198,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "" -msgctxt "@label" -msgid "Default" -msgstr "" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "" @@ -1317,6 +1346,10 @@ msgctxt "@label" msgid "Draft" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "" @@ -1439,6 +1472,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1468,10 +1505,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "" @@ -1538,6 +1588,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "" @@ -1671,6 +1726,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "" @@ -1747,6 +1805,10 @@ msgctxt "@action" msgid "Get started" msgstr "" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "" @@ -1796,6 +1858,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "" @@ -1868,6 +1934,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "" @@ -2212,6 +2282,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "" @@ -2519,6 +2601,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "" @@ -2620,6 +2706,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "" @@ -2648,10 +2738,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "" @@ -2856,6 +2958,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -2940,6 +3046,14 @@ msgctxt "@action:button" msgid "Print" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3383,7 +3497,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3410,6 +3528,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3513,6 +3635,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "" @@ -3561,6 +3695,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "" @@ -3629,6 +3767,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3685,6 +3827,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "" @@ -3753,10 +3899,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "" @@ -3765,6 +3907,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "" @@ -3876,10 +4022,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "" @@ -3998,6 +4160,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "" @@ -4244,6 +4410,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "" @@ -4327,6 +4497,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4528,6 +4706,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "" @@ -4548,6 +4731,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -4665,6 +4856,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -4742,6 +4937,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "" @@ -4931,6 +5130,10 @@ msgctxt "@label" msgid "mm" msgstr "" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "" @@ -4951,357 +5154,6 @@ msgstr "" msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "" - -msgctxt "name" -msgid "Slice info" -msgstr "" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "" - -msgctxt "name" -msgid "X3D Reader" -msgstr "" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" - -msgctxt "name" -msgid "UFP Writer" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "" - -msgctxt "name" -msgid "Post Processing" -msgstr "" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -msgctxt "name" -msgid "Simulation View" -msgstr "" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "" - -msgctxt "name" -msgid "Preview Stage" -msgstr "" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "" - -msgctxt "name" -msgid "Support Eraser" -msgstr "" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "" - -msgctxt "name" -msgid "G-code Reader" -msgstr "" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "" - -msgctxt "name" -msgid "Material Profiles" -msgstr "" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "" - -msgctxt "name" -msgid "X-Ray View" -msgstr "" msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." @@ -5311,126 +5163,6 @@ msgctxt "name" msgid "UltiMaker Network Connection" msgstr "" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "" - -msgctxt "name" -msgid "Marketplace" -msgstr "" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "" - -msgctxt "name" -msgid "Image Reader" -msgstr "" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -msgctxt "name" -msgid "G-code Writer" -msgstr "" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "" - -msgctxt "name" -msgid "Model Checker" -msgstr "" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "" - -msgctxt "name" -msgid "3MF Reader" -msgstr "" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "" - -msgctxt "name" -msgid "USB printing" -msgstr "" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "" - -msgctxt "name" -msgid "AMF Reader" -msgstr "" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "" @@ -5447,6 +5179,374 @@ msgctxt "name" msgid "Solid View" msgstr "" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "" + +msgctxt "name" +msgid "3MF Reader" +msgstr "" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "" + +msgctxt "name" +msgid "USB printing" +msgstr "" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +msgctxt "name" +msgid "Marketplace" +msgstr "" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "" + +msgctxt "name" +msgid "Cura Backups" +msgstr "" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "" + +msgctxt "name" +msgid "G-code Reader" +msgstr "" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "" + +msgctxt "name" +msgid "Slice info" +msgstr "" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "" + +msgctxt "name" +msgid "Support Eraser" +msgstr "" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "" + +msgctxt "name" +msgid "Model Checker" +msgstr "" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +msgctxt "name" +msgid "Simulation View" +msgstr "" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +msgctxt "name" +msgid "AMF Reader" +msgstr "" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "" + +msgctxt "name" +msgid "X-Ray View" +msgstr "" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "" + +msgctxt "name" +msgid "Post Processing" +msgstr "" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "" @@ -5456,11 +5556,19 @@ msgid "Sentry Logger" msgstr "" msgctxt "description" -msgid "Reads g-code from a compressed archive." +msgid "Provides support for writing MakerBot Format Packages." msgstr "" msgctxt "name" -msgid "Compressed G-code Reader" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "" + +msgctxt "name" +msgid "Cura Profile Reader" msgstr "" msgctxt "description" @@ -5472,11 +5580,19 @@ msgid "UFP Reader" msgstr "" msgctxt "description" -msgid "Provides support for writing 3MF files." +msgid "Enables ability to generate printable geometry from 2D image files." msgstr "" msgctxt "name" -msgid "3MF Writer" +msgid "Image Reader" +msgstr "" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "" + +msgctxt "name" +msgid "CuraEngine Backend" msgstr "" msgctxt "description" @@ -5487,10 +5603,107 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "" -msgctxt "@label" -msgid "Balanced" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." msgstr "" -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgctxt "name" +msgid "UltiMaker machine actions" msgstr "" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "" + +msgctxt "name" +msgid "Preview Stage" +msgstr "" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "" + +msgctxt "name" +msgid "X3D Reader" +msgstr "" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "" + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "" + +msgctxt "name" +msgid "Material Profiles" +msgstr "" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "" + +msgctxt "name" +msgid "3MF Writer" +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "" + +msgctxt "name" +msgid "UFP Writer" +msgstr "" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "" + +msgctxt "name" +msgid "G-code Writer" +msgstr "" + diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 64f6f3804b..900fbb7490 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Projekt speichern ..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Speichern Universal Cura Projekt ..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Einstellungen" @@ -138,7 +142,9 @@ msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n- Materialprofile und Plug-ins sichern und synchronisieren\n- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" +msgstr "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen" +"- Materialprofile und Plug-ins sichern und synchronisieren" +"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" msgctxt "@heading" msgid "-- incomplete --" @@ -198,15 +204,24 @@ msgstr "
  • OpenGL-Version: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

    \n

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n " +msgstr "

    Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

    " +"

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

    \n

    Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

    \n

    Backups sind im Konfigurationsordner abgelegt.

    \n

    Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

    \n " +msgstr "

    Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

    " +"

    Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

    " +"

    Backups sind im Konfigurationsordner abgelegt.

    " +"

    Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

    \n

    {model_names}

    \n

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    \n

    Leitfaden zu Druckqualität anzeigen

    " +msgstr "

    Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

    " +"

    {model_names}

    " +"

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    " +"

    Leitfaden zu Druckqualität anzeigen

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +233,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar" msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Ein sehr dichtes und starkes Teil, aber mit einer langsameren Druckzeit. Ideal für Funktionsteile." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." @@ -390,6 +409,14 @@ msgctxt "@button" msgid "Agree" msgstr "Stimme zu" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Dateien (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle unterstützten Typen ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Senden von anonymen Daten erlauben" @@ -430,10 +457,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonym" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Anonyme Absturzberichte" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Anwendungsrahmenwerk" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Gilt für" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Extruder-Versatzwerte auf GCode anwenden" @@ -474,6 +509,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" @@ -486,6 +525,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Alle Modelle in einem Raster anordnen" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Auswahl anordnen" + msgctxt "@label:button" msgid "Ask a question" msgstr "Eine Frage stellen" @@ -546,6 +589,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Backups" +msgctxt "@label" +msgid "Balanced" +msgstr "Ausgewogen" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" @@ -602,6 +649,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Berechnet" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Kamera-Navigation:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Kamera-Rendering:" @@ -634,6 +685,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Kann nicht in UFP-Datei schreiben:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Abbrechen" + msgctxt "@button" msgid "Cancel" msgstr "Abbrechen" @@ -810,6 +865,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Änderung Durchmesser bestätigen" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Entfernen bestätigen" + msgctxt "@action:button" msgid "Connect" msgstr "Verbinden" @@ -894,6 +953,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Die Antwort vom Server konnte nicht interpretiert werden." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Konnte GCodeWriter-Plugin nicht laden. Versuchen Sie, das Plugin wieder zu aktivieren." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Der Marktplatz konnte nicht erreicht werden." @@ -906,6 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Konnte nicht als {0} gespeichert werden: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" @@ -916,15 +983,18 @@ msgstr "Daten konnten nicht in Drucker geladen werden." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\nKeine Berechtigung zum Ausführen des Prozesses." +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" +"Keine Berechtigung zum Ausführen des Prozesses." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\nBetriebssystem blockiert es (Antivirenprogramm?)" +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" +"Betriebssystem blockiert es (Antivirenprogramm?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\nRessource ist vorübergehend nicht verfügbar" +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" +"Ressource ist vorübergehend nicht verfügbar" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1070,8 @@ msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe { msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt.\nCura verwendet mit Stolz die folgenden Open Source-Projekte:" +msgstr "Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt." +"Cura verwendet mit Stolz die folgenden Open Source-Projekte:" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1161,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: " @@ -1242,6 +1309,10 @@ msgctxt "@label" msgid "Draft" msgstr "Entwurf" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Alle Modelle auf Bauplatte ablegen" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplizieren" @@ -1322,6 +1393,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Geben Sie die IP-Adresse Ihres Druckers ein." +msgctxt "@info:title" +msgid "Error" +msgstr "Fehler" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Fehler-Rückverfolgung" @@ -1358,6 +1433,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Auswahl exportieren..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Universal Cura Projekt exportieren" + msgctxt "@button" msgid "Export material archive" msgstr "Materialarchiv exportieren" @@ -1386,10 +1465,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-Code Extruder-Ende" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Extruder Ende G-Code Dauer" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-Code Extruder-Start" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Extruder Start G-Code Dauer" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Extruder {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder deaktiviert" @@ -1450,6 +1541,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Speichern des Materialarchivs fehlgeschlagen" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Schreiben auf bestimmten Cloud-Drucker fehlgeschlagen: {0} nicht in entfernten Clustern." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoriten" @@ -1466,6 +1561,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Filamentgewicht" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Datei bereits vorhanden" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Datei wurde gespeichert" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Datei {0} enthält kein gültiges Profil." @@ -1574,6 +1677,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" +msgid "FreeCAD trackpad" +msgstr "FreeCAD Trackpad" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vorderansicht" @@ -1626,6 +1732,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Brückenhöhe" +msgctxt "@title:tab" +msgid "General" +msgstr "Allgemein" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." @@ -1646,6 +1756,10 @@ msgctxt "@action" msgid "Get started" msgstr "Erste Schritte" +msgctxt "@label" +msgid "Global" +msgstr "Global" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Globale Einstellungen" @@ -1694,6 +1808,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Alle verbundenen Drucker ausblenden" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Einstellungen ausblenden" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Diese Einstellung ausblenden" @@ -1766,6 +1884,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Um das Paket nutzen zu können, müssen Sie Cura neu starten" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "UltiMaker-Kontoname einschließen" + msgctxt "@label" msgid "Infill" msgstr "Füllung" @@ -1978,6 +2100,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Mehr erfahren" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Mehr erfahren" + msgctxt "@button" msgid "Learn more" msgstr "Mehr erfahren" @@ -2106,6 +2232,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot-Druckdatei" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter konnte nicht im angegebenen Pfad speichern." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter unterstützt keinen Textmodus." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialien werden verwaltet..." @@ -2410,6 +2548,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Keine Ergebnisse mit dem aktuellen Filter gefunden" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Es wurde kein spezifischer Wert festgelegt" + msgctxt "@label" msgid "No time estimation available" msgstr "Keine Zeitschätzung verfügbar" @@ -2482,6 +2624,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Anzahl Extruder" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Sprache des Betriebssystems" @@ -2506,6 +2652,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Ups! Während Ihres Slicing-Vorgangs ist ein unerwarteter Fehler aufgetreten. Seien Sie versichert, dass wir die Absturzprotokolle automatisch zur Analyse erhalten haben, wenn Sie die gemeinsame Nutzung von Daten in Ihren Einstellungen nicht deaktiviert haben. Um uns weiter zu helfen, sollten Sie Ihre Projektdetails in unserem Problem-Tracker veröffentlichen." + msgctxt "@action:button" msgid "Open" msgstr "Öffnen" @@ -2534,10 +2684,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Projektdatei öffnen" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Universal Cura Projekt (UCP) öffnen" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Universal Cura Projekt (UCP)-Datei öffnen" + msgctxt "@action:label" msgid "Open With" msgstr "Öffnen" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Als UCP öffnen" + msgctxt "@action:button" msgid "Open as project" msgstr "Als Projekt öffnen" @@ -2635,7 +2797,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Aus Zwischenablage einfügen" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pausieren" @@ -2697,7 +2858,9 @@ msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung di msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Stellen Sie sicher, dass der Drucker verbunden ist:\n– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." +msgstr "Stellen Sie sicher, dass der Drucker verbunden ist:" +"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist." +"– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2874,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Geben Sie bitte einen Namen für dieses Profil an." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Bitte geben Sie einen neuen Namen an." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Bitte lesen und akzeptieren Sie die Plug-in-Lizenz." @@ -2721,7 +2888,10 @@ msgstr "Bitte den Ausdruck entfernen" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n- Mit der Druckraumgröße kompatibel sind\n- Einem aktiven Extruder zugewiesen sind\n- Nicht alle als Modifier Meshes eingerichtet sind" +msgstr "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:" +"- Mit der Druckraumgröße kompatibel sind" +"- Einem aktiven Extruder zugewiesen sind" +"- Nicht alle als Modifier Meshes eingerichtet sind" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2901,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für UltiMaker Cura Enterprise zu erhalten" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Bitte melden Sie sich bei Ihrem UltiMaker-Konto an, um das Senden nicht-anonymer Daten zu ermöglichen." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Bitte stimmen Sie die Materialprofile auf Ihre Drucker ab („synchronisieren“), bevor Sie mit dem Drucken beginnen." @@ -2815,6 +2989,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Drucken" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Nach dem Drucken" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Vor dem Drucken" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3117,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Die Druckereinstellungen werden aktualisiert, sodass sie mit den im Projekt gespeicherten Einstellungen übereinstimmen." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Drucker" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Drucker aus Digital Factory hinzugefügt:" @@ -3143,6 +3329,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Umbenennen" +msgctxt "@title:window" +msgid "Rename" +msgstr "Umbenennen" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Profil umbenennen" @@ -3244,8 +3434,12 @@ msgid "Save Cura project" msgstr "Cura-Projekt speichern" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura-Projekt speichern und Datei drucken" +msgid "Save Cura project and .makerbot print file" +msgstr "Cura Projekt und .makerbot Druckdatei speichern" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Cura Projekt und .ufp Druckdatei speichern" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,6 +3465,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Neues Profil speichern" +msgctxt "@action:button" +msgid "Save project" +msgstr "Projekt speichern" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Speichern Sie die UMM-Datei auf einem USB-Stick." @@ -3287,6 +3485,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Wird gespeichert" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Wird auf Wechseldatenträger gespeichert {0}" @@ -3367,6 +3569,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Absturzbericht an UltiMaker senden" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Senden Sie Absturzberichte mit Ihrem registrierten UltiMaker-Kontonamen und dem Projektnamen an UltiMaker Sentry. Es werden keine tatsächlichen Modelldaten gesendet." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Senden Sie Absturzberichte ohne persönliche Informationen oder Modelldaten an UltiMaker." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Motor-Absturzberichte senden" + msgctxt "@action:button" msgid "Send report" msgstr "Bericht senden" @@ -3411,6 +3625,14 @@ msgctxt "@label" msgid "Settings" msgstr "Einstellungen" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Einstellungen" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Einstellungen werden aus UCP-Datei geladen" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:" @@ -3479,6 +3701,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Sollten Slicing-Abstürze automatisch an Ultimaker gemeldet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere persönlich identifizierbare Informationen gesendet oder gespeichert werden, es sei denn, Sie geben Ihre ausdrückliche Erlaubnis." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Soll das Druckbett jeweils vor dem Laden eines neuen Modells in einer einzelnen Instanz von Cura gelöscht werden?" @@ -3535,6 +3761,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Detaillierten Absturzbericht anzeigen" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Einstellungen anzeigen" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen" @@ -3603,10 +3833,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicing fehlgeschlagen" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Fehler beim Slicing mit einem unerwarteten Fehler. Bitte denken Sie daran, Fehler in unserem Issue Tracker zu melden." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Das Slicing läuft..." @@ -3615,13 +3841,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Glättung" +msgctxt "@label" +msgid "Solid" +msgstr "Fest" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide Ansicht" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n\nKlicken Sie, um diese Einstellungen sichtbar zu machen." +msgstr "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen." +"Klicken Sie, um diese Einstellungen sichtbar zu machen." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3868,8 @@ msgstr "Einige in %1 definierte Einstellungswerte wurden überschrieben." msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n\nKlicken Sie, um den Profilmanager zu öffnen." +msgstr "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten." +"Klicken Sie, um den Profilmanager zu öffnen." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3895,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Cura unterstützen" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Cura unterstützen" @@ -3721,10 +3951,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Empfohlene Materialeinstellungen" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Empfohlene Profileinstellungen" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Zusammenfassung – Cura-Projekt" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Zusammenfassung – Universal Cura Projekt (UCP) öffnen" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Zusammenfassung – Universal Cura Projekt" + msgctxt "@label" msgid "Support" msgstr "Stützstruktur" @@ -3843,6 +4089,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Das Backup überschreitet die maximale Dateigröße." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Die Basishöhe von der Druckplatte in Millimetern." @@ -3899,6 +4149,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen." @@ -3959,7 +4213,10 @@ msgstr "Die in diesem Extruder eingesetzte Düse." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Das Muster des Füllmaterials des Drucks:\n\nFür schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung.\n\nFür funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster.\n\nFür funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." +msgstr "Das Muster des Füllmaterials des Drucks:" +"Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung." +"Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster." +"Für funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4077,6 +4334,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Dies ist eine Cura Universal Projektdatei. Möchten Sie es als Cura Projekt oder Cura Universal Project öffnen oder die Modelle daraus importieren?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?" @@ -4125,7 +4386,8 @@ msgstr "Dieses Projekt enthält Materialien oder Plug-ins, die derzeit nicht in msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Diese Einstellung hat einen vom Profil abweichenden Wert.\n\nKlicken Sie, um den Wert des Profils wiederherzustellen." +msgstr "Diese Einstellung hat einen vom Profil abweichenden Wert." +"Klicken Sie, um den Wert des Profils wiederherzustellen." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4405,8 @@ msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änd msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n\nKlicken Sie, um den berechneten Wert wiederherzustellen." +msgstr "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt." +"Klicken Sie, um den berechneten Wert wiederherzustellen." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4153,6 +4416,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Diese Einstellung funktioniert möglicherweise beim Export in ein Universal Cura Projekt nicht einwandfrei. Die Benutzer werden gebeten, sie auf eigenes Risiko hinzuzufügen." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Diese Einstellung funktioniert beim Export in ein Universal Cura Projekt möglicherweise nicht einwandfrei. Die Benutzer werden gebeten, sie auf eigenes Risiko hinzuzufügen." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Diese Version ist nicht für den Einsatz in Produktionsumgebungen gedacht. Wenn Sie auf Probleme stoßen, melden Sie diese bitte auf unserer GitHub-Seite und geben Sie die vollständige Versionsnummer {self.getVersion()} an." @@ -4245,6 +4516,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Typ" +msgctxt "@label" +msgid "Type" +msgstr "Typ" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-Drucken" @@ -4299,7 +4574,8 @@ msgstr "Die ausführbare Datei des lokalen EnginePlugin-Servers kann nicht gefun msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}\nZugriff verweigert." +msgstr "Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}" +"Zugriff verweigert." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4341,6 +4617,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Es kann nicht in die Datei geschrieben werden: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Nicht verfügbar" @@ -4361,6 +4641,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Einheit" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Projekt" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Universal Cura Projekt-Dateien können auf verschiedenen 3D-Druckern gedruckt werden, wobei die Positionsdaten und ausgewählten Einstellungen erhalten bleiben. Beim Export werden alle Modelle, die sich auf der Bauplatte befinden, mit ihrer aktuellen Position, Ausrichtung und ihrem Maßstab einbezogen. Sie können auch auswählen, welche Einstellungen pro Extruder oder pro Modell enthalten sein sollen, um einen korrekten Druck zu gewährleisten." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Universelle Build-Systemkonfiguration" @@ -4477,6 +4765,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung" +msgctxt "@title:column" +msgid "Value" +msgstr "Wert" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Drucker in der Digital Factory anzeigen" @@ -4525,6 +4817,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Möchten Sie mehr?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Warnhinweis" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist." @@ -4549,6 +4845,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Welchen Drucker möchten Sie einrichten?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Welche Art der Kameranavigation sollte verwendet werden?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Welches Kamera-Rendering sollte verwendet werden?" @@ -4649,7 +4949,9 @@ msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläc msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Sie haben einige Profileinstellungen personalisiert.\nMöchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\nSie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." +msgstr "Sie haben einige Profileinstellungen personalisiert." +"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?" +"Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4983,8 @@ msgstr "Ihr neuer Drucker wird automatisch in Cura angezeigt." msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -4727,6 +5030,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "heute" @@ -4747,491 +5054,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." -msgid "Provides support for exporting Cura profiles." -msgstr "Bietet Unterstützung für den Export von Cura-Profilen." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-Profil-Writer" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - -msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Cura-Vorgängerprofil-Reader" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-Reader" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-Writer" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Upgrade von Version 3.5 auf 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Upgrade von Version 4.1 auf 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Upgrade von Version 4.7 auf 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Upgrade von Version 4.9 auf 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Upgrade von Version 3.2 auf 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Upgrade von Version 2.7 auf 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Upgrade von Version 4.11 auf 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Upgrade von Version 2.6 auf 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Upgrade von Version 4.8 auf 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Upgrade von Version 4.3 auf 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Upgrade von Version 3.3 auf 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Upgrade von Version 4.4 auf 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Upgrade von Version 2.5 auf 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Upgrade von Version 2.1 auf 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Upgrade von Version 4.2 auf 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Upgrade von Version 5.2 auf 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Upgrade von Version 4.0 auf 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Upgrade von Version 2.2 auf 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Upgrade von Version 3.4 auf 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Upgrade von Version 4.13 auf 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versions-Upgrade 5.4 auf 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Upgrade von Version 3.0 auf 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Upgrade von Version 4.6.0 auf 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Upgrade von Version 4.6.2 auf 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versions-Upgrade 5.3 auf 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" - -msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simulationsansicht" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Ermöglicht das Importieren von Cura-Profilen." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-Profil-Reader" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Ermöglicht die Einstellungen pro Objekt." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Werkzeug „Einstellungen pro Objekt“" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Bietet eine Vorschaustufe in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Vorschaustufe" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Stützstruktur-Radierer" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-Code-Reader" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-Backups" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Ausgabegerät-Plugin für Wechseldatenträger" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker-Maschinenabläufe" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Stellt die Röntgen-Ansicht bereit." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen-Ansicht" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." +msgstr "Verwaltet Netzwerkverbindungen zu vernetzten UltiMaker-Druckern." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "UltiMaker-Netzwerkverbindung" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Beschreibung Geräteeinstellungen" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Unterstützt das Lesen von Modelldateien." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplatz" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - -msgctxt "name" -msgid "Image Reader" -msgstr "Bild-Reader" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-Aktualisierungsfunktion" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Bietet eine Vorbereitungsstufe in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Vorbereitungsstufe" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von UltiMaker" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Nach Firmware-Updates suchen." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-Update-Prüfer" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Schreibt G-Code in eine Datei." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-Code-Writer" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." - -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-Reader" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." - -msgctxt "name" -msgid "USB printing" -msgstr "USB-Drucken" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Ermöglicht das Lesen von AMF-Dateien." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-Reader" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." @@ -5248,6 +5078,374 @@ msgctxt "name" msgid "Solid View" msgstr "Solide Ansicht" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Ermöglicht das Lesen von 3MF-Dateien." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-Reader" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." + +msgctxt "name" +msgid "USB printing" +msgstr "USB-Drucken" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Nach Firmware-Updates suchen." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-Update-Prüfer" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplatz" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-Backups" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Beschreibung Geräteeinstellungen" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Upgrade von Version 2.5 auf 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Upgrade von Version 4.7 auf 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Upgrade von Version 4.4 auf 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Upgrade von Version 3.0 auf 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Upgrade von Version 4.11 auf 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Upgrade von Version 4.1 auf 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Upgrade von Version 2.6 auf 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Upgrade von Version 4.6.0 auf 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Upgrade von Version 3.3 auf 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Upgrade von Version 4.8 auf 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Upgrade von Version 4.5 auf 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Upgrade von Version 4.2 auf 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Upgrade von Version 3.2 auf 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Upgrade von Version 4.3 auf 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Upgrades von Konfigurationen von Cura 5.6 auf Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Versions-Upgrade 5.6 auf 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Upgrade von Version 2.1 auf 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versions-Upgrade 5.3 auf 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Upgrade von Version 4.9 auf 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Upgrade von Version 2.7 auf 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Upgrade von Version 3.5 auf 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Upgrade von Version 5.2 auf 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Upgrade von Version 4.0 auf 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Upgrade von Version 4.13 auf 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Upgrade von Version 3.4 auf 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Upgrade von Version 2.2 auf 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Upgrade von Version 4.6.2 auf 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versions-Upgrade 5.4 auf 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-Code-Reader" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." + +msgctxt "name" +msgid "Slice info" +msgstr "Slice-Informationen" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Ausgabegerät-Plugin für Wechseldatenträger" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Stützstruktur-Radierer" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." + +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-Prüfer" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Bietet eine Vorbereitungsstufe in Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Vorbereitungsstufe" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." + +msgctxt "name" +msgid "Simulation View" +msgstr "Simulationsansicht" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Ermöglicht das Lesen von AMF-Dateien." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-Reader" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Stellt die Röntgen-Ansicht bereit." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen-Ansicht" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Cura-Vorgängerprofil-Reader" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" + +msgctxt "name" +msgid "Post Processing" +msgstr "Nachbearbeitung" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" @@ -5257,12 +5455,20 @@ msgid "Sentry Logger" msgstr "Sentry-Protokolleinrichtung" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von MakerBot-Formatpaketen." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot-Druckdatei-Writer" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Ermöglicht das Importieren von Cura-Profilen." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-Profil-Reader" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5479,20 @@ msgid "UFP Reader" msgstr "UFP-Reader" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" +msgid "Image Reader" +msgstr "Bild-Reader" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,89 +5502,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Writer für komprimierten G-Code" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker-Maschinenabläufe" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Bietet eine Vorschaustufe in Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Vorschaustufe" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von UltiMaker" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Ermöglicht das Exportieren von Cura-Profilen." -msgctxt "@info:title" -msgid "Error" -msgstr "Fehler" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-Profil-Writer" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Abbrechen" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Einstellungen" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-Reader" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Unterstützt das Lesen von Modelldateien." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Mehr erfahren" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" -msgctxt "@title:tab" -msgid "General" -msgstr "Allgemein" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Bietet eine Überwachungsstufe in Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Überwachungsstufe" -msgctxt "@label" -msgid "Type" -msgstr "Typ" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Ermöglicht die Einstellungen pro Objekt." -msgctxt "@info:title" -msgid "Saving" -msgstr "Wird gespeichert" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Werkzeug „Einstellungen pro Objekt“" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Datei bereits vorhanden" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Alle unterstützten Typen ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Materialprofile" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Konnte nicht als {0} gespeichert werden: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF- und UCP-Dateien." -msgctxt "@action:button" -msgid "OK" -msgstr "OK" +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-Writer" -msgctxt "@info:title" -msgid "Warning" -msgstr "Warnhinweis" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Drucker" +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-Writer" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Datei wurde gespeichert" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Schreibt G-Code in eine Datei." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Entfernen bestätigen" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Alle Dateien (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Ausgewogen" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." +msgctxt "name" +msgid "G-code Writer" +msgstr "G-Code-Writer" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 5dfca5e583..9bf0c7595f 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Extruder Ende G-Code Dauer" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Die Zeit, die für die Ausführung des Ende-G-Codes benötigt wird, wenn Sie von diesem Extruder wegschalten." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Extruder-Endposition" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extruder-Endposition Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Extruder Start G-Code Dauer" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Die Zeit, die für die Ausführung des Start-G-Codes benötigt wird, wenn Sie zu diesem Extruder wechseln." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startposition des Extruders" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-Position Extruder-Start" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-Position Extruder-Start" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Versatz Düse" @@ -131,51 +196,3 @@ msgstr "Y-Versatz Düse" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Die Y-Koordinate des Düsenversatzes." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 089b58c0c0..78217b35f8 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Gerät" @@ -34,7 +42,8 @@ msgstr "Start G-Code" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n." +msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "Ende G-Code" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n." +msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "GUID des Materials. Dies wird automatisch eingestellt." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Materialart" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Die Art des verwendeten Materials." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Material-Marke" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Die Marke des verwendeten Materials." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Warten auf Aufheizen der Druckplatte" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Versatz mit Extruder" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Extruder absolute Einzugsposition" @@ -1558,7 +1616,8 @@ msgstr "Zusätzliche Füllung Wandlinien" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen.\n Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." +msgstr "Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen." +" Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Voreingestellte Drucktemperatur" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Drucktemperatur erste Schicht" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." +msgid "The temperature used for printing the first layer." +msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluss der äußersten Oberflächenwand" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluss der inneren Oberflächenwand(en)" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Fluss oben/unten" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Geschwindigkeit der inneren Oberfläche der Wand" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Oberfläche Außenhaut Geschwindigkeit" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Beschleunigung der äußeren Oberfläche der Wand" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Beschleunigung der inneren Oberfläche der Wand" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Beschleunigung Oberfläche Außenhaut" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Ruck der inneren Oberflächenwand" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Ruck der äußersten Oberflächenwand" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Justierung der Oberfläche Außenhaut" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Z-Abstand der Stützstruktur" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke aufgerundet." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Unterer Abstand der Stützstruktur" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Der Abstand vom gedruckten Objekt bis zur Unterseite der Stützstruktur." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Auflösung Stützstrukturschnittstelle" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Dichte Stützstrukturschnittstelle" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "Einzugstropfen aktivieren" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Druckplattenhaftungstyp" @@ -3818,7 +3965,8 @@ msgstr "Skirt-Abstand" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\nEs handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." +msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks." +"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim nur an Außenseite" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Position des Randes" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Drucken Sie einen Rand an der Außenseite des Modells, an der Innenseite oder an beiden. Je nach Modell können Sie so die Menge des Randes, den Sie anschließend entfernen müssen, reduzieren und gleichzeitig eine gute Bettanhaftung sicherstellen." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Nur außen" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Nur innen" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Überall" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Abstand zur Vermeidung des inneren Brims" +msgid "Brim Avoid Margin" +msgstr "Randvermeidung" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Ein Rand um ein Modell kann ein anderes Modell an einer Stelle berühren, an der Sie sie nicht haben wollen. Dies entfernt alle Ränder innerhalb dieser Entfernung von Modellen ohne Rand." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Floßbasis Extra-Rand" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Floßbasis aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell herum, das ebenfalls ein Floß erhält. Wenn Sie diesen Rand vergrößern, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Floßmitte Extra-Rand" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Floßmitte aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell, der ebenfalls ein Floß erhält. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Floß Oberseite Extra-Rand" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Oberseite des Floßes aktiviert ist, ist dies der zusätzliche Bereich um das Modell herum, der ebenfalls mit einem Floß versehen wird. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Innenecken des Rafts entfernen" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Innenecken der Floßbasis entfernen" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken der Floßbasis, so dass das Floß konvex wird." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Mittlere Innenecken des Floßes entfernen" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken aus dem mittleren Teil des Floßes, so dass das Floß konvex wird." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Innenecken der Oberseite des Floßes entfernen" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken aus der Oberseite des Floßes, damit das Floß konvex wird." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Raft-Glättung" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Floßbasis glätten" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Kontur des Floßbodens abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Umriss des Floßes entfernt, die kleiner als ein solcher Kreis sind." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Floßmitte glätten" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Floßmitte abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Floßoberseite glätten" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Mit dieser Einstellung legen Sie fest, wie stark die Innenecken des oberen Umrisses des Floßes abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Luftspalt für Raft" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Z Überlappung der ersten Schicht" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Lassen Sie die erste und zweite Ebene des Modells in Z-Richtung überlappen, um das im Luftspalt verlorene Filament auszugleichen. Alle Modelle oberhalb der ersten Modellebene werden um diesen Betrag nach unten verschoben.\nEs kann vorkommen, dass aufgrund dieser Einstellung die zweite Ebene unterhalb der ersten Ebene gedruckt wird. Dieses Verhalten ist beabsichtigt." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Obere Raft-Schichten" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dicke der Raft-Basis" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dicke der oberen Raft-Schichten" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Linienbreite der Raft-Basis" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Die Schichtdicke der oberen Raft-Schichten." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Linienbreite der Raft-Oberfläche" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Linienabstand der Raft-Basis" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Linienabstand der Raft-Oberfläche" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dicke der Raft-Basis" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Obere Raft-Schichten" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Linienbreite der Raft-Basis" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dicke der oberen Raft-Schichten" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Die Schichtdicke der oberen Raft-Schichten." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Linienabstand der Raft-Basis" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Linienbreite der Raft-Oberfläche" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Linienabstand der Raft-Oberfläche" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotone Floßoberflächenordnung" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Drucken Sie die Linien auf der Oberseite des Floßes in einer Reihenfolge, die bewirkt, dass sie sich immer mit den benachbarten Linien in einer Richtung überlappen. Der Druckvorgang dauert dadurch etwas länger, aber die Oberfläche sieht konsistenter aus, was auch auf der Unterseite des Modells sichtbar ist." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Anzahl der Floßwände" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster des Floßes gedruckt werden." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Wandanzahl des Raft-Bodens" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Anzahl der mittleren Wände des Floßes" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster in den mittleren Schichten des Floßes gedruckt werden." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Anzahl der oberen Wände des Floßes" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster in den oberen Lagen des Floßes gedruckt werden sollen." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Druckgeschwindigkeit Raft Oben" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Druckgeschwindigkeit für Raft-Basis" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Druckgeschwindigkeit für Raft-Basis" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Druckgeschwindigkeit Raft Oben" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Druckbeschleunigung Raft Oben" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Druckbeschleunigung Raft Unten" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Druckbeschleunigung Raft Unten" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Druckbeschleunigung Raft Oben" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Ruckfunktion Drucken Raft Oben" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Ruckfunktion Drucken Raft-Basis" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Ruckfunktion Drucken Raft-Basis" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Ruckfunktion Drucken Raft Oben" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "Die Drehzahl des Lüfters für das Raft." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Lüfterdrehzahl Raft Oben" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Lüfterdrehzahl für Raft-Basis" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Lüfterdrehzahl für Raft-Basis" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Lüfterdrehzahl Raft Oben" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Prime Tower Typ" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "So erzeugen Sie den Prime Tower:
    • Normal: Erstellen Sie ein Bucket, in dem sekundäre Materialien grundiert werden
    • Verschachtelt: Erstellen Sie einen Prime Tower so spärlich wie möglich. Das spart Zeit und Filament, ist aber nur möglich, wenn die verwendeten Materialien aneinander haften
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Verschachtelt" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Größe Einzugsturm" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Prime Tower Maximaler Überbrückungsabstand" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Die maximale Länge der Zweige, die über die Luft gedruckt werden dürfen." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "X-Position des Einzugsturm" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim Einzugsturm" +msgid "Prime Tower Base" +msgstr "Grundfläche des Prime-Turms" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Größe der Prime-Turm-Basis" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Höhe der Prime-Turm-Basis" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Neigung der Prime-Turm-Basis" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Linienabstand des Prime-Turm-Floßes" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Nacheinander" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Druckreihenfolge manuell einstellen" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Ermöglicht es Ihnen, die Objektliste zu ordnen, um die Druckreihenfolge manuell festzulegen. Das erste Objekt in der Liste wird zuerst gedruckt." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Mesh-Füllung" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Innenecken des Rafts entfernen" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Äußere Wände gruppieren" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Wandanzahl des Raft-Bodens" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Druckprozess-Berichterstattung" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Meldung von Ereignissen, die über die eingestellten Schwellenwerte hinausgehen" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Druckprozess-Berichterstattung aktivieren" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Aktivieren Sie die Druckprozess-Berichterstattung, um Schwellenwerte für eine mögliche Fehlererkennung festzulegen." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Fluss-Warnung" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Grenzwert für die Fluss-Warnung zur Erkennung." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Fluss-Grenzwert" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Grenzwert für die Flussanomalie zur Erkennung." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Drucktemperatur-Warnung" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Grenzwert für Drucktemperaturwarnung zur Erkennung." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Drucktemperatur-Grenzwert" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Grenzwert für die Erkennung von Drucktemperatur-Anomalien." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Build-Volumen-Temperatur Warnung" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Grenzwert für die Erkennung einer Warnung vor der Build-Volumen-Temperatur." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Build-Volumen-Temperatur Grenzwert" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Grenzwert für Anomalie der Build-Volumen-Temperatur für die Erkennung." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,186 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Stufenweiser Fluss aktiviert" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale Beschleunigung bei stufenweisem Fluss" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale Flussbeschleunigung bei erster Schicht" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flussdauer zurücksetzen" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Äußere Wände gruppieren" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluss der äußersten Oberflächenwand" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluss der inneren Oberflächenwand(en)" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Geschwindigkeit der inneren Oberfläche der Wand" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Beschleunigung der äußeren Oberfläche der Wand" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Beschleunigung der inneren Oberfläche der Wand" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Ruck der inneren Oberflächenwand" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Ruck der äußersten Oberflächenwand" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..59cd3825c1 --- /dev/null +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Sukzessiver Durchfluss aktiviert" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Durchflussdauer zurücksetzen" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index a9f25d7e46..1895ad9bfb 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Guardar proyecto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Guardar proyecto Universal Cura..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "A&justes" @@ -138,7 +142,9 @@ msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efec msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Añada perfiles de materiales y complementos del Marketplace \n- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" +msgstr "- Añada perfiles de materiales y complementos del Marketplace " +"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales " +"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" msgctxt "@heading" msgid "-- incomplete --" @@ -198,15 +204,24 @@ msgstr "
  • Versión de OpenGL: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

    \n

    Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

    \n " +msgstr "

    Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

    " +"

    Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    \n

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    \n

    Las copias de seguridad se encuentran en la carpeta de configuración.

    \n

    Envíenos el informe de errores para que podamos solucionar el problema.

    \n " +msgstr "

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    " +"

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    " +"

    Las copias de seguridad se encuentran en la carpeta de configuración.

    " +"

    Envíenos el informe de errores para que podamos solucionar el problema.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

    \n

    {model_names}

    \n

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    \n

    Ver guía de impresión de calidad

    " +msgstr "

    Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

    " +"

    {model_names}

    " +"

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    " +"

    Ver guía de impresión de calidad

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +233,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "La conexión a la nube no está disponible para una impresora" msgstr[1] "La conexión a la nube no está disponible para algunas impresoras" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Una pieza muy densa y resistente pero con un tiempo de impresión más lento. Excelente para piezas funcionales." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior." @@ -390,6 +409,14 @@ msgctxt "@button" msgid "Agree" msgstr "Estoy de acuerdo" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos los archivos (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos los tipos compatibles ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir el envío de datos anónimos" @@ -430,10 +457,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anónimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Informes anónimos de fallos" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Entorno de la aplicación" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Se aplica en" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplicar compensaciones del extrusor a GCode" @@ -474,6 +509,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" @@ -486,6 +525,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organizar todos los modelos en una cuadrícula" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Organizar selección" + msgctxt "@label:button" msgid "Ask a question" msgstr "Haga una pregunta" @@ -546,6 +589,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Copias de seguridad" +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -602,6 +649,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculado" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Navegación por la cámara:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderizado de cámara:" @@ -634,6 +685,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "No se puede escribir en el archivo UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + msgctxt "@button" msgid "Cancel" msgstr "Cancelar" @@ -810,6 +865,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar cambio de diámetro" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar eliminación" + msgctxt "@action:button" msgid "Connect" msgstr "Conectar" @@ -894,6 +953,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Imposible interpretar la respuesta del servidor." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "No se pudo cargar el plugin GCodeWriter. Intenta volver a habilitar el plugin." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Imposible acceder a Marketplace." @@ -906,6 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "No se pudo guardar el archivo de material en {}:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "No se pudo guardar en {0}: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "No se pudo guardar en unidad extraíble {0}: {1}" @@ -916,15 +983,18 @@ msgstr "No se han podido cargar los datos en la impresora." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}\nNo se tiene permiso para ejecutar el proceso." +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" +"No se tiene permiso para ejecutar el proceso." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}\nEl sistema operativo lo está bloqueando (¿antivirus?)" +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" +"El sistema operativo lo está bloqueando (¿antivirus?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}\nEl recurso no está disponible temporalmente" +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" +"El recurso no está disponible temporalmente" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1070,8 @@ msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad.\nCura se enorgullece de utilizar los siguientes proyectos de código abierto:" +msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad." +"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1161,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: " @@ -1242,6 +1309,10 @@ msgctxt "@label" msgid "Draft" msgstr "Boceto" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Soltar todos los modelos en la placa de construcción" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicado" @@ -1322,6 +1393,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Introduzca la dirección IP de su impresora." +msgctxt "@info:title" +msgid "Error" +msgstr "Error" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Rastreabilidad de errores" @@ -1358,6 +1433,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar selección..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Exportar proyecto Universal Cura" + msgctxt "@button" msgid "Export material archive" msgstr "Exportar archivo de material" @@ -1386,10 +1465,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "GCode final del extrusor" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Duración del código G de fin de extrusora" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "GCode inicial del extrusor" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Duración del código G de inicio del extrusor" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Extrusor {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusores deshabilitados" @@ -1450,6 +1541,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Se ha producido un error al guardar el archivo de material" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Fallo al escribir en una impresora en nube específica: {0} no está en grupos remotos." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" @@ -1466,6 +1561,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "El archivo ya existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Archivo guardado" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "El archivo {0} no contiene ningún perfil válido." @@ -1574,6 +1677,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" +msgid "FreeCAD trackpad" +msgstr "Panel de seguimiento de FreeCAD" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista frontal" @@ -1626,6 +1732,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Altura del puente" +msgctxt "@title:tab" +msgid "General" +msgstr "General" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." @@ -1646,6 +1756,10 @@ msgctxt "@action" msgid "Get started" msgstr "Empezar" +msgctxt "@label" +msgid "Global" +msgstr "Mundial" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globales" @@ -1694,6 +1808,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Ocultar todas las impresoras conectadas" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Ocultar configuración" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" @@ -1766,6 +1884,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Para utilizar el paquete, deberá reiniciar Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "Incluir nombre de cuenta UltiMaker" + msgctxt "@label" msgid "Infill" msgstr "Relleno" @@ -1978,6 +2100,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Más información" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Más información" + msgctxt "@button" msgid "Learn more" msgstr "Más Información" @@ -2106,6 +2232,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Archivo de impresión Makerbot" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter no pudo guardar en la ruta designada." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter no soporta el modo texto." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar materiales..." @@ -2410,6 +2548,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "No se han encontrado resultados con el filtro actual" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "No se ha establecido ningún valor específico" + msgctxt "@label" msgid "No time estimation available" msgstr "Ningún cálculo de tiempo disponible" @@ -2482,6 +2624,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Número de extrusores" +msgctxt "@action:button" +msgid "OK" +msgstr "Aceptar" + msgctxt "@label" msgid "OS language" msgstr "Idioma del sistema operativo" @@ -2506,6 +2652,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "¡Vaya! Se ha producido un error inesperado durante su proceso de corte. Tenga la seguridad de que hemos recibido automáticamente los registros del fallo para su análisis, si no ha desactivado el uso compartido de datos en sus preferencias. Para ayudarnos un poco más, considere la posibilidad de compartir los detalles de su proyecto en nuestro localizador de incidencias." + msgctxt "@action:button" msgid "Open" msgstr "Abrir" @@ -2534,10 +2684,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir archivo de proyecto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Abrir el proyecto Universal Cura (UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Abrir el archivo del proyecto Universal Cura (UCP)" + msgctxt "@action:label" msgid "Open With" msgstr "Abrir con" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Abrir como UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como proyecto" @@ -2635,7 +2797,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Copiar desde el portapapeles" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pausar" @@ -2697,7 +2858,10 @@ msgstr "Conceda los permisos necesarios al autorizar esta aplicación." msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Asegúrese de que la impresora está conectada:\n- Compruebe que la impresora está encendida.\n- Compruebe que la impresora está conectada a la red.\n- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." +msgstr "Asegúrese de que la impresora está conectada:" +"- Compruebe que la impresora está encendida." +"- Compruebe que la impresora está conectada a la red." +"- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2875,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Introduzca un nombre para este perfil." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, proporciona un nuevo nombre." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Lea y acepte la licencia del complemento." @@ -2721,7 +2889,10 @@ msgstr "Retire la impresión" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Revise la configuración y compruebe si sus modelos:\n- Se integran en el volumen de impresión\n- Están asignados a un extrusor activado\n- No están todos definidos como mallas modificadoras" +msgstr "Revise la configuración y compruebe si sus modelos:" +"- Se integran en el volumen de impresión" +"- Están asignados a un extrusor activado" +"- No están todos definidos como mallas modificadoras" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2902,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Inicie sesión para obtener complementos y materiales verificados para UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Inicie sesión en su cuenta de UltiMaker para permitir el envío de datos no anónimos." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronice los perfiles de material con sus impresoras antes de comenzar a imprimir." @@ -2815,6 +2990,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimir" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir después" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3118,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "La configuración de la impresora se actualizar para que coincida con la configuración guardada con el proyecto." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impresoras" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impresoras añadidas desde Digital Factory:" @@ -3143,6 +3330,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Cambiar nombre" +msgctxt "@title:window" +msgid "Rename" +msgstr "Renombrar" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Cambiar nombre de perfil" @@ -3244,8 +3435,12 @@ msgid "Save Cura project" msgstr "Guardar el proyecto de Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Guardar el proyecto de Cura e imprimir archivo" +msgid "Save Cura project and .makerbot print file" +msgstr "Guardar proyecto Cura y archivo de impresión .makerbot" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Guardar proyecto Cura y archivo de impresión .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,6 +3466,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Guardar nuevo perfil" +msgctxt "@action:button" +msgid "Save project" +msgstr "Guardar proyecto" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Guarde el archivo .umm en una memoria USB." @@ -3287,6 +3486,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado en unidad extraíble {0} como {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Guardando" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Guardando en unidad extraíble {0}" @@ -3367,6 +3570,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Enviar informe de errores a UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Envíe informes de fallos con el nombre de su cuenta UltiMaker registrada y el nombre del proyecto a UltiMaker Sentry. No se envían datos reales del modelo." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Envíe a UltiMaker informes de incidencias sin ningún tipo de información que permita la identificación personal ni datos de modelos." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Enviar informes de fallos del motor" + msgctxt "@action:button" msgid "Send report" msgstr "Enviar informe" @@ -3411,6 +3626,14 @@ msgctxt "@label" msgid "Settings" msgstr "Ajustes" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Ajustes cargados desde el archivo UCP" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:" @@ -3479,6 +3702,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "¿Deben notificarse automáticamente las incidencias de rebanado a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP u otra información de identificación personal, a menos que usted lo autorice explícitamente." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "¿Se debe limpiar la placa de impresión antes de cargar un nuevo modelo en una única instancia de Cura?" @@ -3535,6 +3762,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar informe de errores detallado" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Mostrar ajustes" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto" @@ -3603,10 +3834,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Error en el corte" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Segmentando..." @@ -3615,13 +3842,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavizado" +msgctxt "@label" +msgid "Solid" +msgstr "Sólido" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista de sólidos" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n\nHaga clic para mostrar estos ajustes." +msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados." +"Haga clic para mostrar estos ajustes." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3869,8 @@ msgstr "Algunos de los valores de configuración definidos en %1 se han a msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n\nHaga clic para abrir el administrador de perfiles." +msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil." +"Haga clic para abrir el administrador de perfiles." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3896,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Patrocinar Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Patrocinar Cura" @@ -3721,10 +3952,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Ajustes de material sugeridos" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Ajustes de perfil sugeridos" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumen: proyecto de Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Resumen: Abrir proyecto Universal Cura (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Resumen: Proyecto Universal Cura" + msgctxt "@label" msgid "Support" msgstr "Soporte" @@ -3843,6 +4090,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "La copia de seguridad excede el tamaño máximo de archivo." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "El perfil equilibrado está diseñado para lograr un equilibrio entre la productividad, la calidad de la superficie, las propiedades mecánicas y la precisión dimensional." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "La altura de la base desde la placa de impresión en milímetros." @@ -3899,6 +4150,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras." @@ -3959,7 +4214,10 @@ msgstr "Tobera insertada en este extrusor." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Patrón del material de relleno de la impresión:\n\nPara impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero.\n\nPara una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono.\n\nPara las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." +msgstr "Patrón del material de relleno de la impresión:" +"Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero." +"Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono." +"Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4077,6 +4335,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Este es un archivo de proyecto Cura Universal. ¿Desea abrirlo como proyecto Cura o proyecto Universal Cura o importar los modelos desde él?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?" @@ -4125,7 +4387,8 @@ msgstr "Este proyecto contiene materiales o complementos que actualmente no est msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Este ajuste tiene un valor distinto del perfil.\n\nHaga clic para restaurar el valor del perfil." +msgstr "Este ajuste tiene un valor distinto del perfil." +"Haga clic para restaurar el valor del perfil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4406,8 @@ msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modifi msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n\nHaga clic para restaurar el valor calculado." +msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido." +"Haga clic para restaurar el valor calculado." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4153,6 +4417,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Es posible que este ajuste no funcione correctamente al exportar a un proyecto Universal Cura, se ruega a los usuarios que lo añadan bajo su propia responsabilidad." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Es posible que este ajuste no funcione correctamente al exportar a un proyecto Universal Cura. Se ruega a los usuarios que lo añadan bajo su propia responsabilidad." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Esta versión no está destinada al uso en producción. Si tiene algún problema, notifíquelo en nuestra página de GitHub, mencionando la versión completa {self.getVersion()}" @@ -4245,6 +4517,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Tipo" +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impresión USB" @@ -4299,7 +4575,8 @@ msgstr "No se puede encontrar el ejecutable del servidor EnginePlugin local para msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}\nEl acceso se ha denegado." +msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}" +"El acceso se ha denegado." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4341,6 +4618,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "No se puede escribir en el archivo: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "No disponible" @@ -4361,6 +4642,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidad" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Proyecto Universal Cura" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Los archivos del proyecto Universal Cura pueden imprimirse en diferentes impresoras 3D conservando los datos de posición y los ajustes seleccionados. Al exportarlos, se incluirán todos los modelos presentes en la placa de impresión junto con su posición, orientación y escala actuales. También puede seleccionar qué ajustes por extrusor o por modelo deben incluirse para garantizar una impresión adecuada." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuración del sistema de construcción universal" @@ -4477,6 +4766,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidades, incluida la generación de Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "Valor" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impresoras en Digital Factory" @@ -4525,6 +4818,10 @@ msgctxt "@button" msgid "Want more?" msgstr "¿Desea obtener más información?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Advertencia" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad." @@ -4549,6 +4846,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "¿Qué impresora le gustaría configurar?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "¿Qué tipo de cámara de navegación debe utilizarse?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "¿Qué tipo de renderizado de cámara debería usarse?" @@ -4649,7 +4950,9 @@ msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Re msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Ha personalizado algunos ajustes del perfil.\n¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\nTambién puede descartar los cambios para cargar los valores predeterminados de'%1'." +msgstr "Ha personalizado algunos ajustes del perfil." +"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?" +"También puede descartar los cambios para cargar los valores predeterminados de'%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4984,8 @@ msgstr "Su nueva impresora aparecerá automáticamente en Cura" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Su impresora {printer_name} podría estar conectada a través de la nube.\n Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" +msgstr "Su impresora {printer_name} podría estar conectada a través de la nube." +" Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" msgctxt "@label" msgid "Z" @@ -4727,6 +5031,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "hoy" @@ -4747,491 +5055,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Error al descargar los complementos {}" -msgid "Provides support for exporting Cura profiles." -msgstr "Ofrece asistencia para exportar perfiles de Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Escritor de perfiles de Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." - -msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lector de perfiles antiguos de Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Proporciona asistencia para leer archivos X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lector de X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite la escritura de paquetes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Escritor de UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Actualización de la versión 3.5 a la 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Actualización de la versión 4.1 a la 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Actualización de la versión 4.7 a la 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Actualización de la versión 4.9 a la 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Actualización de la versión 3.2 a la 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Actualización de la versión 2.7 a la 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Actualización de la versión 4.11 a 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Actualización de la versión 2.6 a la 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Actualización de la versión 4.8 a la 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Actualización de la versión 4.3 a la 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Actualización de la versión 3.3 a la 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Actualización de la versión 4.4 a la 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Actualización de la versión 2.5 a la 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Actualización de la versión 2.1 a la 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Actualización de la versión 4.2 a la 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Actualización de la versión 5.2 a la 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Actualización de la versión 4.0 a la 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Actualización de la versión 2.2 a la 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Actualización de la versión 3.4 a la 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Actualización de la versión 4.3 a la 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Actualización de versión 5.4 a 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Actualización de la versión 4.5 a la 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Actualización de la versión 3.0 a la 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Actualización de la versión 4.6.0 a la 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Actualización de la versión 4.6.2 a la 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Actualización de versión 5.3 a 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" - -msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Proporciona la vista previa de los datos de las capas cortadas." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vista de simulación" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lector de perfiles de Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Proporciona los ajustes por modelo." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Herramienta de ajustes por modelo" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Proporciona una fase de vista previa en Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de vista previa" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Borrador de soporte" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite cargar y visualizar archivos GCode." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lector de GCode" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Realice una copia de seguridad de su configuración y restáurela." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de dispositivo de salida de unidad extraíble" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "Flujo gradual de CuraEngine" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Permite leer y escribir perfiles de material basados en XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acciones de la máquina UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Proporciona la vista de rayos X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista de rayos X" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestiona las conexiones de red de las impresoras UltiMaker conectadas." +msgstr "Gestiona las conexiones de red con las impresoras en red UltiMaker." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "Conexión en red de UltiMaker" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Acción Ajustes de la máquina" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Proporciona asistencia para leer archivos 3D." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lector Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lector de imágenes" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Proporciona opciones a la máquina para actualizar el firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Actualizador de firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Backend de CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Proporciona una fase de preparación en Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparación" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Busca actualizaciones de firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Buscador de actualizaciones de firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escribe GCode en un archivo." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Escritor de GCode" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." - -msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Proporciona asistencia para leer archivos 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lector de 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impresión USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Proporciona asistencia para leer archivos AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lector de AMF" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." @@ -5248,6 +5079,374 @@ msgctxt "name" msgid "Solid View" msgstr "Vista de sólidos" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "Flujo gradual de CuraEngine" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Proporciona asistencia para leer archivos 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Lector de 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Impresión USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Busca actualizaciones de firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Buscador de actualizaciones de firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Acción Ajustes de la máquina" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Actualización de la versión 2.5 a la 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Actualización de la versión 4.7 a la 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Actualización de la versión 4.4 a la 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Actualización de la versión 3.0 a la 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Actualización de la versión 4.11 a 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Actualización de la versión 4.1 a la 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Actualización de la versión 2.6 a la 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Actualización de la versión 4.6.0 a la 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Actualización de la versión 3.3 a la 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Actualización de la versión 4.8 a la 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Actualización de la versión 4.5 a la 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Actualización de la versión 4.2 a la 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Actualización de la versión 3.2 a la 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Actualización de la versión 4.3 a la 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Actualiza las configuraciones de Cura 5.6 a Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Actualización de la versión 5.6 a la 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Actualización de la versión 2.1 a la 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Actualización de versión 5.3 a 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Actualización de la versión 4.9 a la 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Actualización de la versión 2.7 a la 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Actualización de la versión 3.5 a la 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Actualización de la versión 5.2 a la 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Actualización de la versión 4.0 a la 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Actualización de la versión 4.3 a la 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Actualización de la versión 3.4 a la 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Actualización de la versión 2.2 a la 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Actualización de la versión 4.6.2 a la 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Actualización de versión 5.4 a 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite cargar y visualizar archivos GCode." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lector de GCode" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." + +msgctxt "name" +msgid "Slice info" +msgstr "Info de la segmentación" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de dispositivo de salida de unidad extraíble" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Borrador de soporte" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." + +msgctxt "name" +msgid "Model Checker" +msgstr "Comprobador de modelos" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Proporciona una fase de preparación en Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparación" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Proporciona la vista previa de los datos de las capas cortadas." + +msgctxt "name" +msgid "Simulation View" +msgstr "Vista de simulación" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Proporciona asistencia para leer archivos AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Lector de AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Proporciona la vista de rayos X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista de rayos X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lector de perfiles antiguos de Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" + +msgctxt "name" +msgid "Post Processing" +msgstr "Posprocesamiento" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" @@ -5257,12 +5456,20 @@ msgid "Sentry Logger" msgstr "Registro de Sentry" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Proporciona soporte para escribir paquetes de formato MakerBot." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" +msgid "Makerbot Printfile Writer" +msgstr "Escritor de archivos de impresión Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Proporciona asistencia para la importación de perfiles de Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lector de perfiles de Cura" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5480,20 @@ msgid "UFP Reader" msgstr "Lector de UFP" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Proporciona asistencia para escribir archivos 3MF." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" +msgid "Image Reader" +msgstr "Lector de imágenes" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Backend de CuraEngine" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,89 +5503,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Escritor de GCode comprimido" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acciones de la máquina UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Proporciona una fase de vista previa en Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de vista previa" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Proporciona asistencia para exportar perfiles de Cura." -msgctxt "@info:title" -msgid "Error" -msgstr "Error" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Escritor de perfiles de Cura" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Proporciona asistencia para leer archivos X3D." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lector de X3D" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Proporciona asistencia para leer archivos 3D." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Más información" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lector Trimesh" -msgctxt "@title:tab" -msgid "General" -msgstr "General" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Proporciona una fase de supervisión en Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de supervisión" -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Proporciona los ajustes por modelo." -msgctxt "@info:title" -msgid "Saving" -msgstr "Guardando" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Herramienta de ajustes por modelo" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "El archivo ya existe" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Permite leer y escribir perfiles de material basados en XML." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos los tipos compatibles ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfiles de material" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "No se pudo guardar en {0}: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Permite escribir archivos 3MF y UCP." -msgctxt "@action:button" -msgid "OK" -msgstr "Aceptar" +msgctxt "name" +msgid "3MF Writer" +msgstr "Escritor de 3MF" -msgctxt "@info:title" -msgid "Warning" -msgstr "Advertencia" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite la escritura de paquetes de formato Ultimaker." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impresoras" +msgctxt "name" +msgid "UFP Writer" +msgstr "Escritor de UFP" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Archivo guardado" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escribe GCode en un archivo." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar eliminación" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos los archivos (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Equilibrado" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "El perfil equilibrado está diseñado para lograr un equilibrio entre la productividad, la calidad de la superficie, las propiedades mecánicas y la precisión dimensional." +msgctxt "name" +msgid "G-code Writer" +msgstr "Escritor de GCode" diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index 415c94489d..a8ea1ca255 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Duración del código G de fin del extrusor" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "El tiempo que tarda en ejecutarse el código G final, cuando se sale de este extrusor." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posición final absoluta del extrusor" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posición de fin del extrusor sobre el eje Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Duración del código G de inicio del extrusor" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "El tiempo que tardará en ejecutarse el código G de inicio, al cambiar a este extrusor." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posición de inicio absoluta del extrusor" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posición de inicio del extrusor sobre el eje X" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posición de inicio del extrusor sobre el eje Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desplazamiento de la tobera sobre el eje X" @@ -131,51 +196,3 @@ msgstr "Desplazamiento de la tobera sobre el eje Y" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Coordenada Y del desplazamiento de la tobera." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 8e7ea8b903..af94274b3b 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Tipo de máquina" @@ -34,7 +42,8 @@ msgstr "Iniciar GCode" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - \n." +msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "Finalizar GCode" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -\n." +msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -" +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "GUID del material. Este valor se define de forma automática." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo de material" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "El tipo de material utilizado." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca del material" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marca del material utilizado." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Esperar a que la placa de impresión se caliente" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Desplazamiento con extrusor" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Posición de preparación absoluta del extrusor" @@ -380,14 +438,6 @@ msgctxt "machine_max_feedrate_x label" msgid "Maximum Speed X" msgstr "Velocidad máxima sobre el eje X" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." - msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Velocidad máxima del motor de la dirección X." @@ -1504,22 +1554,6 @@ msgctxt "infill_pattern option lightning" msgid "Lightning" msgstr "Rayos" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ángulo del voladizo de relleno de rayos" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ángulo de recorte de relleno de rayos" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ángulo de enderezamiento de rayos" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ángulo de sujeción de relleno de rayos" - msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" msgstr "Conectar líneas de relleno" @@ -1582,7 +1616,8 @@ msgstr "Recuento de líneas de pared adicional" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material.\nPuede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." +msgstr "Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material." +"Puede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1688,14 +1723,46 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "El número de capas de relleno que soportan los bordes del forro." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ángulo de sujeción de relleno de rayos" + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ángulo del voladizo de relleno de rayos" + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ángulo de recorte de relleno de rayos" + msgctxt "lightning_infill_prune_angle description" msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ángulo de enderezamiento de rayos" + msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Temperatura de impresión predeterminada" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Temperatura de impresión de la capa inicial" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." +msgid "The temperature used for printing the first layer." +msgstr "La temperatura utilizada para imprimir la primera capa." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flujo de la pared exterior de la superficie superior" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flujo de la pared interior de la superficie superior" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Flujo superior o inferior" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidad de la pared externa de la superficie superior" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidad de la pared interna de la superficie superior" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Velocidad de la superficie superior del forro" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Aceleración a la que se imprimen las paredes interiores." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleración de la superficie externa superior de la pared" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleración de la superficie interna superior de la pared" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Aceleración de la superficie superior del forro" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Sacudida de la pared interior de la superficie superior" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Sacudida de la pared exterior más externa de la superficie superior" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Impulso de la superficie superior del forro" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Distancia en Z del soporte" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Distancia inferior del soporte" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distancia desde la parte inferior del soporte a la impresión." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolución de la interfaz de soporte" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Densidad de la interfaz de soporte" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "Activar gotas de cebado" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Tipo adherencia de la placa de impresión" @@ -3818,7 +3965,8 @@ msgstr "Distancia de falda" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distancia horizontal entre la falda y la primera capa de la impresión.\nSe trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." +msgstr "La distancia horizontal entre la falda y la primera capa de la impresión." +"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Borde solo en el exterior" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Ubicación del borde" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprima un borde en el exterior del modelo, en el interior o en ambos. Dependiendo del modelo, esto ayuda a reducir la cantidad de borde que tendrá que retirar después, al tiempo que garantiza una correcta adherencia de la cama." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Solo exterior" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Solo interior" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "En todas partes" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Margen de distancia del borde interior" +msgid "Brim Avoid Margin" +msgstr "Borde, evitar margen" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Un borde alrededor de un modelo puede tocar a otro modelo donde no lo desee. Esto elimina todo el borde dentro de esta distancia de los modelos sin borde." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margen extra de base de balsa" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la base de balsa está activada, esta es el área de balsa extra alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más fuerte, aunque utilizará más material y dejará menos superficie para su impresión." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margen extra medio de la balsa" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si el medio de la balsa está activado, esta es el área adicional de la balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margen extra de la parte superior de la balsa" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la parte superior de la balsa está activada, esta es el área extra de balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Quitar las esquinas internas de la balsa" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Retirar las esquinas interiores de la base de la balsa" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la base de la balsa, lo que hará que esta se vuelva convexa." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Retirar las esquinas interiores centrales de la balsa" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la parte central de la balsa, lo que hará que esta se vuelva convexa." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Retire las esquinas interiores de la parte superior de la balsa" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la parte superior de la balsa, lo que hará que esta se vuelva convexa." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Suavizado de la balsa" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Suavizado de la base de la balsa" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno de la base de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Suavizado medio de la balsa" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno medio de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Suavizado de la parte superior de la balsa" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno superior de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Cámara de aire de la balsa" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Superposición de las capas iniciales en Z" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Haga que la primera y la segunda capa del modelo se solapen en la dirección Z para compensar el filamento perdido en el entrehierro. Todos los modelos situados por encima de la primera capa del modelo se desplazarán hacia abajo en esta medida.\nCabe señalar que a veces la segunda capa se imprime por debajo de la capa inicial debido a este ajuste. Este es el comportamiento previsto." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Capas superiores de la balsa" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Grosor de la base de la balsa" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Grosor de las capas superiores de la balsa" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ancho de la línea base de la balsa" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Grosor de capa de las capas superiores de la balsa." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ancho de las líneas superiores de la balsa" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacio de la línea base de la balsa" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaciado superior de la balsa" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Grosor de la base de la balsa" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Capas superiores de la balsa" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ancho de la línea base de la balsa" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Grosor de las capas superiores de la balsa" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Grosor de capa de las capas superiores de la balsa." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacio de la línea base de la balsa" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ancho de las líneas superiores de la balsa" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaciado superior de la balsa" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Orden monotónico de la superficie superior de la balsa" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprima las líneas de la superficie superior de la balsa en un orden que haga que siempre se solapen con las líneas adyacentes en una sola dirección. Esto lleva algo más de tiempo de impresión, pero hace que la superficie tenga un aspecto más homogéneo, lo que también se aprecia en la superficie inferior del modelo." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Número de paredes de la balsa" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal de la balsa." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Recuento de paredes base de balsa" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Número de paredes intermedias de la balsa" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas medias de la balsa." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Número de paredes superiores de la balsa" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas superiores de la balsa." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "Velocidad a la que se imprime la balsa." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidad de impresión de la balsa superior" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidad de impresión de la base de la balsa" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidad de impresión de la base de la balsa" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidad de impresión de la balsa superior" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "Aceleración a la que se imprime la balsa." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleración de la impresión de la balsa superior" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleración de la impresión de la base de la balsa" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Aceleración a la que se imprime la capa base de la balsa." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleración de la impresión de la base de la balsa" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleración de la impresión de la balsa superior" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Aceleración a la que se imprime la capa base de la balsa." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "Impulso con el que se imprime la balsa." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Impulso de impresión de balsa superior" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Impulso de impresión de base de la balsa" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Impulso con el que se imprimen las capas superiores de la balsa." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Impulso con el que se imprime la capa base de la balsa." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "Impulso con el que se imprime la capa intermedia de la balsa." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Impulso de impresión de base de la balsa" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Impulso de impresión de balsa superior" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Impulso con el que se imprime la capa base de la balsa." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Impulso con el que se imprimen las capas superiores de la balsa." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "Velocidad del ventilador para la balsa." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidad del ventilador de balsa superior" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidad del ventilador de la base de la balsa" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Velocidad del ventilador para las capas superiores de la balsa." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Velocidad del ventilador para la capa base de la balsa." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "Velocidad del ventilador para la capa intermedia de la balsa." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidad del ventilador de la base de la balsa" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidad del ventilador de balsa superior" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Velocidad del ventilador para la capa base de la balsa." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Velocidad del ventilador para las capas superiores de la balsa." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo de torre de imprimación" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Cómo generar la torre de imprimación:
    • Normal: cree un cubo en el que los materiales secundarios estén imprimados
    • Intercalada: cree una torre de imprimación lo más dispersa posible. Esto ahorrará tiempo y filamento, pero solo es posible si los materiales utilizados se adhieren entre sí
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalada" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Tamaño de la torre auxiliar" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distancia máxima de puenteo de la torre de imprimación" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Longitud máxima de las ramas que pueden imprimirse en el aire." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posición de la torre auxiliar sobre el eje X" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Borde de la torre auxiliar" +msgid "Prime Tower Base" +msgstr "Base de la torre de cebado" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamaño de la base de la torre de cebado" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura de la base de la torre de cebado" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pendiente de la Base de la Torre de Cebado" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaciado de las líneas del raft de la torre de cebado" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "De uno en uno" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Establecer secuencia de impresión manualmente" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Le permite ordenar la lista de objetos para establecer manualmente la secuencia de impresión. El primer objeto de la lista se imprimirá primero." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Malla de relleno" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Quitar las esquinas internas de la balsa" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar las paredes exteriores" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Recuento de paredes base de balsa" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Informe del proceso de impresión" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Informes de eventos que se salen de los umbrales establecidos" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Activar informe de proceso de impresión" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Habilite la generación de informes de procesos de impresión para establecer valores umbral para la posible detección de fallos." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Advertencia de caudal" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Límite del aviso de caudal para la detección." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Límite de caudal" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Límite en la anomalía de caudal para la detección." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Advertencia de temperatura de impresión" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Límite en la advertencia de temperatura de impresión para la detección." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Límite de temperatura de impresión" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Límite de anomalía de temperatura de impresión para la detección." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Advertencia de temperatura de volumen de construcción" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Límite de la advertencia de temperatura de volumen de construcción para la detección." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Límite de temperatura del volumen de acumulación" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Límite de detección de anomalías en la temperatura del volumen de producción." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,190 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flujo gradual activado" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleración máxima del flujo gradual" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleración máxima para los cambios de flujo graduales" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleración máxima del flujo de la capa inicial" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamaño del paso de discretización del flujo gradual" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duración de cada paso en el cambio de flujo gradual" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Restablecer duración del flujo" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo." - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar las paredes exteriores" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flujo de la pared exterior de la superficie superior" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flujo de la pared interior de la superficie superior" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidad de la pared externa de la superficie superior" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidad de la pared interna de la superficie superior" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleración de la superficie externa superior de la pared" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleración de la superficie interna superior de la pared" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Sacudida de la pared interior de la superficie superior" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Sacudida de la pared exterior más externa de la superficie superior" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." +msgstr "Ajusta la colocacin de las estructuras del soporte. La colocacin se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte tambin se imprimirn en el modelo." diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..a71e3b01cc --- /dev/null +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flujo gradual habilitado" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilite cambios de flujo gradual. Al habilitarse, el flujo se incrementa/decrementa gradualmente hasta el flujo objetivo. Esto es útil para impresoras con tubo bowden en las que el flujo no cambia inmediatamente cuando el motor extrusor arranca o se detiene." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Flujo gradual de aceleración máxima" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleración máxima para cambios graduales de flujo" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleración máxima de flujo de capa inicial" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidad mínima para cambios graduales de flujo en la primera capa" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamaño del intervalo para discretización de flujo gradual" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duración de cada intervalo en el cambio de flujo gradual" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Restablecer duración de flujo" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo material se restablece al flujo objetivo de las trayectorias" diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index 8ec91cc9dc..a5ad7842c9 100644 --- a/resources/i18n/fdmextruder.def.json.pot +++ b/resources/i18n/fdmextruder.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -56,6 +56,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "" @@ -88,6 +96,14 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index d3078381b4..3a9c03d6f8 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -64,6 +64,22 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "material_diameter label" msgid "Diameter" msgstr "" @@ -1777,7 +1793,7 @@ msgid "Printing Temperature Initial Layer" msgstr "" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgid "The temperature used for printing the first layer." msgstr "" msgctxt "material_initial_print_temperature label" @@ -2020,6 +2036,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "" @@ -2188,6 +2220,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "" @@ -2372,6 +2420,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "" @@ -2532,6 +2596,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "" @@ -3313,7 +3393,7 @@ msgid "Support Z Distance" msgstr "" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." msgstr "" msgctxt "support_top_distance label" @@ -3329,7 +3409,7 @@ msgid "Support Bottom Distance" msgstr "" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." msgstr "" msgctxt "support_xy_distance label" @@ -3484,14 +3564,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "" - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "" @@ -3940,20 +4012,32 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" +msgctxt "brim_location label" +msgid "Brim Location" msgstr "" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" msgstr "" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgid "Brim Avoid Margin" msgstr "" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" msgctxt "brim_smart_ordering label" @@ -3972,6 +4056,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "" @@ -3980,6 +4120,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "" @@ -3993,39 +4157,31 @@ msgid "Initial Layer Z Overlap" msgstr "" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" msgstr "" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" msgstr "" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." msgstr "" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" msgstr "" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." msgstr "" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" msgstr "" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." msgstr "" msgctxt "raft_interface_layers label" @@ -4060,28 +4216,76 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" msgstr "" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" msgstr "" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." msgstr "" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" msgstr "" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." msgstr "" msgctxt "raft_speed label" @@ -4092,12 +4296,12 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" msgstr "" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "" msgctxt "raft_interface_speed label" @@ -4108,12 +4312,12 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" msgstr "" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "" msgctxt "raft_acceleration label" @@ -4124,12 +4328,12 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" msgstr "" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." msgstr "" msgctxt "raft_interface_acceleration label" @@ -4140,12 +4344,12 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" msgstr "" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." msgstr "" msgctxt "raft_jerk label" @@ -4156,12 +4360,12 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" msgstr "" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." msgstr "" msgctxt "raft_interface_jerk label" @@ -4172,12 +4376,12 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" msgstr "" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." msgstr "" msgctxt "raft_fan_speed label" @@ -4188,12 +4392,12 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" msgstr "" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." msgstr "" msgctxt "raft_interface_fan_speed label" @@ -4204,12 +4408,12 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" msgstr "" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." msgstr "" msgctxt "dual label" @@ -4228,6 +4432,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "" @@ -4244,6 +4464,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "" @@ -4269,11 +4497,43 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" +msgid "Prime Tower Base" msgstr "" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." msgstr "" msgctxt "ooze_shield_enabled label" @@ -4500,6 +4760,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "" @@ -5308,20 +5576,76 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" msgstr "" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" +msgctxt "ppr label" +msgid "Print Process Reporting" msgstr "" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." msgstr "" msgctxt "command_line_settings label" @@ -5372,118 +5696,3 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "" - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 2be1863b49..f8a0313836 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "" @@ -252,6 +256,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "" @@ -486,10 +494,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Sovelluskehys" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -548,6 +564,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Järjestä valinta" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -612,6 +632,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "Tasapainotettu" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Pohja (mm)" @@ -668,6 +692,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Laskettu" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "" @@ -996,6 +1024,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1240,10 +1272,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "" -msgctxt "@label" -msgid "Default" -msgstr "" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "" @@ -1392,6 +1420,10 @@ msgctxt "@label" msgid "Draft" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Jäljennös" @@ -1518,6 +1550,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1551,10 +1587,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "" @@ -1621,6 +1670,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "" @@ -1762,6 +1816,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "" @@ -1850,6 +1907,10 @@ msgctxt "@action" msgid "Get started" msgstr "" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Yleiset asetukset" @@ -1899,6 +1960,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Piilota tämä asetus" @@ -1975,6 +2040,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Täyttö" @@ -2331,6 +2400,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Hallitse materiaaleja..." @@ -2662,6 +2747,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "" @@ -2763,6 +2852,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin." +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Avaa" @@ -2791,10 +2884,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Avaa projektina" @@ -3003,6 +3108,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -3099,6 +3208,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Tulosta" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Tulosta jälkeen" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Tulosta ennen" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3405,8 +3522,12 @@ msgid "Provides support for reading model files." msgstr "" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Tukee 3MF-tiedostojen kirjoittamista." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3646,7 +3767,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3673,6 +3798,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3776,6 +3905,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "" @@ -3828,6 +3969,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Asetukset" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "" @@ -3896,6 +4041,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3952,6 +4101,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan" @@ -4028,10 +4181,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Viipaloidaan..." @@ -4040,6 +4189,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Tasoitus" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Kiinteä näkymä" @@ -4165,10 +4318,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Yhteenveto – Cura-projekti" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "" @@ -4291,6 +4460,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Pohjan korkeus alustasta millimetreinä." @@ -4537,6 +4710,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?" @@ -4626,6 +4803,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4855,6 +5040,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "" @@ -4875,6 +5065,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5064,6 +5262,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Lataa mukautettu laiteohjelmisto" @@ -5096,6 +5298,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Päivitys versiosta 2.1 versioon 2.2" @@ -5200,6 +5406,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5277,6 +5487,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "" @@ -5482,6 +5696,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "" @@ -5503,18 +5721,10 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "@label" -msgid "Balanced" -msgstr "Tasapainotettu" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Järjestä valinta" - #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin." + +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Tukee 3MF-tiedostojen kirjoittamista." diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index 3a36171e14..fe680ec53b 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -44,6 +44,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Suulakkeen lopetus-GCode" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Suulakkeen lopetussijainti absoluuttinen" @@ -76,6 +80,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Suulakkeen aloitus-GCode" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Suulakkeen aloitussijainti absoluuttinen" @@ -160,6 +168,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "" +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Lopetussijainnin X-koordinaatti, kun suulake poistetaan käytöstä." diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 98f4de3e8c..2c63a641f5 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -16,6 +16,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.1.1\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Etäisyys mallin reunoihin. Silitys verkon reunoihin saakka voi johtaa rosoiseen reunaan tulosteessa." @@ -60,10 +68,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Monikulmioluettelo, jossa on alueet, joihin tulostuspää ei saa siirtyä." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -154,6 +158,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Kaikki tulostuksen resoluutioon vaikuttavat asetukset. Näillä asetuksilla on suuri vaikutus laatuun (ja tulostusaikaan)." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Vuoroittainen lisäseinämä" @@ -402,21 +410,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Reunus" -msgctxt "brim_gap label" -msgid "Brim Distance" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" msgstr "" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgctxt "brim_gap label" +msgid "Brim Distance" msgstr "" msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Reunuksen linjaluku" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Reunus vain ulkopuolella" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -458,6 +466,18 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "" @@ -743,16 +763,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Etäisyys tulosteesta tuen alaosaan." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Etäisyys tuen yläosasta tulosteeseen." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -866,6 +886,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Ota tulostuksen jäähdytys käyttöön" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Ota takaisinveto käyttöön" @@ -898,6 +922,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Ottaa ulkoisen tihkusuojuksen käyttöön. Tämä luo mallin ympärille kuoren, joka pyyhkii todennäköisesti toisen suuttimen, jos se on samalla korkeudella kuin ensimmäinen suutin." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -930,6 +958,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Kaikkialla" @@ -1034,6 +1066,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "" @@ -1046,6 +1082,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Virtauksen lämpötilakaavio" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "" @@ -1094,6 +1134,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Virtauksen kompensointi yläpinnan uloimman seinän linjalla." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Virtauksen kompensointi yläpinnan seinälinjoilla kaikille seinälinjoille paitsi uloimman linjalle." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "" @@ -1278,6 +1326,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Ryhmittele ulkoseinät" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "" @@ -1422,10 +1474,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Jos pohjaristikko on otettu käyttöön, tämä on ylimääräinen ristikkoalue malli ympärillä, jolle myös annetaan pohjaristikko. Tämän marginaalin kasvattaminen vahvistaa pohjaristikkoa, jolloin käytetään enemmän materiaalia ja tulosteelle jää vähemmän tilaa." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Jätetään limittyvistä ainemääristä koostuva verkon sisäinen geometria huomiotta ja tulostetaan ainemäärät yhtenä. Tämä saattaa poistaa tahattomia sisäisiä onkaloita." @@ -1654,6 +1718,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Ulkoseinämän reitille asetettu liitos. Jos ulkoseinämä on pienempi kuin suutin ja se tulostetaan sisäseinämien jälkeen, tällä siirtymällä saadaan suuttimen reikä limittymään sisäseinämiin mallin ulkopuolen sijaan." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1666,6 +1734,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1806,6 +1878,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Rajoita tämän verkon laajuus muiden verkkojen alueelle. Tällä voit määrittää tietyt yhden verkon alueet tulostumaan eri asetuksilla ja täysin eri suulakkeella." @@ -1903,8 +1999,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Tekee suulakkeen esitäyttösijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Mallin ensimmäisen ja toisen kerroksen limitys Z-suunnassa, millä kompensoidaan ilmaraossa menetettyä tulostuslankaa. Kaikki ensimmäisen mallin kerroksen yläpuolella olevat mallit siirtyvät alas tämän määrän." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1930,10 +2028,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiaali" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "Materiaalin GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "" @@ -2210,6 +2316,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "" @@ -2250,6 +2360,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normaali" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "" @@ -2382,10 +2496,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Suorita silitys vain verkon viimeisessä kerroksessa. Tämä säästää aikaa, jos alemmat kerrokset eivät edellytä sileää pintaviimeistelyä." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Tulostaa reunuksen vain mallin ulkopuolelle. Tämä vähentää myöhemmin poistettavan reunuksen määrää, mutta se ei juurikaan vähennä pöydän tarttuvuutta." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Tihkusuojuksen kulma" @@ -2442,6 +2552,14 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Ulkoseinämän täyttöliikkeen etäisyys" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2495,7 +2613,19 @@ msgid "Prime Tower Acceleration" msgstr "Esitäyttötornin kiihtyvyys" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" msgstr "" msgctxt "prime_tower_flow label" @@ -2510,10 +2640,18 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Esitäyttötornin linjan leveys" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Esitäyttötornin minimiainemäärä" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Esitäyttötornin koko" @@ -2522,6 +2660,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Esitäyttötornin nopeus" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Esitäyttötornin X-sijainti" @@ -2530,10 +2672,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Esitäyttötornin Y-sijainti" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Tulostuksen kiihtyvyys" @@ -2542,6 +2680,10 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Tulostuksen nykäisy" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Tulostusjärjestys" @@ -2554,6 +2696,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Tulosta ohuet seinämät" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Tulosta tulosteen viereen torni, jolla materiaali esitäytetään aina suuttimen vaihdon jälkeen." @@ -2574,6 +2720,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Tulostaa mallin kohtia, jotka ovat vaakasuunnassa suuttimen kokoa ohuempia." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "" @@ -2582,6 +2732,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Tulostetaan täyttö ennen seinien tulostamista. Seinien tulostaminen ensin saattaa johtaa tarkempiin seiniin, mutta ulokkeet tulostuvat huonommin. Täytön tulostaminen ensin johtaa tukevampiin seiniin, mutta täyttökuvio saattaa joskus näkyä pinnan läpi." @@ -2626,6 +2784,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Pohjaristikon ilmarako" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2654,6 +2816,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Pohjaristikon pohjan tulostusnopeus" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Pohjaristikon pohjan paksuus" @@ -2670,6 +2836,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Pohjaristikon tuulettimen nopeus" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2698,6 +2868,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Pohjaristikon keskikerroksen tulostusnopeus" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Pohjaristikon keskikerroksen linjajako" @@ -2706,6 +2880,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Pohjaristikon keskikerroksen paksuus" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Pohjaristikon tulostuksen kiihtyvyys" @@ -2722,6 +2900,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Pohjaristikon tasoitus" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2754,10 +2936,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Pohjaristikon pinnan tulostusnopeus" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Pohjaristikon pinnan linjajako" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Satunnainen" @@ -2810,10 +3004,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Poista verkon leikkauspiste" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Poistaa alueet, joissa useat verkot ovat limittäin toistensa kanssa. Tätä voidaan käyttää, jos yhdistetyt kaksoismateriaalikappaleet ovat limittäin toistensa kanssa." @@ -2822,6 +3028,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2842,6 +3060,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Korvaa ylä-/alakuvion uloimman osan samankeskisillä linjoilla. Yhden tai kahden linjan käyttäminen parantaa kattoja, jotka alkavat täyttömateriaalin keskeltä." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2914,6 +3136,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Saumakulmien asetus" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Aseta tulostusjärjestys manuaalisesti" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Aseta vetosuojuksen korkeus. Valitse, tulostetaanko vetosuojus koko mallin korkuisena vai rajoitetun korkuisena." @@ -3314,10 +3540,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Tukiliittymän resoluutio" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Tukiliittymän nopeus" @@ -3602,6 +3824,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "Kiihtyvyys, jolla pohjaristikon pintakerrokset tulostetaan." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Yläpinnan sisäseinien tulostamisen kiihtyvyys." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Yläpinnan uloimpien seinien tulostamisen kiihtyvyys." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Kiihtyvyys, jolla seinämät tulostetaan." @@ -3662,6 +3892,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Keskimääräinen etäisyys kunkin linjasegmentin satunnaisten pisteiden välillä. Huomaa, että alkuperäiset monikulmion pisteet poistetaan käytöstä, joten korkea sileysarvo alentaa resoluutiota. Tämän arvon täytyy olla suurempi kuin puolet karhean pintakalvon paksuudesta." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Tulostuspään liikkeen oletuskiihtyvyys." @@ -3742,6 +3976,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Pohjaristikon pintakerrosten linjojen välinen etäisyys. Linjajaon tulisi olla sama kuin linjaleveys, jotta pinta on kiinteä." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3938,6 +4176,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin. Poista porrasmainen ominaisuus käytöstä valitsemalla asetukseksi nolla." @@ -4008,6 +4250,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "" @@ -4100,6 +4346,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "Tukirakenteen tulostuksen nopeuden hetkellinen maksimimuutos." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Yläpinnan uloimman seinän tulostuksessa tapahtuva suurin välitön nopeuden muutos." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Yläpinnan sisäseinien tulostuksessa tapahtuva suurin välitön nopeuden muutos." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "Seinämien tulostuksen nopeuden hetkellinen maksimimuutos." @@ -4116,6 +4370,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Siirtoliikkeiden nopeuden hetkellinen maksimimuutos." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X-suunnan moottorin maksiminopeus." @@ -4228,6 +4486,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" @@ -4484,6 +4754,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "Nopeus, jolla pohjaristikon pintakerrokset tulostetaan. Nämä tulisi tulostaa hieman hitaammin, jotta suutin voi hitaasti tasoittaa vierekkäisiä pintalinjoja." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Yläpinnan sisäseinien tulostusnopeus." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Yläpinnan uloimpien seinien tulostusnopeus." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "" @@ -4545,8 +4823,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Lämpötila, johon jäähdytetään jo ennen tulostuksen loppumista." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4608,6 +4886,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Aineen määrä, joka muutoin on tihkunut. Tämän arvon tulisi yleensä olla lähellä suuttimen läpimittaa korotettuna kuutioon." @@ -4624,6 +4906,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Esitäyttötornin leveys." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Esitäyttötornin leveys." @@ -4652,10 +4938,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Tämä asetus rajoittaa pursotuksen minimietäisyyden ikkunassa tapahtuvien takaisinvetojen lukumäärää. Muut tämän ikkunan takaisinvedot jätetään huomiotta. Tällä vältetään toistuvat takaisinvedot samalla tulostuslangan osalla, sillä tällöin lanka voi litistyä ja aiheuttaa hiertymisongelmia." @@ -4692,6 +4990,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Yläpintakalvon poistoleveys" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Yläpinnan sisäseinän kiihtyvyys" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Yläpinnan uloimman seinän nykäys" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Yläpinnan sisäseinän nopeus" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Yläpinnan sisäseinän virtaus" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Yläpinnan ulkoseinän kiihtyvyys" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Yläpinnan uloimman seinän virtaus" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Yläpinnan sisäseinän nykäys" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Yläpinnan pintakalvon kiihtyvyys" @@ -4984,10 +5314,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Kun tarkistat tuen päällä ja alla olevaa mallia, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5380,1048 +5706,26 @@ msgctxt "travel description" msgid "travel" msgstr "siirtoliike" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Ryhmittele ulkoseinät" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Mahdollistaa kohteiden järjestämisen tulostusjärjestyksen manuaaliseen asettamiseen. Listan ensimmäinen kohde tulostetaan ensin." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään." +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Reunus vain ulkopuolella" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Yläpinnan uloimman seinän virtaus" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Mallin ensimmäisen ja toisen kerroksen limitys Z-suunnassa, millä kompensoidaan ilmaraossa menetettyä tulostuslankaa. Kaikki ensimmäisen mallin kerroksen yläpuolella olevat mallit siirtyvät alas tämän määrän." -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Virtauksen kompensointi yläpinnan uloimman seinän linjalla." +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Tulostaa reunuksen vain mallin ulkopuolelle. Tämä vähentää myöhemmin poistettavan reunuksen määrää, mutta se ei juurikaan vähennä pöydän tarttuvuutta." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Yläpinnan sisäseinän virtaus" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Virtauksen kompensointi yläpinnan seinälinjoilla kaikille seinälinjoille paitsi uloimman linjalle." - -msgctxt "speed_wall_0_roofing label" -msgid "Yläpinnan uloimman seinän nopeus" -msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Yläpinnan uloimpien seinien tulostusnopeus." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Yläpinnan sisäseinän nopeus" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Yläpinnan sisäseinien tulostusnopeus." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Yläpinnan ulkoseinän kiihtyvyys" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Yläpinnan uloimpien seinien tulostamisen kiihtyvyys." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Yläpinnan sisäseinän kiihtyvyys" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Yläpinnan sisäseinien tulostamisen kiihtyvyys." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Yläpinnan sisäseinän nykäys" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Yläpinnan sisäseinien tulostuksessa tapahtuva suurin välitön nopeuden muutos." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Yläpinnan uloimman seinän nykäys" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Yläpinnan uloimman seinän tulostuksessa tapahtuva suurin välitön nopeuden muutos." - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)" - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen päät mukaan lukien)" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korjausehto pursotettavan aineen kokonaismäärän säätöön jokaisen spagettitäytön aikana." - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Säteen kerroin kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat enemmän alajakoja eli enemmän pieniä kuutioita." - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Säätää tukirakenteen kattojen ja alaosien tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Säätää spagettitäytön tiheyttä. Huomaa, että täyttötiheys hallitsee vain täyttökuvion linjojen välien suuruutta, ei spagettitäytön pursotusmäärää." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Vuoroittaiset risti 3D -taskut" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Vuorottele pintakalvon pyöritystä" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Muuttaa ylä-/alakerrosten tulostussuuntaa. Normaalisti ne tulostetaan vain vinottain. Tämä asetus lisää vain X- ja vain Y -suunnat." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Käytä suulakkeen siirtymää koordinaattijärjestelmään." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Automaattinen lämpötila" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Taakse" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Alustan muoto" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Keskitä kappale" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Muuta kunkin kerroksen lämpötilaa automaattisesti kyseisen kerroksen keskimääräisen virtausnopeuden mukaan." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "Pyyhkäisy pitää suuttimen aiemmin tulostetuilla alueilla siirtoliikkeitä tehtäessä. Tämä johtaa hieman pidempiin siirtoliikkeisiin, mutta vähentää takaisinvedon tarvetta. Jos pyyhkäisy on poistettu käytöstä, materiaalille tehdään takaisinveto ja suutin liikkuu suoraan seuraavaan pisteeseen. On myös mahdollista välttää pyyhkäisy ylä- tai alapintakalvojen yli pyyhkäisemällä vain täytössä." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompensoi" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompensoi sisäseinämän limityksiä" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompensoi ulkoseinämän limityksiä" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompensoi seinämän limityksiä" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden seinämien osien kohdalla, joissa on jo olemassa seinämä." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden sisäseinämien osien kohdalla, joissa on jo olemassa seinämä." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompensoi tulostettaessa virtausta niiden ulkoseinämien osien kohdalla, joissa on jo olemassa seinämä." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Samankeskinen 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Yhdistä päät, joissa täyttökuvio kohtaa sisäseinämän käyttämällä linjoja, jotka seuraavat sisäseinämän muotoa. Tämän asetuksen ottaminen käyttöön voi saada täytön tarttumaan seinämiin paremmin ja vähentää täytön vaikutusta pystypintojen laatuun. Tämän asetuksen poistaminen käytöstä vähentää käytettävän materiaalin määrää." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Määritä, vaikuttavatko mallin ulkolinjan kulmat sauman sijaintiin. Ei mitään tarkoittaa, että kulmilla ei ole vaikutusta sauman sijaintiin. Piilota sauma -valinnalla sauman sijainti sisäkulmassa on todennäköisempää. Paljasta sauma -valinnalla sauman sijainti ulkokulmassa on todennäköisempää. Piilota tai paljasta sauma -valinnalla sauman sijainti sisä- tai ulkokulmassa on todennäköisempää." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Jäähdytysnopeus" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Tekee pienen solmun nousulinjan yläpäähän, jotta seuraava vaakasuora kerros pystyy paremmin liittymään siihen. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Kuution alajaon säde" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Viive laskuliikkeen jälkeen. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Viive nousuliikkeen jälkeen, jotta linja voi kovettua. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Viive kahden vaakasuoran segmentin välillä. Tämän viiveen käyttöönotto voi parantaa tarttuvuutta edellisiin kerroksiin liitoskohdissa, mutta liian suuret viiveet aiheuttavat riippumista. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Määrittää, mikä täyttöverkko on toisen täyttöverkon täytön sisällä. Korkeamman järjestyksen täyttöverkko muokkaa pienemmän järjestyksen täyttöverkkojen ja normaalien verkkojen täyttöä." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Kielletyt alueet" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Suuttimen ja vaakasuoraan laskevien linjojen välinen etäisyys. Suurempi väli aiheuttaa vähemmän jyrkän kulman diagonaalisesti laskeviin linjoihin, mikä puolestaan johtaa harvempiin yläliitoksiin seuraavan kerroksen kanssa. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Tulostettujen tukiliittymän linjojen välinen etäisyys. Tämä asetus lasketaan tukiliittymän tiheysarvosta, mutta sitä voidaan säätää erikseen." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään alaspäin kerroksen korkeuden kerrannaiseksi." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Puolella nopeudella pursotetun nousuliikkeen etäisyys.\n" -#~ "Se voi parantaa tarttuvuutta edellisiin kerroksiin kuumentamatta materiaalia liikaa kyseisissä kerroksissa. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Tukirakenteen etäisyys ulokkeesta X-/Y-suunnissa. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jonka materiaali putoaa ylöspäin menevän pursotuksen jälkeen. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jonka ylöspäin pursotettu materiaali laahautuu diagonaalisen laskevan pursotuksen mukana. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Kaksoispursotuksen limitys" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Ota tuki käyttöön" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Lopetus-GCode" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Yhdenmukaista tulostuslangan virtaus" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Kaikkialla" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Alimpien pintakalvojen laajennus täyttöalueelle" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Laajenna alemmat pintakalvot" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Laajenna pintakalvot täyttöalueelle" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Ylimpien pintakalvojen laajennus täyttöalueelle" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Laajenna ylemmät pintakalvot" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Laajenna alemmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Laajenna tasaisten pintojen ylä- ja/tai alapuolen pintakalvot. Oletuksena pintakalvot päättyvät täyttöalueen ympäröivien seinämälinjojen alla, mutta tämä voi aiheuttaa reikiä, kun täyttöalueen tiheys on alhainen. Tämä asetus laajentaa pintakalvot seinämälinjoja pidemmälle niin, että seuraavan kerroksen täyttöalue lepää pintakalvon päällä." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Laajenna alimmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Laajenna ylimmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Laajenna ylemmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Kokeellinen ominaisuus: tekee tukialueet pienemmiksi alaosassa verrattuna ulokkeeseen." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Tulostuslangan säilytysetäisyys" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Täytä seinämien väliset raot" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Täyttää raot seinämien välissä, kun seinämät eivät ole sopivia." - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Virtauksen kompensointi ylös tai alas mentäessä. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Virtauksen kompensointi tulostettaessa latteita linjoja. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Virtauksen kompensointi: Pursotetun materiaalin määrä kerrotaan tällä arvolla. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Materiaalin GUID. Tämä määritetään automaattisesti. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Korokkeen korkeus" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "GCode-komennot, jotka suoritetaan aivan lopussa – eroteltuina merkillä \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "GCode-komennot, jotka suoritetaan aivan alussa – eroteltuina merkillä \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "GCode-tyyppi" - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Yläpinnan läpikäynti yhden ylimääräisen kerran ilman materiaalin pursotusta. Tämän tarkoitus on sulattaa yläosan muovia enemmän, jolloin saadaan sileämpi pinta." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Sisältää lämmitettävän alustan" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Lämpenemisnopeus" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Lämpöalueen pituus" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Kappaleiden tekeminen ontoiksi" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ohita pienet Z-raot" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Aloita tulostus jokaisessa kerroksessa tulostamalla kappale, joka on lähellä samaa pistettä, jotta uutta kerrosta ei aloiteta tulostamalla kappaletta, johon edellinen kerros päättyi. Näin saadaan aikaan paremmat ulokkeet ja pienet osat, mutta tulostus kestää kauemmin." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Sisällytä alustan lämpötila" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Sisällytä materiaalilämpötilat" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Täyttöverkkojärjestys" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Alkukerroksen Z-siirtymä" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Sisäseinämien suulake" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "On keskikohdassa" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Solmu" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Laitteen syvyys" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Laiteen pään ja tuulettimen monikulmio" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Laiteen pään monikulmio" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Laitteen korkeus" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Laitteen leveys" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksimisyöttönopeus" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Virtauksen yhdenmukaistamisen maksiminopeus" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Z:n maksiminopeus" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Tulostuksen maksiminopeus, kun tulostusnopeutta säädetään virtauksen yhdenmukaistamista varten." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Verkon x-sijainti" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Verkon y-sijainti" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Verkon z-sijainti" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimiläpimitta" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Erityisellä tukitornilla tuettavan pienen alueen minimiläpimitta X- ja Y-suunnissa." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Ei pintakalvoa" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normaalisti Cura yrittää silmukoida umpeen pieniä reikiä verkosta ja poistaa kerroksesta osat, joissa on isoja reikiä. Tämän vaihtoehdon käyttöönotto pitää ne osat, joita ei voida silmukoida. Tätä tulisi pitää viimeisenä vaihtoehtona, kun millään muulla ei saada aikaan kunnollista GCodea." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Ei missään" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Suuttimen kulma" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Suuttimen pituus" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Suulakkeen siirtymä" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Käytä taskuja vain puolessa nelisuuntaisista risteyksistä risti 3D -kuviossa ja vuorottele taskujen sijainnit sellaisten korkeuksien välillä, joissa kuvio koskettaa itseään." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Optimoi seinämien tulostusjärjestys takaisinvetojen ja kuljetun etäisyyden vähentämiseksi. Useimmat osat hyötyvät tämän asetuksen käytöstä, mutta joissakin saattaa kestää kauemmin, joten vertaa tulostusajan arvioita optimointia käytettäessä ja ilman sitä." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Ulkoseinämät ennen sisäseinämiä" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Suuttimen ulkoläpimitta" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Prosenttiluku diagonaalisesti laskevasta linjasta, jota peittää vaakalinjan pätkä. Tämä voi estää nousulinjojen ylimmän kohdan riippumista. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Esitäyttötornin poistoainemäärä" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Esitäyttötornin paksuus" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Tulostetaan vain ulkopinta harvalla verkkorakenteella eli tulostetaan \"suoraan ilmaan\". Tämä toteutetaan tulostamalla mallin ääriviivat vaakasuoraan tietyin Z-välein, jotka yhdistetään ylöspäin menevillä linjoilla ja alaspäin menevillä diagonaalilinjoilla." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Tulostaa täytön silloin tällöin, niin että tulostuslanka kiertyy sattumanvaraisesti kappaleen sisälle. Tämä lyhentää tulostusaikaa, mutta toimintatapa on melko arvaamaton." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Normaaleja ohuempien linjojen tulostus nopeammin niin, että pursotetun materiaalin määrä sekunnissa pysyy samana. Mallin ohuet kappaleet saattavat edellyttää asetuksia pienemmällä linjan leveydellä tulostettuja linjoja. Tällä asetuksella hallitaan tällaisten linjojen nopeuden muutoksia." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Seinämät tulostetaan ulkoa sisäänpäin, kun tämä on käytössä. Asetuksella voidaan auttaa parantamaan X:n ja Y:n dimensiotarkkuutta ABS:n kaltaista korkeaviskoosista muovia käytettäessä. Se voi kuitenkin heikentää ulkopinnan tulostuslaatua etenkin ulokkeissa." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Pohjaristikon linjajako" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Poistaa kaikki täytöt, jotta kappaletta voidaan käyttää tukena." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (volymetrinen)" - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Takaisinveto" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. " - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Kuori" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Näytä laitteen variantit" - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Ohita jotkin siksakien yhdistämiset" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Ohita yksi jokaisesta N-yhdistämislinjasta, jotta tukirakenne on helpompi rikkoa." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Ohita jotkin siksakien yhdistämiset, jotta tukirakenne on helpompi rikkoa." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Vähennä Z-sauman näkyvyyttä tasoittamalla kierukoidut ääriviivat (Z-sauman pitäisi olla lähes näkymätön tulosteessa, mutta kerrosnäkymässä sen voi edelleen havaita). Ota huomioon, että tasoittaminen usein sumentaa pinnan pieniä yksityiskohtia." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagettivirtaus" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagettitäyttö" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Spagettitäytön ylimääräinen ainemäärä" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Spagettitäytön enimmäiskorkeus" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Spagettitäyttö vaiheittain" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagettiliitos" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Spagettitäytön enimmäiskulma" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla suutin liikkuu materiaalia pursottaessaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan linja diagonaalisesti alaspäin. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan linja ylöspäin \"suoraan ilmaan\". Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan ensimmäinen kerros, joka on ainoa alustaa koskettava kerros. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Nopeus, jolla tulostetaan mallin vaakasuorat ääriviivat. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Vanhemmissa versioissa tätä toimintoa kutsuttiin nimellä Joris." - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Aloitus-GCode" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Aloita kerrokset samalla osalla" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Strategia, jolla varmistetaan, että kaksi peräkkäistä kerrosta liittyy toisiinsa kussakin liitoskohdassa. Takaisinveto antaa nousulinjojen kovettua oikeaan asentoon, mutta voi aiheuttaa tulostuslangan hiertymistä. Solmu voidaan tehdä nousulinjan päähän, jolloin siihen liittyminen helpottuu ja linja jäähtyy, mutta se voi vaatia hitaampia tulostusnopeuksia. Toisena strategiana on kompensoida nousulinjan yläpään riippumista, mutta linjat eivät aina putoa ennustettavalla tavalla." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Tuen alaosan paksuus" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Tukiliittymän linjaetäisyys" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Nelitaho" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Kiihtyvyys, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla kiihtyvyyksillä voi parantaa ulokkeen laatua." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Limityksen määrä täytön ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti täyttöön." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä linjaleveyden prosenttina. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon. Tämä on pintakalvon linjojen ja sisimmän seinämän keskimääräisten linjaleveyksien prosenttiluku." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Takaisinvedon määrä: 0 tarkoittaa, että takaisinvetoa ei ole lainkaan. Tämän on yleensä oltava sama kuin lämpöalueen pituus." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jolla tehdään liitos katon ääriviivalta sisäänpäin. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Sisäpuolisen linjan päätyosan etäisyys ko. linjan laahautuessa mukana, kun mennään takaisin katon ulommalle ulkolinjalle. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Pintakalvojen laajennusetäisyys täyttöalueelle. Oletusetäisyys riittää kuromaan umpeen täyttölinjojen väliset raot, ja se estää reikien ilmestymisen pintakalvoon seinämän liitoskohdassa, kun täytön tiheys on alhainen." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Etäisyys, jonka \"suoraan ilmaan\" tulostetut vaakasuorat kattolinjat roikkuvat tulostettaessa. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Suulaketta siirretään ensimmäisen kerroksen normaalista korkeudesta tällä määrällä. Se voi olla positiivinen (nostettu) tai negatiivinen (laskettu). Jotkin tulostuslankatyypit tarttuvat alustaan paremmin, jos suulaketta nostetaan hieman." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "Tuen kattojen ja alaosien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Kahden vaakaosan välisen nousulinjan ja laskevan diagonaalilinjan korkeus. Tämä määrää verkkorakenteen kokonaistiheyden. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "Vaakasuora etäisyys helman ja tulosteen ensimmäisen kerroksen välillä.\n" -#~ "Tämä on minimietäisyys; useampia helmalinjoja käytettäessä ne ulottuvat tämän etäisyyden ulkopuolelle." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Tulosteen sisustan suurin mahdollinen kulma Z-akseliin nähden alueilla, jotka täytetään myöhemmin spagettitäytöllä. Tämän arvon alentaminen johtaa siihen, että useampia mallin vinottaisia osia täytetään jokaisessa kerroksessa." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Tukirakenteiden maksimietäisyys toisistaan X-/Y-suunnissa. Kun erilliset rakenteet ovat tätä arvoa lähempänä toisiaan, rakenteet sulautuvat toisiinsa." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Yhdistettävän ja yläpuolelta täytettävän sisätilan enimmäiskorkeus." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "Tuen kattojen ja alaosien tulostuksen nopeuden hetkellinen maksimimuutos." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Maksiminopeus, jolla alustaa liikutetaan. Jos tämä määritetään nollaan, tulostuksessa käytetään laiteohjelmiston oletusasetuksia Z:n maksiminopeudelle." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Siirtymä seinämistä, joista spagettitäyttö tulostetaan." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, oktetti-, neljänneskuutio- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio-, neljänneskuutio- ja oktettitäytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, nelitaho- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio- ja nelitaho-täytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "Nopeus, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Alkukerroksen nopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Tulostuksessa käytettävä lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Lämmitettävän alustan lämpötila ensimmäistä kerrosta tulostettaessa." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Lämmitettävän alustan lämpötila. Jos tämä on 0, pöytä ei lämpene tätä tulostusta varten." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "Lämmitettävän alustan lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Ulkoseinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "Tuen alaosien paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Luotavan GCoden tyyppi." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Tällä asetuksella säädetään, kuinka paljon pohjaristikon ulkolinjan sisäkulmia pyöristetään. Sisäpuoliset kulmat pyöristetään puoliympyräksi, jonka säde on yhtä suuri kuin tässä annettu arvo. Asetuksella myös poistetaan pohjaristikon ulkolinjan reiät, jotka ovat pienempiä kuin tällainen ympyrä." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "Katoksi tulevan aukon ulkoreunoihin käytetty aika. Pitemmät ajat varmistavat paremman liitoksen. Koskee vain rautalankamallin tulostusta." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Kappaleesi ylä- ja/tai alapinnan ylä- ja alapintakalvoja ei laajenneta, jos niiden kulma on suurempi kuin tämä asetus. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on lähes pystysuora rinne. 0 °:n kulma on vaakasuora ja 90 °:n kulma on pystysuora." - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Käytä suhteellista pursotusta absoluuttisen pursotuksen sijaan. Suhteellisten E-askelten käyttö helpottaa Gcoden jälkikäsittelyä. Kaikki tulostimet eivät kuitenkaan tue sitä, ja se saattaa aiheuttaa hyvin vähäisiä poikkeamia materiaalin määrässä absoluuttisiin E-askeliin verrattuna. Tästä asetuksesta riippumatta pursotustila on aina absoluuttinen, ennen kuin mitään Gcode-komentosarjaa tuotetaan." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Rautalankatulostuksen viive alhaalla" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Rautalankapohjan tulostusnopeus" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Rautalankatulostuksen liitosvirtaus" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Rautalankatulostuksen liitoskorkeus" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Rautalangan tulostusnopeus alaspäin" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Rautalankatulostuksen laahaus" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Rautalankatulostuksen hidas liike ylöspäin" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Rautalankatulostuksen pudotus" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Rautalankatulostuksen lattea viive" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Rautalangan lattea virtaus" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Rautalankatulostuksen virtaus" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Rautalangan tulostusnopeus vaakasuoraan" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Rautalankatulostuksen solmukoko" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Rautalankatulostuksen suutinväli" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Rautalankatulostuksen katon laahaus" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Rautalankatulostuksen katon pudotus" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Rautalankatulostuksen katon liitosetäisyys" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Rautalankatulostuksen katon ulompi viive" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Rautalankatulostuksen nopeus" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Rautalankatulostuksen laskulinjojen suoristus" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Rautalankatulostuksen strategia" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Rautalankatulostuksen viive ylhäällä" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Rautalangan tulostusnopeus ylöspäin" - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Odota alustan lämpenemistä" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Odota suuttimen lämpenemistä" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Tukiliittymän resoluutio" #~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Kun tarkistat mallia tuen päällä, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Kun tämä ei ole nolla, Z-siirtymä pienenee nollaan niin monen kerroksen matkalla. Kun arvo on 0, Z-siirtymä pysyy vakiona kaikille tulostuksen kerroksille." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Kun mallissa on pieniä pystyrakoja, ylä- ja alapuolen pintakalvon tekemiseen näihin kapeisiin paikkoihin voi kulua noin 5 % ylimääräistä laskenta-aikaa. Poista siinä tapauksessa tämä asetus käytöstä." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Spagettitäytön tulostus vaiheittain vai kaiken täyttötulostuslangan pursotus tulostuksen lopussa." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Yhden tukiliittymän linjan leveys." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Pyyhi suutin vaihdon jälkeen" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Rautalankatulostus" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z-siirtymän kapenevat kerrokset" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Siksakien yhdistämisten ohitusten määrä" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "category_fixes" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "kokeellinen!" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Kun tarkistat tuen päällä ja alla olevaa mallia, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..2529ed73e4 --- /dev/null +++ b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index f57b50bcf9..a8c8c77bc2 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Enregistrer le projet..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Enregistrer en tant que Projet Universel Cura..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Paramètres" @@ -198,15 +202,24 @@ msgstr "
  • Version OpenGL: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

    \n

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n " +msgstr "

    Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

    " +"

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Oups, un problème est survenu dans UltiMaker Cura.

    \n

    Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

    \n

    Les sauvegardes se trouvent dans le dossier de configuration.

    \n

    Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

    \n " +msgstr "

    Oups, un problème est survenu dans UltiMaker Cura.

    " +"

    Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

    " +"

    Les sauvegardes se trouvent dans le dossier de configuration.

    " +"

    Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

    \n

    {model_names}

    \n

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    \n

    Consultez le guide de qualité d'impression

    " +msgstr "

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

    " +"

    {model_names}

    " +"

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    " +"

    Consultez le guide de qualité d'impression

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +231,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante" msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Une pièce très dense et résistante, mais avec un temps d'impression plus lent. Idéal pour les pièces fonctionnelles." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée." @@ -390,6 +407,14 @@ msgctxt "@button" msgid "Agree" msgstr "Accepter" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tous les fichiers (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tous les types supportés ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Autoriser l'envoi de données anonymes" @@ -430,10 +455,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonyme" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Rapports de plantage anonymes" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Cadre d'application" +msgctxt "@title:column" +msgid "Applies on" +msgstr "S'applique sur" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" @@ -474,6 +507,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Voulez-vous vraiment supprimer l'objet {0}? Cette action est irréversible!" @@ -486,6 +523,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organiser tous les modèles sur une grille" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Organiser la sélection" + msgctxt "@label:button" msgid "Ask a question" msgstr "Posez une question" @@ -546,6 +587,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Sauvegardes" +msgctxt "@label" +msgid "Balanced" +msgstr "Équilibré" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -602,6 +647,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculer" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Navigation de la caméra :" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Rendu caméra:" @@ -634,6 +683,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Impossible d'écrire dans le fichier UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuler" + msgctxt "@button" msgid "Cancel" msgstr "Annuler" @@ -810,6 +863,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmer le changement de diamètre" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmer la suppression" + msgctxt "@action:button" msgid "Connect" msgstr "Connecter" @@ -864,7 +921,7 @@ msgstr "Copier dans le presse-papier" msgctxt "@action:menu" msgid "Copy value to all extruders" -msgstr "Copier la valeur vers tous les extrudeurs" +msgstr "Copier la valeur vers toutes les extrudeuses" msgctxt "@label" msgid "Cost per Meter" @@ -894,6 +951,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Impossible d'interpréter la réponse du serveur." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Impossible de charger le plugin GCodeWriter. Essayez de réactiver le plugin." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Impossible d'accéder à la Marketplace." @@ -906,6 +967,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossible d'enregistrer l'archive du matériau dans {} :" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossible d'enregistrer {0} : {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" @@ -916,15 +981,18 @@ msgstr "Impossible de transférer les données à l'imprimante." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}\nIl n'y a pas d'autorisation pour exécuter le processus." +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" +"Il n'y a pas d'autorisation pour exécuter le processus." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}\nLe système d'exploitation le bloque (antivirus ?)" +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" +"Le système d'exploitation le bloque (antivirus ?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}\nLa ressource est temporairement indisponible" +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" +"La ressource est temporairement indisponible" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1068,8 @@ msgstr "Cura a détecté des profils de matériau qui ne sont pas encore install msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\nCura est fier d'utiliser les projets open source suivants :" +msgstr "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker." +"Cura est fier d'utiliser les projets open source suivants :" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1159,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Défaut" -msgctxt "@label" -msgid "Default" -msgstr "Défaut" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : " @@ -1242,6 +1307,10 @@ msgctxt "@label" msgid "Draft" msgstr "Ébauche" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Déposer tous les modèles sur le plateau" + msgctxt "@action:button" msgid "Duplicate" msgstr "Dupliquer" @@ -1322,6 +1391,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Saisissez l'adresse IP de votre imprimante." +msgctxt "@info:title" +msgid "Error" +msgstr "Erreur" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Retraçage de l'erreur" @@ -1358,6 +1431,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exporter la sélection..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Exporter en tant que Projet Universel Cura" + msgctxt "@button" msgid "Export material archive" msgstr "Exporter l'archive des matériaux" @@ -1386,10 +1463,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Extrudeuse G-Code de fin" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Durée du G-code à la fin de l'extrudeuse" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Extrudeuse G-Code de démarrage" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Durée du G-code du début de l'extrudeuse" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Extrudeuse {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrudeuse(s) désactivée(s)" @@ -1450,6 +1539,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Échec de l'enregistrement de l'archive des matériaux" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Échec de l'écriture sur une imprimante cloud spécifique : {0} pas dans les groupes distants." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoris" @@ -1466,6 +1559,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Poids du filament" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Le fichier existe déjà" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fichier enregistré" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Le fichier {0} ne contient pas de profil valide." @@ -1574,6 +1675,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)" +msgid "FreeCAD trackpad" +msgstr "Pavé tactile de FreeCAD" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vue de face" @@ -1626,6 +1730,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Hauteur du portique" +msgctxt "@title:tab" +msgid "General" +msgstr "Général" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." @@ -1646,6 +1754,10 @@ msgctxt "@action" msgid "Get started" msgstr "Prise en main" +msgctxt "@label" +msgid "Global" +msgstr "Général" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Paramètres généraux" @@ -1694,6 +1806,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Masquer toutes les imprimantes connectées" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Masquer les paramètres" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Masquer ce paramètre" @@ -1766,6 +1882,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Pour pouvoir utiliser le package, vous devrez redémarrer Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "Inclure le nom du compte UltiMaker" + msgctxt "@label" msgid "Infill" msgstr "Remplissage" @@ -1978,6 +2098,10 @@ msgctxt "@action" msgid "Learn more" msgstr "En savoir plus" +msgctxt "@action:button" +msgid "Learn more" +msgstr "En savoir plus" + msgctxt "@button" msgid "Learn more" msgstr "En savoir plus" @@ -2106,6 +2230,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Fichier d'impression Makerbot" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter n'a pas pu sauvegarder dans le chemin désigné." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter ne prend pas en charge le mode texte." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gérer les matériaux..." @@ -2410,6 +2546,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Aucun résultat trouvé avec le filtre actuel" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Aucune valeur spécifique n'a été définie" + msgctxt "@label" msgid "No time estimation available" msgstr "Aucune estimation de la durée n'est disponible" @@ -2482,6 +2622,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Nombre d'extrudeuses" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Langue du SE" @@ -2506,6 +2650,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Oups ! Nous avons rencontré une erreur inattendue au cours de votre processus de découpage. Rassurez-vous, nous avons automatiquement reçu les journaux de plantage pour analyse, si vous n'avez pas désactivé le partage des données dans vos préférences. Pour nous aider davantage, envisagez de partager les détails de votre projet sur notre outil de suivi des problèmes." + msgctxt "@action:button" msgid "Open" msgstr "Ouvrir" @@ -2534,10 +2682,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Ouvrir un fichier de projet" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Ouverture du fichier Projet Universel Cura (UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Ouvrir un fichier Projet Universel Cura (UCP)" + msgctxt "@action:label" msgid "Open With" msgstr "Ouvrir avec" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Ouvrir en tant que UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Ouvrir comme projet" @@ -2635,7 +2795,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Coller depuis le presse-papiers" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Mettre en pause" @@ -2697,7 +2856,10 @@ msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Assurez-vous que votre imprimante est connectée:\n- Vérifiez si l'imprimante est sous tension.\n- Vérifiez si l'imprimante est connectée au réseau.\n- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." +msgstr "Assurez-vous que votre imprimante est connectée:" +"- Vérifiez si l'imprimante est sous tension." +"- Vérifiez si l'imprimante est connectée au réseau." +"- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2873,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Veuillez fournir un nom pour ce profil." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Veuillez fournir un nouveau nom." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Veuillez lire et accepter la licence du plugin." @@ -2721,7 +2887,10 @@ msgstr "Supprimez l'imprimante" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Veuillez vérifier les paramètres et si vos modèles:\n- S'intègrent dans le volume de fabrication\n- Sont affectés à un extrudeur activé\n- N sont pas tous définis comme des mailles de modificateur" +msgstr "Veuillez vérifier les paramètres et si vos modèles:" +"- S'intègrent dans le volume de fabrication" +"- Sont affectés à une extrudeuse activée" +"- N sont pas tous définis comme des mailles de modificateur" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2900,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Veuillez vous connecter à votre compte UltiMaker pour permettre l'envoi de données non anonymes." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Veuillez synchroniser les profils de matériaux avec vos imprimantes avant de commencer à imprimer." @@ -2809,12 +2982,20 @@ msgstr "Aperçu" msgctxt "@tooltip" msgid "Prime Tower" -msgstr "Tour primaire" +msgstr "Tour d'amorçage" msgctxt "@action:button" msgid "Print" msgstr "Imprimer" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimer après" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimer avant" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3116,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Les paramètres de l'imprimante seront mis à jour pour correspondre aux paramètres enregistrés pour le projet." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Imprimantes" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Imprimantes ajoutées à partir de Digital Factory:" @@ -3143,6 +3328,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Renommer" +msgctxt "@title:window" +msgid "Rename" +msgstr "Renommer" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Renommer le profil" @@ -3244,8 +3433,12 @@ msgid "Save Cura project" msgstr "Sauvegarder le projet Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Sauvegarder le projet Cura et imprimer le fichier" +msgid "Save Cura project and .makerbot print file" +msgstr "Sauvegarder le projet Cura et le fichier d'impression .makerbot" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Enregistrer le projet Cura et le fichier d'impression .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,6 +3464,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Enregistrer le nouveau profil" +msgctxt "@action:button" +msgid "Save project" +msgstr "Enregistrer le projet" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Enregistrez le fichier .umm sur une clé USB." @@ -3287,6 +3484,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Enregistré sur le lecteur amovible {0} sous {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Enregistrement" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Enregistrement sur le lecteur amovible {0}" @@ -3367,6 +3568,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Envoyer le rapport de d'incident à UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Envoyez des rapports de plantage avec votre nom de compte UltiMaker enregistré et le nom du projet à UltiMaker Sentry. Aucune donnée du modèle n'est envoyée." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Envoyez à UltiMaker des rapports de plantage ne contenant pas d'informations personnelles identifiables ni de données sur les modèles." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Envoyer les rapports de plantage du moteur" + msgctxt "@action:button" msgid "Send report" msgstr "Envoyer rapport" @@ -3385,7 +3598,7 @@ msgstr "Bibliothèque de communication série" msgctxt "@action:inmenu" msgid "Set as Active Extruder" -msgstr "Définir comme extrudeur actif" +msgstr "Définir comme extrudeuse active" msgctxt "@title:column" msgid "Setting" @@ -3411,6 +3624,14 @@ msgctxt "@label" msgid "Settings" msgstr "Paramètres" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Paramètres" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Paramètres chargés à partir du fichier UCP" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles:" @@ -3479,6 +3700,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Les plantages de tranchage devraient-ils être automatiquement signalés à Ultimaker ? Notez qu'aucun modèle, adresse IP ou autre information personnellement identifiable n'est envoyé ou stocké, sauf si vous en donnez l'autorisation explicite." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Les objets doivent-ils être supprimés du plateau de fabrication avant de charger un nouveau modèle dans l'instance unique de Cura ?" @@ -3535,6 +3760,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Afficher le rapport d'incident détaillé" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Afficher les paramètres" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet" @@ -3603,10 +3832,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Échec de la découpe" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Échec de la découpe avec une erreur inattendue. Signalez un bug sur notre outil de suivi des problèmes." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Découpe en cours..." @@ -3615,13 +3840,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Lissage" +msgctxt "@label" +msgid "Solid" +msgstr "Solide" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vue solide" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n\nCliquez pour rendre ces paramètres visibles." +msgstr "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée." +"Cliquez pour rendre ces paramètres visibles." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3867,8 @@ msgstr "Certaines valeurs de paramètres définies dans %1 ont été remp msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n\nCliquez pour ouvrir le gestionnaire de profils." +msgstr "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. " +"Cliquez pour ouvrir le gestionnaire de profils." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3894,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Parrainer Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Parrainer Cura" @@ -3721,13 +3950,29 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Paramètres suggérés pour les matériaux" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Paramètres de profil suggérés" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Résumé - Projet Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Résumé : Ouvrir Projet Universel Cura (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Résumé : Projet Universel Cura" + msgctxt "@label" msgid "Support" -msgstr "Assistance" +msgstr "Support" msgctxt "@tooltip" msgid "Support" @@ -3843,6 +4088,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "La sauvegarde dépasse la taille de fichier maximale." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Le profil équilibré est conçu pour trouver un équilibre entre la productivité, la qualité de surface, les propriétés mécaniques et la précision dimensionnelle." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "La hauteur de la base à partir du plateau en millimètres." @@ -3865,11 +4114,11 @@ msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante es msgctxt "@tooltip" msgid "The colour of the material in this extruder." -msgstr "Couleur du matériau dans cet extrudeur." +msgstr "Couleur du matériau dans cet extrudeuse." msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "La configuration de cet extrudeur n'est pas autorisée et interdit la découpe." +msgstr "La configuration de cet extrudeuse n'est pas autorisée et interdit la découpe." msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." @@ -3899,6 +4148,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Le chemin d'extrusion à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations." @@ -3939,7 +4192,7 @@ msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étran msgctxt "@tooltip" msgid "The material in this extruder." -msgstr "Matériau dans cet extrudeur." +msgstr "Matériau dans cet extrudeuse." msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." @@ -3955,11 +4208,14 @@ msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pa msgctxt "@tooltip" msgid "The nozzle inserted in this extruder." -msgstr "Buse insérée dans cet extrudeur." +msgstr "Buse insérée dans cet extrudeuse." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Motif de remplissage de la pièce :\n\nPour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair.\n\nPour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal.\n\nPour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." +msgstr "Motif de remplissage de la pièce :" +"Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair." +"Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal." +"Pour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4047,7 +4303,7 @@ msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez e msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." -msgstr "Aucun profil ne correspond à la configuration de cet extrudeur." +msgstr "Aucun profil ne correspond à la configuration de cet extrudeuse." msgctxt "@info:status" msgid "There is no active printer yet." @@ -4077,6 +4333,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Il s'agit d'un fichier de type Projet Universel Cura. Souhaitez-vous l'ouvrir en tant que Projet Universel Cura ou importer les modèles qu'il contient ?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?" @@ -4125,7 +4385,8 @@ msgstr "Ce projet comporte des contenus ou des plugins qui ne sont pas installé msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Ce paramètre possède une valeur qui est différente du profil.\n\nCliquez pour restaurer la valeur du profil." +msgstr "Ce paramètre possède une valeur qui est différente du profil." +"Cliquez pour restaurer la valeur du profil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4404,8 @@ msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modif msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n\nCliquez pour restaurer la valeur calculée." +msgstr "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie." +"Cliquez pour restaurer la valeur calculée." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4151,7 +4413,15 @@ msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influenc msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :" +msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeuse :" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation en Projet Universel Cura. Les utilisateurs sont invités à l'ajouter à leurs propres risques." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Ce paramètre peut ne pas fonctionner correctement lors de l'exportation en Projet Universel Cura. Les utilisateurs sont invités à l'ajouter à leurs propres risques." msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" @@ -4245,6 +4515,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Type" +msgctxt "@label" +msgid "Type" +msgstr "Type" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impression par USB" @@ -4299,7 +4573,8 @@ msgstr "L'exécutable du serveur EnginePlugin local est introuvable pour : {sel msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}\nL'accès est refusé." +msgstr "L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}" +"L'accès est refusé." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4319,7 +4594,7 @@ msgstr "Impossible de découper" msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." +msgstr "Impossible de découper car la tour d'amorçage ou la (les) position(s) d'amorçage ne sont pas valides." msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." @@ -4341,6 +4616,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Impossible d'écrire dans un fichier : {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Indisponible" @@ -4361,6 +4640,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unité" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Projet Universel Cura" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Les fichiers Projet Universel Cura peuvent être imprimés sur différentes imprimantes 3D tout en conservant les données de position et les paramètres sélectionnés. Lors de l'exportation, tous les modèles présents sur le plateau seront inclus avec leur position, leur orientation et leur échelle actuelles. Vous pouvez également sélectionner les paramètres par extrudeuse ou par modèle qui doivent être inclus pour garantir une impression correcte." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuration du système de fabrication universel" @@ -4477,6 +4764,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Bibliothèque d'utilitaires, y compris la génération d'un diagramme Voronoï" +msgctxt "@title:column" +msgid "Value" +msgstr "Valeur" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Afficher les imprimantes dans Digital Factory" @@ -4525,6 +4816,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Vous en voulez plus ?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Avertissement" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avertissement: le profil n'est pas visible car son type de qualité '{0}' n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." @@ -4549,6 +4844,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Quelle imprimante souhaitez-vous configurer?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Quel type de navigation par caméra faut-il utiliser ?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Quel type de rendu de la caméra doit-il être utilisé?" @@ -4627,7 +4926,8 @@ msgstr "Oui" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" +msgstr "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible." +"Voulez-vous vraiment continuer?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4649,7 +4949,9 @@ msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauve msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Vous avez personnalisé certains paramètres de profil.\nSouhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\nVous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." +msgstr "Vous avez personnalisé certains paramètres de profil." +"Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?" +"Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4983,8 @@ msgstr "Votre nouvelle imprimante apparaîtra automatiquement dans Cura" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Votre imprimante {printer_name} pourrait être connectée via le cloud.\n Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" +msgstr "Votre imprimante {printer_name} pourrait être connectée via le cloud." +" Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" msgctxt "@label" msgid "Z" @@ -4727,6 +5030,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "aujourd'hui" @@ -4747,491 +5054,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Échec de téléchargement des plugins {}" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit une assistance pour l’exportation de profils Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Générateur de profil Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." - -msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lecteur de profil Cura antérieur" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fournit la prise en charge de la lecture de fichiers X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lecteur X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permet l'écriture de fichiers UltiMaker Format Package." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Générateur UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Mise à niveau de 3.5 vers 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Mise à jour de 4.1 vers 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Mise à niveau de 4.7 vers 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Mise à niveau de 4.9 vers 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Mise à niveau de 3.2 vers 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Mise à niveau de version, de 2.7 vers 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Mise à niveau de la version 4.11 vers la version 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Mise à niveau de 2.6 vers 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Mise à niveau de 4.8 vers 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Mise à niveau de 4.3 vers 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Mise à niveau de 3.3 vers 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Mise à niveau de 4.4 vers 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Mise à niveau de 2.5 vers 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Mise à niveau vers 2.1 vers 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Mise à jour de 4.2 vers 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Mise à niveau de 5.2 vers 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Mise à niveau de 4.0 vers 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Mise à niveau de 2.2 vers 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Mise à niveau de 3.4 vers 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Mise à niveau de la version 4.13 vers la version 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Mise à niveau de la version 5.4 vers 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Mise à niveau de version, de 3.0 vers 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Mise à niveau de 4.6.0 vers 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Mise à niveau de 4.6.2 vers 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Mise à niveau de la version 5.3 vers 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" - -msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fournit l'aperçu des données du slice." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vue simulation" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fournit la prise en charge de l'importation de profils Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lecteur de profil Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fournit les paramètres par modèle." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Outil de paramètres par modèle" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fournit une étape de prévisualisation dans Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Étape de prévisualisation" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Effaceur de support" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permet le chargement et l'affichage de fichiers G-Code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lecteur G-Code" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sauvegardez et restaurez votre configuration." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin de périphérique de sortie sur disque amovible" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Actions de la machine UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permet la vue Rayon-X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vue Rayon-X" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gère les connexions réseau vers les imprimantes UltiMaker en réseau." +msgstr "Gère les connexions réseau aux imprimantes UltiMaker en réseau." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "Connexion réseau UltiMaker" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Action Paramètres de la machine" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lecteur de Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lecteur d'images" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Programme de mise à jour du firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Système CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fournit une étape de préparation dans Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Étape de préparation" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Vérifie les mises à jour du firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Vérificateur des mises à jour du firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Enregistre le G-Code dans un fichier." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Générateur de G-Code" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." - -msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lecteur 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impression par USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fournit la prise en charge de la lecture de fichiers AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lecteur AMF" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." @@ -5248,6 +5078,374 @@ msgctxt "name" msgid "Solid View" msgstr "Vue solide" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Lecteur 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Impression par USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Vérifie les mises à jour du firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Vérificateur des mises à jour du firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Action Paramètres de la machine" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Mise à niveau de 2.5 vers 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Mise à niveau de 4.7 vers 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Mise à niveau de 4.4 vers 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Mise à niveau de version, de 3.0 vers 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Mise à niveau de la version 4.11 vers la version 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Mise à jour de 4.1 vers 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Mise à niveau de 2.6 vers 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Mise à niveau de 4.6.0 vers 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Mise à niveau de 3.3 vers 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Mise à niveau de 4.8 vers 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Mise à niveau de 4.5 vers 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Mise à jour de 4.2 vers 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Mise à niveau de 3.2 vers 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Mise à niveau de 4.3 vers 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Met à jour les configurations de Cura 5.6 à Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Mise à jour de la version 5.6 à 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Mise à niveau vers 2.1 vers 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Mise à niveau de la version 5.3 vers 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Mise à niveau de 4.9 vers 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Mise à niveau de version, de 2.7 vers 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Mise à niveau de 3.5 vers 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Mise à niveau de 5.2 vers 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Mise à niveau de 4.0 vers 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Mise à niveau de la version 4.13 vers la version 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Mise à niveau de 3.4 vers 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Mise à niveau de 2.2 vers 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Mise à niveau de 4.6.2 vers 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Mise à niveau de la version 5.4 vers 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permet le chargement et l'affichage de fichiers G-Code." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lecteur G-Code" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." + +msgctxt "name" +msgid "Slice info" +msgstr "Information sur le découpage" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin de périphérique de sortie sur disque amovible" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Effaceur de support" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." + +msgctxt "name" +msgid "Model Checker" +msgstr "Contrôleur de modèle" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fournit une étape de préparation dans Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Étape de préparation" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fournit l'aperçu des données du slice." + +msgctxt "name" +msgid "Simulation View" +msgstr "Vue simulation" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fournit la prise en charge de la lecture de fichiers AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Lecteur AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permet la vue Rayon-X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vue Rayon-X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lecteur de profil Cura antérieur" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" + +msgctxt "name" +msgid "Post Processing" +msgstr "Post-traitement" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" @@ -5257,12 +5455,20 @@ msgid "Sentry Logger" msgstr "Journal d'événements dans Sentry" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fournit un support pour l'écriture de paquets de format MakerBot." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" +msgid "Makerbot Printfile Writer" +msgstr "Écrivain de fichier d'impression Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fournit la prise en charge de l'importation de profils Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lecteur de profil Cura" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5479,20 @@ msgid "UFP Reader" msgstr "Lecteur UFP" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Permet l'écriture de fichiers 3MF." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" +msgid "Image Reader" +msgstr "Lecteur d'images" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Système CuraEngine" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,89 +5502,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Générateur de G-Code compressé" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Actions de la machine UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fournit une étape de prévisualisation dans Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Étape de prévisualisation" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Fournit la prise en charge de l'exportation de profils Cura." -msgctxt "@info:title" -msgid "Error" -msgstr "Erreur" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Générateur de profil Cura" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuler" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fournit la prise en charge de la lecture de fichiers X3D." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Paramètres" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lecteur X3D" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." -msgctxt "@action:button" -msgid "Learn more" -msgstr "En savoir plus" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lecteur de Trimesh" -msgctxt "@title:tab" -msgid "General" -msgstr "Général" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fournit une étape de surveillance dans Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Étape de surveillance" -msgctxt "@label" -msgid "Type" -msgstr "Type" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fournit les paramètres par modèle." -msgctxt "@info:title" -msgid "Saving" -msgstr "Enregistrement" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Outil de paramètres par modèle" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Le fichier existe déjà" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tous les types supportés ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Profils matériels" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Impossible d'enregistrer {0} : {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Prise en charge de l'écriture des fichiers 3MF et UCP." -msgctxt "@action:button" -msgid "OK" -msgstr "OK" +msgctxt "name" +msgid "3MF Writer" +msgstr "Générateur 3MF" -msgctxt "@info:title" -msgid "Warning" -msgstr "Avertissement" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permet l'écriture de fichiers UltiMaker Format Package." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Imprimantes" +msgctxt "name" +msgid "UFP Writer" +msgstr "Générateur UFP" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fichier enregistré" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Enregistre le G-Code dans un fichier." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmer la suppression" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tous les fichiers (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Équilibré" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Le profil équilibré est conçu pour trouver un équilibre entre la productivité, la qualité de surface, les propriétés mécaniques et la précision dimensionnelle." +msgctxt "name" +msgid "G-code Writer" +msgstr "Générateur de G-Code" diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 2046139691..c4b5ae47cf 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Durée du G-Code de fin d'extrudeuse" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Temps nécessaire à l'exécution du G-Code de fin d'extrudeuse, lors de l'arrêt de cette extrudeuse." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extrudeuse Position de fin absolue" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extrudeuse Position de fin Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Durée du G-Code de démarrage de l'extrudeuse" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Le temps qu'il faut pour exécuter le g-code de démarrage, lorsque l'on passe à cette extrudeuse." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extrudeuse Position de départ absolue" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Extrudeuse Position de départ X" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Extrudeuse Position de départ Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Buse Décalage X" @@ -131,51 +196,3 @@ msgstr "Buse Décalage Y" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Les coordonnées Y du décalage de la buse." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." - -msgctxt "material label" -msgid "Material" -msgstr "Matériau" - -msgctxt "material description" -msgid "Material" -msgstr "Matériau" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 779d650d98..1dce5a0818 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Type de machine" @@ -34,7 +42,8 @@ msgstr "G-Code de démarrage" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Commandes G-Code à exécuter au tout début, séparées par \n." +msgstr "Commandes G-Code à exécuter au tout début, séparées par " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "G-Code de fin" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Commandes G-Code à exécuter tout à la fin, séparées par \n." +msgstr "Commandes G-Code à exécuter tout à la fin, séparées par " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "GUID du matériau. Cela est configuré automatiquement." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Type de matériau" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Le type de matériau utilisé." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marque du matériau" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marque du matériau utilisé." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Attendre le chauffage du plateau" @@ -306,11 +340,11 @@ msgstr "S'il faut utiliser les commandes de rétraction du firmware (G10 / G11 msgctxt "machine_extruders_share_heater label" msgid "Extruders Share Heater" -msgstr "Les extrudeurs partagent le chauffage" +msgstr "Les extrudeuses partagent le chauffage" msgctxt "machine_extruders_share_heater description" msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si les extrudeurs partagent un seul chauffage au lieu que chaque extrudeur ait son propre chauffage." +msgstr "Si les extrudeuses partagent un seul chauffage au lieu que chaque extrudeuse ait son propre chauffage." msgctxt "machine_extruders_share_nozzle label" msgid "Extruders Share Nozzle" @@ -350,7 +384,7 @@ msgstr "Polygone de la tête de la machine et du ventilateur" msgctxt "machine_head_with_fans_polygon description" msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de son premier extrudeur. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." +msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de sa premiere extrudeuse. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." msgctxt "gantry_height label" msgid "Gantry Height" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Décalage avec extrudeuse" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Position d'amorçage absolue de l'extrudeuse" @@ -830,7 +888,7 @@ msgstr "Largeur minimale de la ligne de paroi uniforme" msgctxt "min_even_wall_line_width description" msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Largeur de ligne minimale pour les murs polygonaux normaux. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." +msgstr "Largeur de ligne minimale pour les parois polygonales normales. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" @@ -1558,7 +1616,8 @@ msgstr "Nombre de parois de remplissage supplémentaire" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire.\nConfigurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." +msgstr "Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire." +"Configurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Température d’impression par défaut" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Température d’impression couche initiale" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." +msgid "The temperature used for printing the first layer." +msgstr "La température utilisée pour l'impression de la première couche." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Débit de la paroi externe de la surface supérieure" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Débit des parois internes de la surface supérieure" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Débit du dessus/dessous" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Vitesse d'impression des parois internes de la surface supérieure" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Vitesse de la couche extérieure de la surface supérieure" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accélération de la paroi externe de la surface supérieure" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accélération des parois internes de la surface supérieure" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Accélération de couche extérieure de surface supérieure" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Saccade de la paroi externe de la surface supérieure" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Saccade des parois internes de la surface supérieure" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Saccade de couches extérieures de la surface supérieure" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Distance Z des supports" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre supérieur jusqu'à atteindre un multiple de la hauteur de la couche." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distance entre le haut/bas de la structure de support et l'impression. Cet écart permet de retirer les supports après l'impression du modèle. La couche de support la plus haute sous le modèle pourrait être une fraction des couches régulières." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Distance inférieure des supports" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distance entre l’impression et le bas des supports." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distance de l'impression au bas du support. Notez que cela est arrondi à la hauteur de couche suivante." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Résolution de l'interface du support" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Densité de l'interface de support" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "Activer la goutte de préparation" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Type d'adhérence du plateau" @@ -3766,35 +3913,35 @@ msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe/la bordur msgctxt "skirt_brim_extruder_nr label" msgid "Skirt/Brim Extruder" -msgstr "Extrudeur de la jupe/bordure" +msgstr "Extrudeuse de la jupe/bordure" msgctxt "skirt_brim_extruder_nr description" msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" -msgstr "Extrudeur de la base du raft" +msgstr "Extrudeuse de la base du raft" msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" -msgstr "Extrudeur du milieu du radeau" +msgstr "Extrudeuse du milieu du radeau" msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" -msgstr "Extrudeur du haut du radeau" +msgstr "Extrudeuse du haut du radeau" msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." msgctxt "skirt_line_count label" msgid "Skirt Line Count" @@ -3818,7 +3965,8 @@ msgstr "Distance de la jupe" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distance horizontale entre la jupe et la première couche de l’impression.\nIl s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." +msgstr "La distance horizontale entre la jupe et la première couche de l’impression." +"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Bordure uniquement sur l'extérieur" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Emplacement de la bordure" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprimez unr bordure à l'extérieur du modèle, à l'intérieur, ou les deux. En fonction du modèle, cette option permet de réduire la quantité de bordure que vous devez retirer par la suite, tout en garantissant une bonne adhérence au plateau." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "À l'extérieur seulement" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "À l'intérieur seulement" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Partout" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Marge d'évitement de la bordure intérieure" +msgid "Brim Avoid Margin" +msgstr "Marge d'évitement de la bordure" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Une bordure autour d'un modèle peut toucher un autre modèle à un endroit où vous ne le souhaitez pas. Cette fonction supprime toutes les bordures à cette distance des modèles sans bordure." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Marge supplémentaire de la base du radeau" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la base du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Marge supplémentaire du milieu du radeau" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si le milieu du radeau est activé, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Marge supplémentaire de la partie supérieure du radeau" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la partie supérieure du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui se voit également attribuer un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Supprimer les coins intérieurs du radeau" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Enlever les coins intérieurs de la base du radeau" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la base du radeau, ce qui donnera au radeau une forme convexe." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Enlever les coins intérieurs du milieu du radeau" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la partie centrale du radeau, ce qui donnera une forme convexe au radeau." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Enlever les coins intérieurs de la partie supérieure du radeau" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la partie supérieure du radeau, ce qui donnera une forme convexe au radeau." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Lissage de radeau" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Lissage de la base du radeau" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour de la base du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Lissage du milieu du radeau" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour central du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Lissage de la partie supérieure du radeau" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Lame d'air du radeau" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Chevauchement Z de la couche initiale" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Faites en sorte que la première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser la perte de filament dans l'entrefer. Tous les modèles situés au-dessus de la première couche du modèle seront décalés vers le bas de cette valeur.\nOn peut noter que la deuxième couche est parfois imprimée en dessous de la couche initiale à cause de ce paramètre. Il s'agit d'un comportement voulu." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Couches supérieures du radeau" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Épaisseur de la base du radeau" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Épaisseur de la couche supérieure du radeau" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largeur de la ligne de base du radeau" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Épaisseur des couches supérieures du radeau." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largeur de la ligne supérieure du radeau" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacement des lignes de base du radeau" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Interligne supérieur du radeau" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Épaisseur de la base du radeau" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Couches supérieures du radeau" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largeur de la ligne de base du radeau" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Épaisseur de la couche supérieure du radeau" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Épaisseur des couches supérieures du radeau." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacement des lignes de base du radeau" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largeur de la ligne supérieure du radeau" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Interligne supérieur du radeau" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordre monotone de la surface supérieure du radeau" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprimez les lignes de la surface supérieure du radeau dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cette méthode prend un peu plus de temps à imprimer, mais donne à la surface un aspect plus homogène, ce qui est également visible sur la surface inférieure du modèle." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Nombre de parois du radeau" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Nombre de contours à imprimer autour du motif linéaire du radeau." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Nombre de parois à la base du radeau" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Nombre de parois du milieu du radeau" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches intermédiaires du radeau." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Nombre de parois supérieures du radeau" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches supérieures du radeau." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "La vitesse à laquelle le radeau est imprimé." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Vitesse d’impression du dessus du radeau" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Vitesse d’impression de la base du radeau" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Vitesse d’impression de la base du radeau" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Vitesse d’impression du dessus du radeau" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "L'accélération selon laquelle le radeau est imprimé." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accélération de l'impression du dessus du radeau" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accélération de l'impression de la base du radeau" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accélération de l'impression de la base du radeau" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accélération de l'impression du dessus du radeau" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "La saccade selon laquelle le radeau est imprimé." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Saccade d’impression du dessus du radeau" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Saccade d’impression de la base du radeau" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Saccade d’impression de la base du radeau" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Saccade d’impression du dessus du radeau" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "La vitesse du ventilateur pour le radeau." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Vitesse du ventilateur pour le dessus du radeau" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Vitesse du ventilateur pour la base du radeau" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "La vitesse du ventilateur pour la couche de base du radeau." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Vitesse du ventilateur pour la base du radeau" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Vitesse du ventilateur pour le dessus du radeau" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "La vitesse du ventilateur pour la couche de base du radeau." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Type de tour d'amorçage" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Comment générer la tour d'amorçage :
    • Normale : créer un pot dans lequel les matériaux secondaires sont amorcés
    • Entrelacée : créez une tour d'amorçage aussi peu dense que possible. Vous économiserez ainsi du temps et du filament, mais cette opération n'est possible que si les matériaux utilisés adhèrent les uns aux autres
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normale" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Entrelacée" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Taille de la tour d'amorçage" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distance maximale de porte-à-faux de la tour d'amorçage" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Longueur maximale des branches pouvant être imprimées dans le vide." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Position X de la tour d'amorçage" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Après l'impression de la tour d'amorçage à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour d'amorçage." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Bordure de la tour d'amorçage" +msgid "Prime Tower Base" +msgstr "Base de la tour d'amorçage" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Taille de la base de la tour d'amorçage" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La largeur du bord/de la base de la tour d'amorçage. Une base plus large améliore l'adhésion au plateau, mais réduit également la zone d'impression effective." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Hauteur de la base de la tour d'amorçage" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Augmenter cette valeur rendra la tour d'amorçage plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour d'amorçage n'aura pas une base solide." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pente de la base de la tour d'amorçage" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour d'amorçage. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espacement des lignes de radeau de la tour d'amorçage" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour d'amorçage. Un espacement large permet un retrait facile du radeau du plateau" msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4410,7 +4746,7 @@ msgstr "Séquence d'impression" msgctxt "print_sequence description" msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Imprime tous les modèles en même temps, couche par couche, ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si a) un seul extrudeur est activé et si b) tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y." +msgstr "Imprime tous les modèles en même temps, couche par couche, ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si a) une seule extrudeuse est activée et si b) tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y." msgctxt "print_sequence option all_at_once" msgid "All at Once" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Un à la fois" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Définir la séquence d'impression manuellement" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Permet d'ordonner la liste d'objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Maille de remplissage" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Alternez les directions des parois, une couche et un insert sur deux. Utile pour les matériaux qui peuvent accumuler des contraintes, comme pour l'impression de métal." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Supprimer les coins intérieurs du radeau" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Regrouper les parois extérieures" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Nombre de parois à la base du radeau" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Rapport sur le processus d'impression" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Rapport sur les événements qui dépassent les seuils fixés" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Activer le rapport sur le processus d'impression" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Activez le rapport sur le processus d'impression pour définir des valeurs seuils en vue d'une éventuelle détection d'erreur." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Avertissement de débit" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite de l'avertissement de débit pour la détection." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de débit" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite de l'anomalie de débit pour la détection." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Avertissement de température d'impression" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite de l'avertissement de température d'impression pour la détection." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite de la température d'impression" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite de l'anomalie de la température d'impression pour la détection." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Avertissement de la température du volume de construction" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite de l'avertissement de la température du volume de construction pour la détection." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite de la température du volume de construction" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Anomalie de détection de la limite de température du volume de construction." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,190 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Débit progressif activé" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accélération maximale du débit progressif" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accélération maximale des changements de débit progressifs" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accélération maximale du débit de la couche initiale" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Taille du pas de discrétisation du débit progressif" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durée de chaque étape du changement progressif de débit" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Réinitialiser la durée du débit" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." - -msgctxt "material description" -msgid "Material" -msgstr "Matériau" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "material label" -msgid "Material" -msgstr "Matériau" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Regrouper les parois extérieures" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Débit de la paroi externe de la surface supérieure" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Débit des parois internes de la surface supérieure" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Vitesse d'impression des parois internes de la surface supérieure" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accélération de la paroi externe de la surface supérieure" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accélération des parois internes de la surface supérieure" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Saccade de la paroi externe de la surface supérieure" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Saccade des parois internes de la surface supérieure" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..47ee220041 --- /dev/null +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Débit progressif activé" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Activer les variations de débit progressives. Lorsque cette option est activée, le débit est augmenté ou réduit progressivement jusqu'au débit souhaité. Cette option est utile pour les imprimantes avec un tube bowden où le débit n'est pas modifié immédiatement lorsque le moteur de l'extrudeur démarre ou s'arrête." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accélération progressive jusqu'au débit max" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accélération maximale pour les variations de débit progressives" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accélération maximale du débit lors de la première couche" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Vitesse minimale pour les variations de débit progressives pour la première couche" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Taille de pas de la discrétisation du débit progressif" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durée de chaque pas dans la variation progressive du débit" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Réinitialiser la durée du débit" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pour tout déplacement supérieur à cette valeur, le débit de matière est réinitialisé au débit souhaité pour les trajectoires" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot new file mode 100644 index 0000000000..7d9afba68f --- /dev/null +++ b/resources/i18n/gradual_flow_settings.def.json.pot @@ -0,0 +1,58 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + + + + + + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 6794644e48..c3b1de85aa 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Beállítások" @@ -264,6 +268,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött." @@ -498,10 +506,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Névtelen" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Alkalmazás keretrendszer" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -560,6 +576,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Kijelöltek rendezése" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -624,6 +644,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Biztonsági mentések" +msgctxt "@label" +msgid "Balanced" +msgstr "Kiegyensúlyozott" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Alap (mm)" @@ -680,6 +704,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Számított" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "" @@ -1008,6 +1036,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1250,10 +1282,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "" -msgctxt "@label" -msgid "Default" -msgstr "" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: " @@ -1402,6 +1430,10 @@ msgctxt "@label" msgid "Draft" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Másolat" @@ -1528,6 +1560,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Kiválasztás exportálása..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1561,10 +1597,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Extruder G-kód zárás" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Extruder G-kód kezdés" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(ek) kikapcsolva" @@ -1631,6 +1680,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Kedvencek" @@ -1772,6 +1826,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Előlnézet" @@ -1860,6 +1917,10 @@ msgctxt "@action" msgid "Get started" msgstr "Kezdjük el" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Általános beállítások" @@ -1909,6 +1970,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Beállítás elrejtése" @@ -1985,6 +2050,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Kitöltés" @@ -2341,6 +2410,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Anyagok kezelése..." @@ -2672,6 +2757,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Nincs időbecslés" @@ -2773,6 +2862,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Megnyitás" @@ -2801,10 +2894,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Projekt fájl megnyitása" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Megnyitás projektként" @@ -3017,6 +3122,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -3113,6 +3222,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Nyomtatás" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Nyomtatás után" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Nyomtatás előtt" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3419,8 +3536,12 @@ msgid "Provides support for reading model files." msgstr "Támogatást nyújt a modellfájlok olvasásához." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok írásához." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3660,7 +3781,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3687,6 +3812,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3790,6 +3919,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Hibajelentés küldése az UltiMaker -nek" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Jelentés küldés" @@ -3842,6 +3983,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Beállítások" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:" @@ -3910,6 +4055,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3966,6 +4115,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Hibajelentés részletei" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Összegzés megjelenítése projekt mentésekor" @@ -4042,10 +4195,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Szeletelés..." @@ -4054,6 +4203,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Simítás" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Felület nézet" @@ -4179,10 +4332,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Összegzés - Cura Project" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Támasz" @@ -4305,6 +4474,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Az alap magassága a tárgyasztaltól mm -ben." @@ -4551,6 +4724,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?" @@ -4640,6 +4817,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4869,6 +5054,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Elérhetetlen" @@ -4889,6 +5079,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5078,6 +5276,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Egyedi firmware feltöltése" @@ -5110,6 +5312,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "A 2.1-es verzió frissítése 2.2-re" @@ -5214,6 +5420,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5291,6 +5501,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Milyen fípusú fényképezőgépet használunk?" @@ -5496,6 +5710,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "ma" @@ -5517,18 +5735,6 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "@label" -msgid "Balanced" -msgstr "Kiegyensúlyozott" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Kijelöltek rendezése" - #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről." @@ -5537,6 +5743,10 @@ msgstr "Az egyensúlyozott profil a termelékenység, felületminőség, mechani #~ msgid "Error writing 3mf file." #~ msgstr "Hiba a 3mf fájl írásakor." +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Támogatást nyújt a 3MF fájlok írásához." + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Szimuláció nézet" diff --git a/resources/i18n/hu_HU/fdmextruder.def.json.po b/resources/i18n/hu_HU/fdmextruder.def.json.po index 25dcd91837..c6ed075997 100644 --- a/resources/i18n/hu_HU/fdmextruder.def.json.po +++ b/resources/i18n/hu_HU/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2020-03-24 09:27+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Záró G-Code az extruderhez" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extruder abszolút vég pozíció" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Kezdő G-Code az extruderhez" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extruder Abszolút Indulási Helyzet" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Az extruderekhez társított nyomtatási hűtőventilátor száma.Csak akkor változtassa meg ezt az alapértelmezett 0-tól, ha minden extruder számára külön nyomtatási hűtőventilátor van." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "A befejező X koordináta, mikor az extruder kikapcsol." diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 2ac4798de4..8fb0801e5d 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -17,6 +17,14 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "A modell szélétől tartandó távolság. Ha a vasalás kifutna a test külső éleihez, az egyenetlenséget okozhatna ott." @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "A sokszögek listája azon területekkel, ahová a nyomtatófej nem léphet be." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Az összes beállítás, ami befolyásolja a nyomtatvány felbontását és minőségét. Ezekek a beállítások hatással vannak a minőségre és a nyomtatási sebességre." +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternatív extra fal" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Perem" -msgctxt "brim_gap label" -msgid "Brim Distance" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" msgstr "" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgctxt "brim_gap label" +msgid "Brim Distance" msgstr "" msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Perem vonalszám" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Perem csak kívül" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,18 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Építési tér hőmérséklete" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Tárgy középpontba" @@ -746,16 +766,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "A támaszok belső szerkezetében lévő vonalak távolsága.Ez egy számított érték a támasz sűrűségből." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "A támasz teteje és a fölé épített nyomtatvány közötti távolság." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -869,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Tárgyhűtés engedélyezés" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Visszahúzás engedélyezés" @@ -901,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Engedélyezi a szivárgáspajzsot. Ez létrehoz egy héjat a modell körül, úgy, hogy az nem ér a modellhez, azonban a fej visszaálláskor, az esetlegesen fúvókából kicsöppenő anyagmaradványokat 'letörli' ebben a héjban." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -933,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Kényszerítő Perem nyomtatás a tárgy körül, még azokon a helyeken is, ahol egyébként támaszt kellene nyomtatni. Ezeken a helyeken a támasz első rétege helyett a perem lesz nyomtatva." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Mindenhol" @@ -1037,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "" @@ -1049,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Adagolás hőmérséklet diagram" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Az első réteg áramlási kompenzációja: az eredeti rétegre extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." @@ -1097,6 +1137,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Áramláskompenzálás a külső falvonalak nyomtatásánál." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Áramlási kompenzáció a felső felület legkülső falvonalán." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Áramlás kompenzáció a felső felület falvonalain az összes falvonal kivételével a legkülsőn." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Áramláskompenzálás az alsó/felső rétegek nyomtatásánál." @@ -1285,6 +1333,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Külső falak csoportosítása" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" @@ -1429,10 +1481,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Ha az extra margót engedélyezzük, akkor a modell alá nyomtatott tutajt ki vogja egészíteni, és bővíteni kifelé irányban. Ez egy erősebb tutajt fog létrehozni, viszont több alapanyagot igényel, és csökkenti a használható nyomtatási területet." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Figyelmen kívül hagyja a hálóban lévő, átfedő térfogatokból származó belső geometriai alakzatokat, és a szintet egyben nyomtatja ki. Ez a nem kívánt belső üregek eltűnését eredményezheti." @@ -1661,6 +1725,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Eltolás a külső fal útvonalára. Ha a külső fal kisebb, mint a fúvóka, és a belső falak után nyomtatódik, akkor ezt az eltolást használjuk, hogy a fúvóka furata a belső falakon nyúljon túl, a modell külseje helyett." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1673,6 +1741,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1813,6 +1885,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Korlátozza ennek a hálónak a térfogatát más hálókon belül. Ezt fel tudjuk használni egy háló nyomtatásának bizonyos területeire, különböző beállításokkal, vagy akát teljesen eltérő extruderrel." @@ -1910,8 +2006,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "A nyomtatófej kezdeti pozíciója legyen abszolút, és ne a fej utolsó ismert helyzetéhez viszonyítson." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "A modell első és második rétege között átfedést hoz létre Z irányban.Ez képes kompenzálni azt a hibát, ami az első rétegben keletkezett. Ezt a hibát az okozza, hogy a tutaj légrésben az első réteg benyúlik, így nem alakul ki a tökéletes első réteg.Az első réteg feletti összes rész magasságát érinti ez a beállítás." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1937,10 +2035,18 @@ msgctxt "material label" msgid "Material" msgstr "Alapanyag" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "Alapanyag GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Anyagmennyiség törlések között" @@ -2217,6 +2323,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "" @@ -2257,6 +2367,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normál" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "" @@ -2389,10 +2503,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "A vasalást csak a legfelső rétegen végzi el. Ha az alacsonyabb szinteken lévőfelső felületeken nem szükséges a sima felület, akkor ezzel időt takaríthatunk meg." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Csak a modell külső falaihoz nyomtat Peremet. Ez csökkenti a perem nyomtatási költségét, és nem szükséges a belső részeken eltávolítani majd azt, továbbá a test letapadását nem csökkenti jelentősen." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Szivárgáspajzs szöge" @@ -2449,6 +2559,14 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Külső fal tisztítási távolság" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Az azonos rétegben lévő különböző szigetek külső falait sorban nyomtatják. Amikor engedélyezve van, korlátozódik az áramlás változásainak mértéke, mert a falak típusonként nyomtathatók ki. Amikor letiltva van, az utazások számát a szigetek között csökkenti, mert ugyanazon szigeteken lévő falak csoportosítva vannak." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2502,8 +2620,20 @@ msgid "Prime Tower Acceleration" msgstr "Előtorony gyorsulás" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Előtorony perem" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2517,10 +2647,18 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Előtorony vonalszélesség" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Előtorony minimális térfogat" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Előtorony mérete" @@ -2529,6 +2667,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Előtorony sebesség" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Előtorony X helyzet" @@ -2537,10 +2679,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Előtorony Y helyzet" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Nyomtatási gyorsulás" @@ -2549,6 +2687,10 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Nyomtatás löket" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Nyomtatási sorrend" @@ -2561,6 +2703,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Vékony falak nyomtatása" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Nyomtasson egy tornyot a nyomtatandó tárgy mellett, amely abban segít, hogy a fejben lévő anyagváltást végre tudja hajtani. Kinyomtatja az előtoronyba a fejben marad előző alapanyag maradványokat, így már kitisztult fúvókával tudja a nyomtatást folytatni a nyomtatandó testen." @@ -2581,6 +2727,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Nyomtassa a modell egyes részeit vékonyabbra a vízszintes síkon, mint a fúvóka mérete." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Ha használunk második hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." @@ -2589,6 +2739,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Ha használunk harmadik hídréteget, akkor az ezzel a sebességgel fog nyomtatódni." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Az adott rétegnél a kitöltést nyomtatjuk a falak nyomtatása előtt.A falak előzetes nyomtatása pontosabb falakat eredményezhet, azonban az átfedések nyomtatása gyengébb lehet. A kitöltés elsőnek nyomtatása szilárdabb falakhoz vezethet, de a feltöltési minta néha megjelenhet a felületen." @@ -2633,6 +2791,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Tutaj légrés" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2661,6 +2823,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Tutajalap nyomtatási sebessége" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Tutajalap vastagsága" @@ -2677,6 +2843,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Tutaj hűtés" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2705,6 +2875,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Tutajközép nyomtatási sebesség" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Tutaj középső távolsága" @@ -2713,6 +2887,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Tutaj közép vastagsága" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Tutaj gyorsulás" @@ -2729,6 +2907,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Tutaj simítás" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2761,10 +2943,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Tutajfedél nyomtatási sebesség" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Tutaj felső távolsága" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Véletlenszerű" @@ -2817,10 +3011,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Keresztezések eltávolítása" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Azon területek eltávolítása, ahol a hálók keresztezik egymást. Ezt általában ott kell használni, ahol kettős objektumok átfedésben vannak egymással." @@ -2829,6 +3035,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Távolítsa el az üres rétegeket amik az első nyomtatott réteg alatt, ha vannak. Ennek a beállításnak a letiltása esetén az első rétegek üresek lehetnek, ha a Szelet-tolerancia beállítást Kizárólagos vagy Közepes értékre állítják." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2849,6 +3067,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Lecseréli az alsó/felső felületi minta legkülsőbb falait koncentrikus vonalra.Egy vagy két vonal használata javítja a felső záró felületeket, ott, ahol még a kitöltés látható." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2921,6 +3143,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Sarok varrat preferálás" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Nyomtatási sorrend kézi beállítása" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Beállítja a huzatpajzs magasságát. Kiválasztható, hogy a modell teljes magasságában, vagy egy részleges magasságig épüljön a pajzs." @@ -3321,10 +3547,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Interfész felosztás" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Támasz interfész sebesség" @@ -3609,6 +3831,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "A tutajfedél nyomtatásához kapcsolódó gyorsulási érték." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Az a gyorsulás, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Az a gyorsulás, amellyel a felső felület legkülső falai kinyomtatnak." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "A falak nyomtatása alatt használt gyorsulás." @@ -3669,6 +3899,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Az egyes vonalszakaszokon létrehozott rücskök közötti átlagos távolság. Mivel az eredeti pontok eldobásra kerülnek, a sok rücsök a felbontás csökkenését fogja eredményezni. Ennek az értéknek meg kell haladnia a rücskös falvastagság felét." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "A nyomtatófej mozgásának alapértelmezett gyorsulása." @@ -3749,6 +3983,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "A tutajvonalak közötti távolság a felső tutajrétegeknél. A távolságnak meg kell egyeznie a vonalszélességgel, hogy a felület tömör legyen." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3945,6 +4183,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "A kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "A támasz lépcsőinek magassága azona a részen, ahol a modellen támaszkodik.Ha az érték alacsony, a támasz eltávolítása nehéz lehet, viszont a túl magas érték instabillá teheti a támaszt. Ha az érték 0, akkor kikapcsolja a lépcsőt." @@ -4017,6 +4259,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "A visszahúzott anyag hossza visszahúzáskor." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "A gépre szerelt tárgyasztal anyaga." @@ -4109,6 +4355,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok nyomtatása alatt." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület legkülső falai kinyomtatnak." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület belső falai kinyomtatnak." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a falak nyomtatása alatt." @@ -4125,6 +4379,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "A maximális pillanatnyi sebességváltozás változtatása a fej utazási mozgása alatt." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Az X motor maximális sebessége." @@ -4237,6 +4495,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" @@ -4493,6 +4763,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "A tutaj felső rétegeinek nyomtatási sebessége. Ezeket kissé lassabban kell nyomtatni, hogy a fúvóka lassan kiegyenlítse a szomszédos felszíni vonalakat." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Az a sebesség, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Az a sebesség, amellyel a felső felület legkülső falai kinyomtatnak." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "A Z tengely emelési sebessége. Ez általában alaxcsonyabb, mint a nyomtatási sebesség, mivel a tárgyasztal, vagy az X keresztszánt nehezebb mozgatni." @@ -4554,8 +4832,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Az a hőmérséklet, ahová a fejnek vissza kell hűlnie a nyomtatás befejezése előtt." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4617,6 +4895,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "A létrehozandó g-kód típusa." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "A csöppenés mértéke. Ennek az értéknek általában közel kell lennie a fúvóka átmérőjéhez." @@ -4633,6 +4915,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Az előtorony szélessége." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Az előtorony szélessége." @@ -4661,10 +4947,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Ez határozza meg, hogy a fejnek a szélekhez képest mennyi a távolsága a hídfal megkezdése előtt. A híd nyomtatásának megkezdése előtt az olvadókamra nyomást csökkentheti, ami így vízszintesebb hídhoz vezethez." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Ez a beállítás azt szabályozza, hogy tutajnak hány belső sarka legyen lekerekítve. A belső sarkokat félkörre kerekíti le, aminek sugara az itt megadott érték. Ez a beállítás eltávolítja a tutaj körvonalában lévő olyan lyukakat is, amik kisebbek, mint egy ilyen kör." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Ez a beállítás korlátozza a minimális extrudálási távolság ablakon belüli visszahúzódások számát. Az ablakon belüli további visszahúzódásokat figyelmen kívül hagyjuk. Ezzel elkerülhető, hogy ugyanazon a szálpozicióban többször visszahúzódjon, mivel ez a nyomtatószálat ellapíthatja, eldarálhatja az extruder adagolókeréknél és ez elakadási problémákat okozhat." @@ -4701,6 +4999,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Felső kéreg eltávolítási szélesség" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "A felső felület belső falának gyorsulása" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "A felső felület legkülső falának hirtelen gyorsulása" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "A felső felület belső falának sebessége" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "A felső felület belső falainak áramlása" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "A felső felület külső falának gyorsulása" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "A felső felület legkülső falának áramlása" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "A felső felület belső falának hirtelen gyorsulása" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "A felső felület legkülső falának sebessége" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Felső felületi gyorsulás" @@ -4993,10 +5323,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Amikor a szeletelő ellenőrzi, hogy hol tart a támasz a modell alatt vagy fölött, szükség esetén a megadott magasságú lépéseket teszi meg. Az alacsonyabb értékek lassabb szeleteést okoznak, míg a magasabb érték a normál támasz kinyomtatását eredményezhetik olyan helyeken, ahol támasz interfészt kellene nyomtatni." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5389,731 +5715,26 @@ msgctxt "travel description" msgid "travel" msgstr "fej átpozícionálás" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Külső falak csoportosítása" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Lehetővé teszi az objektumlista rendezését a nyomtatási sorrend kézi beállításához. A lista első objektuma lesz először nyomtatva." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Az azonos rétegben lévő különböző szigetek külső falait sorban nyomtatják. Amikor engedélyezve van, korlátozódik az áramlás változásainak mértéke, mert a falak típusonként nyomtathatók ki. Amikor letiltva van, az utazások számát a szigetek között csökkenti, mert ugyanazon szigeteken lévő falak csoportosítva vannak." +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Perem csak kívül" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "A felső felület legkülső falának áramlása" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "A modell első és második rétege között átfedést hoz létre Z irányban.Ez képes kompenzálni azt a hibát, ami az első rétegben keletkezett. Ezt a hibát az okozza, hogy a tutaj légrésben az első réteg benyúlik, így nem alakul ki a tökéletes első réteg.Az első réteg feletti összes rész magasságát érinti ez a beállítás." -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Áramlási kompenzáció a felső felület legkülső falvonalán." +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Csak a modell külső falaihoz nyomtat Peremet. Ez csökkenti a perem nyomtatási költségét, és nem szükséges a belső részeken eltávolítani majd azt, továbbá a test letapadását nem csökkenti jelentősen." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "A felső felület belső falainak áramlása" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Interfész felosztás" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Áramlás kompenzáció a felső felület falvonalain az összes falvonal kivételével a legkülsőn." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "A felső felület legkülső falának sebessége" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Az a sebesség, amellyel a felső felület legkülső falai kinyomtatnak." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "A felső felület belső falának sebessége" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Az a sebesség, amellyel a felső felület belső falai kinyomtatnak." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "A felső felület külső falának gyorsulása" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Az a gyorsulás, amellyel a felső felület legkülső falai kinyomtatnak." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "A felső felület belső falának gyorsulása" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Az a gyorsulás, amellyel a felső felület belső falai kinyomtatnak." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "A felső felület belső falának hirtelen gyorsulása" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület belső falai kinyomtatnak." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "A felső felület legkülső falának hirtelen gyorsulása" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület legkülső falai kinyomtatnak." - - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)." - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátorral együtt)." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Ez egy korrekció, amivel a spagetti kitöltéskor az extrudált teljes mennyiség beállítható." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Küszöbérték" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Beállítja a spagetti kitöltés sűrűségét. Vegye figyelembe, hogy a töltési sűrűség csak a töltési minta sorközét szabályozza, nem pedig a spagetti kitöltés extrudálásának mértékét." - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alternatív felületi forgás" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Az alsó/felső felületi kéregvonalak nyomtatási irányát változtatja meg.Általában ezek az irányok csak átlósak, azonban ez a beállítás hozzáadja a csak X és csak Y irányokat is." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Alkalmazza az extruder eltolását a koordinátarendszerre vonatkoztatva." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Automatikus hőfok" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Automatikusan változtassuk a hőmérsékletet az egyes rétegeknél, annak függvényében, hogy milyen az adott réteg átlagos adagolási sebessége." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompenzáció" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Kompenzálja a belső fal átfedéseit" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Kompenzálja a külső fal átfedéseit" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Fali átlapolások kompenzálása" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a fal azon részeinél, ahol az már elkészült." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a belső fal azon részeinél, ahol az már elkészült." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompenzálja a száladagolást a külső fal azon részeinél, ahol az már elkészült." - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Kicsi csomót hoz létre egy felfelé mutató vonal tetején, hogy az egymást követő vízszintes réteg nagyobb eséllyel csatlakozzon hozzá. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Késleltesse az időt lefelé történő mozgatás után, hogy a lefelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Késleltesse az időt felfelé történő mozgatás után, hogy a felfelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Késleltetési idő két vízszintes szegmens között. Egy ilyen késleltetés bevezetése jobb tapadást okozhat az előző rétegekhez a csatlakozási pontokon, míg a túl hosszú késleltetések megereszkedést okozhatnak. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Meghatározza, hogy melyik kitöltési háló helyezkedjen el egy másik kitöltési hálón. A magasabb rendű kitöltési háló megváltoztatja az alacsonyabb rendű és normál hálókat." - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "A fúvóka és a vízszintesen lefelé mutató vonalak közötti távolság. A nagyobb hézag átlósan lefelé mutató vonalakat eredményez, kevésbé meredek szöggel, ami viszont kevésbé felfelé irányuló kapcsolatokat eredményez a következő réteggel. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "A felfelé irányuló mozgás távolsága, amelyet fél sebességgel extrudálunk. Ez jobb tapadást eredményez az előző rétegekhez, miközben az anyag nem melegíti túl az anyagot ezekben a rétegekben. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "A támasz X/Y távolsága az alátamasztott kinyúlástól. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Az a távolság, amellyel az anyag leesik egy felfelé történő extrudálás után. Ezt a távolságot tudjuk itt kompenzálni. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Az a távolság, ameddig egy felfelé irányuló extrudálás anyagát az átlósan lefelé irányuló extrudálással együtt meghúzzuk. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Adagolás kiegyenlítés" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Mindenhol" - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Nyomtatószál park távolsága" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Falak közötti rések kitöltése" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Tölti ki a falak között azokat a réseket, ahol a falak nem találkoznak." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Apró hézagok kiszűrése" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Szűrje ki az apró hézagokat, hogy csökkentse a hibák megjelenését a modell külsején." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Első réteg sebesség" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Ádagoláskompenzáció felfelé vagy lefelé irányban haladva. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Ádagoláskompenzáció vízszintes vonalak nyomtatásakor. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Ádagoláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Adagoláskompenzáció faktor" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Maximális extrudálási eltolás adagoláskompenzáció" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "Az alapanyag GUID -je. Ez egy automatikus beállítás. " - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generáljon fához hasonló támasz ágakkal, amelyek megtámasztják a nyomtatványt.Ez csökkentheti az anyagfelhasználást és a nyomtatási időt, de jelentősen megnöveli a szeletelési időt." - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Azt adja meg, hogy milyen messze kell lenniük az ágaknak, mikor a modellt érintik. Ha a távolság kicsi, a ta támasza több ponton is megérinti a modellt, ami jobb alátámasztást ad, de nehezebb eltávolítani majd a támaszt utólag." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "A szeleteléskor az egyes szeletek a tárgy egy adott pontjában haladnak át, keresztben. Az adott réteg területei úgy alakulnak ki, hogy az adott réteg középpontjában metszi-e a szelet felületét. (Középső)Alternatív megoldásként az egyes rétegeknek lehetnek olyan területei, amelyek a térfogat beljesébe esnek a teljes rétegmagasság alatt (Kizáró).A rétegnek lehetnek olyan területei, amelyek a réteg bármely pontján belülre esnek (Befoglaló).A kizárólagos megtartja a legtöbb részletet, amíg a befoglalt a legjobban illeszkedik. A középső igényli a legkevesebb feldolgozási időt." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Ha engedélyezve van, akkor a visszahúzás van elsődlegesen használva a fésülés helyett, s így helyettesíti azokat a falakat, amiknek az anyag szükséglete az adagolási küszöb alatt lenne." - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Kitöltés háló rend" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Csomó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Támasz visszahúzás korlátozása" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "A nyomtatófej ábrázolása" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Adagolás maximum" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maximális adagolás kompenzáció sebesség" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "A maximális anyagmennyiség, amit ki tudunk extrudálni mielőtt a fűvókatörlés végre lesz hajtva." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "A maximális nyomtatási sebesség, amire a nyomtató kompenzálni tudja az adagolást." - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimális fal adagolás" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "A fali vonalak minimális adagolása. A fal átlapolás kompenzáció csökkenti az adagolást, amikor a már meglévő falakhoz közel nyomtatunk. Azoknak a falaknak, ahol az adagolási sebesség kissebb lenne, mint ez a megadott érték, az útvonalat módosítani kell. Ennek a beállításnak a használatakor engedélyezni kell a a fal átfedés kompenzációját, és a külső falakat a belsők előtt kell nyomtatni." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támasz interfész minimális területe. Az ezen az értéken kisebb területtel rendelkező támaszokat nem generálják." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támaszaljzat interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "A támasztető interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Seholsem" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "A támasz és a normál tárgyvonalak között kihagyja a visszahúzást. Ez időt takaríthat meg, de ez szálazást eredményezhet." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Külső falak a belsők előtt" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Az átlósan lefelé mutató vonal százaléka, amelyet egy vízszintes vonaldarab fed le. Ez megakadályozhatja a felfelé mutató vonalak legfelső pontjának elhajlását. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Visszahúzás preferálása" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Csak a külső felületet nyomtatja, egy ritkás hevederezett szerkezettel, a levegőben. Ez úgy valósul meg, hogy a modell kontúrjai vízszintesen kinyomtatásra kerülnek meghatározott Z intervallumban, amiket felfelé, és átlósan lefelé egyenesen összeköt." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Ez a kitöltés nem minta alapján történik, hanem a nyomtatószálat kaotikusan, össze-vissza folyatja a kitöltésen belül. Ez csökkenti a nyomtatási időt, azonban a struktúra stabilitása, és viselkedése kiszámíthatatlan." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "A normál vonalaktól vékonyabb vonalak nyomtatásakor a sebességet növelni fogja, miközben az extrudálás sebességét nem változatja. Így előfordulhat, hogy a modell vékonyabb darabjainál a vonalak szélessége kissebb lesz, mint a megadott.Ez a beállítás szabályozza az ilyen vonalaknak a nyomatatási sebesség változását." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "A falakat külső, majd belső sorrendben nyomtatja, ha ez engedélyezve van.Ez hozzájárulhat a X és Y méret pontosságának javításához, különösen nagy viszkozitású műanyag, például ABS használatakor. Ez azonban csökkentheti a külső felület nyomtatási minőségét, különösen az átlapolásoknál." - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Felbontás az ütközések kiszámítására, annak érdekében, hogy elkerüljük a modellel való ütközést. Ha alacsonyabb a beállítás, az pontosabb fákat eredményez, amik kevésbé dőlnek el, de a szeletelési időt drámai módon megnöveli." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Visszahúzás" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka mozog azon a területek felett, ahol nincs nyomtatás. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Visszatöltési sebesség" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Héj" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Zsugorodási arány" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "ZSugorodási arány százalékban megadva." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Az első réteg kis elemeit a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "A kisméretű elemeket a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Spagetti adagolás" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Spagetti kitöltés" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Extra kitöltési térfogat" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Kitöltés maximum magasság" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Lépésenkénti kitöltés" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Spagetti berakás" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maximális kitöltési szög" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "A fúvóka mozgásának sebessége az anyag extrudálásakor. Csak a huzalnyomtatásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "A vonalak lefelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "A vonalak felfelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Az első réteg nyomtatásának sebessége, amely az egyetlen réteg, amely megérinti a tárgyasztalt. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "A modell kontúrjának vizszintes irnyban történő nyomtatási sebessége.Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Stratégia annak biztosítására, hogy két egymást követő réteg kapcsolódjon minden egyes csatlakozási ponthoz. A visszahúzás lehetővé teszi, hogy a felfelé mutató vonalak a megfelelő helyzetben megkeményedjenek, de ez az adagolókerék megcsúszását, és a szál eldarálását okozhatja. Egy felfelé mutató vonal végén csomót lehet készíteni, hogy növeljük az ahhoz való csatlakozás eredményességét, és hagyjuk, hogy a vonal vége lehűljön; ez azonban lassú nyomtatási sebességet igényelhet. Egy másik stratégia, a felfelé mutató vonal tetejének elmaradásának kompenzálása; azonban a vonalak nem mindig esnek le a várt módon." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Az ágak szöge. Használjon alacsonyabb szöget, hogy függőlegesebb és stabilabbak legyenek. A jobb kinyúláshoz használjon nagyobb szöget." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A belső vonal végdarabjának távolsága, amely elhúzódik, amikor visszamegy a tető külső körvonalaihoz. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A 'vékony, levegőben' nyomtatott vízszintes tetővonalak nyomtatáskor csökkennek a távolságok. Ezeket a távolságokat kompenzálni kell. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Két vízszintes rész közötti felfelé és átlósan lefelé mutató vonalak magassága. Ez határozza meg a nettó szerkezet általános sűrűségét. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "A maximális w.r.t. szög a nyomtatás belsejében, és a Z tengelye azokon a területeken, amelyeket utána spagetti töltelékkel kell kitölteni. Ennek az értéknek a csökkentésével több olyan szögben lévő részeket hoz létre, amit minden rétegben meg kell tölteni." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A maximális távolság mm -ben történő kompenzációja." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A belső tér maximális magassága, amelyet felülről ki lehet tölteni." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Az adagolási sebesség szorzótényezője -> távolságtranszláció." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A faágak falainak száma. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Az eltolás a falaktól, ahonnan a spagetti kitöltés kinyomtatásra kerül." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A tárgyasztal hőmérséklete. Ha ez az érték 0, akkor tárgyasztal hőmérséklete nem lesz beállítva, azaz nem fogja fűteni a gép." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A faágak falainak vastagsága. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Annak a küszöbértéke, hogy kisebb legyen a rétegmagasság, vagy sem.Ezt a számot hasonlítják össze a réteg legmeredekebb meredekségével." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "A tetővé váló lyuk külső kerületein eltöltött idő. A hosszabb idő biztosítja a jobb kapcsolódást. Csak a huzalnyomásra vonatkozik." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "A tárgy alsó/felső felületén, az itt megadott szögnél nagyobb szög esetén a kéreg nem lesz kibővítve. Így elkerülhető, hogy a keskeny kéregrészek ne legyenek kibővítve, amik akkor jönnek létre, mikor a modell felülete közel függőleges szögben áll. A 0° szög a vízszintes, míg a 90° szög a függőlegest jelenti." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Fa támasz" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Támaszágak szöge" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Támaszágak átmérője" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Támaszágak átmérő szög" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Támaszágak távolsága" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Ütközés felbontás" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Fal vonal szám" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Fal vastagság" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Alsó késleltetés" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Aljzat nyomtatási sebesség" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Kapcsolódási adagolás" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Kapcsolódási magasság" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Lefelé nyomtatási sebesség" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Húzási távolság" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Emelés távolság" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Ejtés távolság" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Vízszintes késleltetés" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Vízszintes adagolás" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Adagolás" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Vízszintes nyomtatási sebesség" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Csomó méret" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Fúvúka hézag" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Fedél húzás" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Fedél ejtés" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Fedél betét távolság" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Fedél külső késleltetése" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Sebesség" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Vonal egyenesítés lefelé" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Startégia" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Felső késleltetés" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Felfelé nyomtatási sebesség" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Ettől a szögtől nagyobb mértékben túlnyúló falakat, a túlnyúló falbeállítások segítségével nyomtatjuk ki. Ha az érték 90, egyetlen falat sem tekintünk túlnyúlásnak." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Amikor a szál visszahúzódik, akkor a Z tengelyen történik egy emelés, hogy a nyomtatófej és a tárgy között legyen egy Z irányú hézag.Ez megakadályozza, hogy a fúvóka beleüzközzön, és esetleg elmozdítsa a testet a tárgylemezről." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Ha ezt használjuk, akkor lesz a G-kód -ban egy fúvóka törlés rétegváltáskor.A beállítás befolyásolhatja a visszahúzást rétegváltáskor.Kérjük használa a törlés visszahúzáskor beállításokat, ha felügyelni szeretné ezt olyan rétegeken, ahol a törlés kódrészlet működni fog." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Beállíthatjuk, hogy az összes modellt egy rétegben, egyszerre nyomtassa, vagy egyesével, egymás után nyomtatódjanak ki. Ha egymás után nyomtatódnak, akkor a modellek teljes egészében kinyomtatódnak, majd ez után lép át a következő modellre. Azonban ez csak akkor hasznáható, ha a modellek megfelelő távolságra helyezkednek el egymástól, és a fej nem tud beleütközni egy már kész modellbe.Továbbá arra is ügyelni kell, hogy az X/Y kinematikai rendszer (kereszttengelyek)magasságánál alacsonyabbak legyenek a modellek." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "A spagetti kitöltést lépésenként végezze, vagy egyszerre, a nyomtatás végén extrudálja a töltőszálat. (beleömleszti, össze-vissza)" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Törlési Z emelés visszahúzáskor" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Huzalváz nyomtatás" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "fekete mágia kategória" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "korrekció kategóriák" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "ezek még kísérleti stádiumban lévő funkciók!" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Amikor a szeletelő ellenőrzi, hogy hol tart a támasz a modell alatt vagy fölött, szükség esetén a megadott magasságú lépéseket teszi meg. Az alacsonyabb értékek lassabb szeleteést okoznak, míg a magasabb érték a normál támasz kinyomtatását eredményezhetik olyan helyeken, ahol támasz interfészt kellene nyomtatni." diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..2529ed73e4 --- /dev/null +++ b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 04cc68715a..d95f15080c 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Salva progetto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Salva il Progetto Universale Cura..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Impostazioni" @@ -138,7 +142,9 @@ msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazio msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Aggiungi profili materiale e plugin dal Marketplace\n- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" +msgstr "- Aggiungi profili materiale e plugin dal Marketplace" +"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin" +"- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -198,15 +204,24 @@ msgstr "
  • Versione OpenGL: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

    \n

    Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

    \n " +msgstr "

    Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

    " +"

    Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

    \n

    Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

    \n

    I backup sono contenuti nella cartella configurazione.

    \n

    Si prega di inviare questo Rapporto su crash per correggere il problema.

    \n " +msgstr "

    Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

    " +"

    Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

    " +"

    I backup sono contenuti nella cartella configurazione.

    " +"

    Si prega di inviare questo Rapporto su crash per correggere il problema.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

    \n

    {model_names}

    \n

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    \n

    Visualizza la guida alla qualità di stampa

    " +msgstr "

    La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

    " +"

    {model_names}

    " +"

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    " +"

    Visualizza la guida alla qualità di stampa

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +233,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Non è disponibile una connessione cloud per una stampante" msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Una parte molto densa e resistente, ma con un tempo di stampa più lento. Ottimo per le parti funzionali." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." @@ -390,6 +409,14 @@ msgctxt "@button" msgid "Agree" msgstr "Accetta" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tutti i file (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tutti i tipi supportati ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Consenti l'invio di dati anonimi" @@ -430,10 +457,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Segnalazioni anonime degli arresti anomali" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Struttura applicazione" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Si applica a" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Applica offset estrusore a gcode" @@ -474,6 +509,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Rimuovere {0}? Questa operazione non può essere annullata!" @@ -486,6 +525,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Sistema tutti i modelli in una griglia" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Disponi Selezione" + msgctxt "@label:button" msgid "Ask a question" msgstr "Fai una domanda" @@ -546,6 +589,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Backup" +msgctxt "@label" +msgid "Balanced" +msgstr "Bilanciato" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -602,6 +649,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calcolato" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Navigazione della fotocamera:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Rendering fotocamera:" @@ -634,6 +685,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Impossibile scrivere nel file UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annulla" + msgctxt "@button" msgid "Cancel" msgstr "Annulla" @@ -810,6 +865,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Conferma modifica diametro" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Conferma rimozione" + msgctxt "@action:button" msgid "Connect" msgstr "Collega" @@ -894,6 +953,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Impossibile interpretare la risposta del server." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Impossibile caricare il plugin GCodeWriter. Prova a riattivare il plugin." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Impossibile raggiungere Marketplace." @@ -906,6 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossibile salvare archivio materiali in {}:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossibile salvare {0}: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossibile salvare su unità rimovibile {0}: {1}" @@ -916,15 +983,18 @@ msgstr "Impossibile caricare i dati sulla stampante." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}\nAutorizzazione mancante per eseguire il processo." +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" +"Autorizzazione mancante per eseguire il processo." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}\nIl sistema operativo lo sta bloccando (antivirus?)" +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" +"Il sistema operativo lo sta bloccando (antivirus?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}\nLa risorsa non è temporaneamente disponibile" +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" +"La risorsa non è temporaneamente disponibile" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1070,8 @@ msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla st msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.\nCura è orgogliosa di utilizzare i seguenti progetti open source:" +msgstr "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità." +"Cura è orgogliosa di utilizzare i seguenti progetti open source:" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1161,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Impostazione predefinita" -msgctxt "@label" -msgid "Default" -msgstr "Impostazione predefinita" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: " @@ -1242,6 +1309,10 @@ msgctxt "@label" msgid "Draft" msgstr "Bozza" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Rilasciare tutti i modelli sulla piano di stampa" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplica" @@ -1322,6 +1393,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Inserire l'indirizzo IP della stampante." +msgctxt "@info:title" +msgid "Error" +msgstr "Errore" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Analisi errori" @@ -1358,6 +1433,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Esporta selezione..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Esportare il Progetto Universale Cura" + msgctxt "@button" msgid "Export material archive" msgstr "Esporta archivio materiali" @@ -1386,10 +1465,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Codice G fine estrusore" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Durata del G-code di fine dell'estrusore" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Codice G avvio estrusore" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Durata del G-code di inizio dell'estrusore" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Estrusore {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Estrusore disabilitato" @@ -1450,6 +1541,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Impossibile salvare archivio materiali" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Scrittura non riuscita sulla stampante cloud specifica: {0} non è presente nei cluster remoti." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Preferiti" @@ -1466,6 +1561,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Il file esiste già" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "File salvato" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Il file {0} non contiene nessun profilo valido." @@ -1574,6 +1677,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" +msgid "FreeCAD trackpad" +msgstr "Trackpad di FreeCAD" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visualizzazione frontale" @@ -1626,6 +1732,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Altezza gantry" +msgctxt "@title:tab" +msgid "General" +msgstr "Generale" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." @@ -1646,6 +1756,10 @@ msgctxt "@action" msgid "Get started" msgstr "Per iniziare" +msgctxt "@label" +msgid "Global" +msgstr "Globale" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Impostazioni globali" @@ -1694,6 +1808,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Nascondi tutte le stampanti collegate" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Nascondi le impostazioni" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Nascondi questa impostazione" @@ -1766,6 +1884,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Per utilizzare il pacchetto è necessario riavviare Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "Includere il nome dell'account UltiMaker" + msgctxt "@label" msgid "Infill" msgstr "Riempimento" @@ -1978,6 +2100,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Ulteriori informazioni" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Ulteriori informazioni" + msgctxt "@button" msgid "Learn more" msgstr "Ulteriori informazioni" @@ -2106,6 +2232,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "File di Stampa Makerbot" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter non è riuscito a salvare nel percorso designato." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter non supporta la modalità testo." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gestione materiali..." @@ -2410,6 +2548,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Nessun risultato trovato con il filtro corrente" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Non è stato impostato alcun valore specifico" + msgctxt "@label" msgid "No time estimation available" msgstr "Nessuna stima di tempo disponibile" @@ -2482,6 +2624,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Numero di estrusori" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Lingua sistema operativo" @@ -2506,6 +2652,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Ops! Si è verificato un errore imprevisto durante il processo di slicing. Anche se non è stata disabilitata la condivisione dei dati nelle preferenze, abbiamo ricevuto automaticamente i log degli arresti anomali per l'analisi. Per aiutarci ulteriormente, prendere in considerazione la possibilità di condividere i dettagli del progetto nella nostra tracciatura delle problematiche." + msgctxt "@action:button" msgid "Open" msgstr "Apri" @@ -2534,10 +2684,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Apri file progetto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Aprire il Progetto Universale Cura (UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Aprire il file del Progetto Universale Cura (UCP)" + msgctxt "@action:label" msgid "Open With" msgstr "Apri con" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Aprire come UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Apri come progetto" @@ -2635,7 +2797,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Incolla dagli appunti" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pausa" @@ -2697,7 +2858,10 @@ msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa ap msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Accertarsi che la stampante sia collegata:\n- Controllare se la stampante è accesa.\n- Controllare se la stampante è collegata alla rete.\n- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." +msgstr "Accertarsi che la stampante sia collegata:" +"- Controllare se la stampante è accesa." +"- Controllare se la stampante è collegata alla rete." +"- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2875,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Indica un nome per questo profilo." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Si prega di fornire un nuovo nome." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Leggi e accetta la licenza del plugin." @@ -2721,7 +2889,10 @@ msgstr "Rimuovere la stampa" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Verificare le impostazioni e controllare se i modelli:\n- Rientrano nel volume di stampa\n- Sono assegnati a un estrusore abilitato\n- Non sono tutti impostati come maglie modificatore" +msgstr "Verificare le impostazioni e controllare se i modelli:" +"- Rientrano nel volume di stampa" +"- Sono assegnati a un estrusore abilitato" +"- Non sono tutti impostati come maglie modificatore" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2902,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Accedere per ottenere i plugin e i materiali verificati per UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Accedere al proprio account UltiMaker per consentire l'invio di dati non anonimi." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare." @@ -2815,6 +2990,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Stampa" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Stampa dopo" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Stampa prima" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3118,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Le impostazioni della stampante saranno aggiornate in modo che corrispondano alle impostazioni salvate con il progetto." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Stampanti" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Stampanti aggiunte da Digital Factory:" @@ -3069,7 +3256,7 @@ msgstr "Coda piena" msgctxt "@label" msgid "Queued" -msgstr "Coda di stampa" +msgstr "Accodato" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" @@ -3143,6 +3330,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Rinomina" +msgctxt "@title:window" +msgid "Rename" +msgstr "Rinomina" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Rinomina profilo" @@ -3244,8 +3435,12 @@ msgid "Save Cura project" msgstr "Salva progetto Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salva progetto Cura e stampa file" +msgid "Save Cura project and .makerbot print file" +msgstr "Salva il progetto Cura e il file di stampa .makerbot" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Salva il progetto Cura e il file di stampa .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,9 +3466,13 @@ msgctxt "@button" msgid "Save new profile" msgstr "Salva nuovo profilo" +msgctxt "@action:button" +msgid "Save project" +msgstr "Salva il progetto" + msgctxt "@text" msgid "Save the .umm file on a USB stick." -msgstr "Salvare il file .umm su una chiavetta USB." +msgstr "Salva il file .umm su una chiavetta USB." msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" @@ -3287,6 +3486,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Salvato su unità rimovibile {0} come {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvataggio in corso" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Salvataggio su unità rimovibile {0}" @@ -3367,6 +3570,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Inviare il rapporto su crash a UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Inviare le segnalazioni degli arresti anomali con il nome dell'account UltiMaker registrato e il nome del progetto a UltiMaker Sentry. Non saranno inviati i dati effettivi del modello." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Inviare le segnalazioni degli arresti anomali senza le informazioni di identificazione personale o i dati dei modelli a UltiMaker." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Inviare le segnalazioni degli arresti anomali del motore" + msgctxt "@action:button" msgid "Send report" msgstr "Invia report" @@ -3411,6 +3626,14 @@ msgctxt "@label" msgid "Settings" msgstr "Impostazioni" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Impostazioni" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Impostazioni caricate dal file UCP" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:" @@ -3479,6 +3702,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Le segnalazioni degli arresti anomali di slicing devono essere segnalati automaticamente a Ultimaker? Nota: non vengono inviati o memorizzati i modelli, gli indirizzi IP o le altre informazioni di identificazione personale, a meno che non si fornisca un'autorizzazione esplicita." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?" @@ -3535,6 +3762,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostra il rapporto su crash dettagliato" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Mostra le impostazioni" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Visualizza una finestra di riepilogo quando si salva un progetto" @@ -3603,10 +3834,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Sezionamento non riuscito" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Sezionamento in corso..." @@ -3615,13 +3842,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Sistemazione" +msgctxt "@label" +msgid "Solid" +msgstr "Solido" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Visualizzazione compatta" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n\nFare clic per rendere visibili queste impostazioni." +msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato." +"Fare clic per rendere visibili queste impostazioni." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3869,8 @@ msgstr "Alcuni valori delle impostazioni definiti in %1 sono stati sovras msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n\nFare clic per aprire la gestione profili." +msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo." +"Fare clic per aprire la gestione profili." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3896,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Sponsorizza Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Sponsorizza Cura" @@ -3721,10 +3952,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Impostazioni consigliate del materiale" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Impostazioni consigliate del profilo" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Riepilogo - Progetto Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Riepilogo - Aprire il Progetto Universale Cura (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Riepilogo - Progetto Universale Cura" + msgctxt "@label" msgid "Support" msgstr "Supporto" @@ -3843,6 +4090,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Il backup supera la dimensione file massima." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "L'altezza della base dal piano di stampa in millimetri." @@ -3899,6 +4150,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni." @@ -3959,7 +4214,10 @@ msgstr "L’ugello inserito in questo estrusore." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "La configurazione del materiale di riempimento della stampa:\n\nPer stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n\nPer le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n\nPer le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." +msgstr "Il modello del materiale di riempimento della stampa:\n\n" +"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n\n" +"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n\n" +"Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4077,6 +4335,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Questo è un file del Progetto Universale Cura. Si desidera aprirlo come progetto Cura o Progetto Universale Cura o importare i modelli da esso?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?" @@ -4125,7 +4387,8 @@ msgstr "Questo progetto contiene materiali o plugin attualmente non installati i msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Questa impostazione ha un valore diverso dal profilo.\n\nFare clic per ripristinare il valore del profilo." +msgstr "Questa impostazione ha un valore diverso dal profilo." +"Fare clic per ripristinare il valore del profilo." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4406,8 @@ msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n\nFare clic per ripristinare il valore calcolato." +msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto." +"Fare clic per ripristinare il valore calcolato." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4153,6 +4417,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Questa impostazione potrebbe non funzionare bene durante l'esportazione nel Progetto Universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Quest'impostazione potrebbe non funzionare bene durante l'esportazione nel Progetto Universale Cura. Gli utenti sono invitati ad aggiungerla a proprio rischio." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Questa versione non è destinata all'uso in produzione. Se riscontri dei problemi, segnalali sulla nostra pagina GitHub, citando la versione completa {self.getVersion()}" @@ -4245,6 +4517,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Tipo" +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Stampa USB" @@ -4299,7 +4575,8 @@ msgstr "Impossibile trovare il server EnginePlugin locale eseguibile per: {self. msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}\nAccesso negato." +msgstr "Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}" +"Accesso negato." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4341,6 +4618,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Non è possibile scrivere sul file: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Non disponibile" @@ -4361,6 +4642,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unità" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Progetto Universale Cura" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "I file del Progetto Universale Cura possono essere riprodotti su diverse stampanti 3D, mantenendo i dati di posizione e le impostazioni selezionate. Quando vengono esportati, tutti i modelli presenti sulla piano di stampa saranno inclusi con la posizione, l'orientamento e la scala attuali. È inoltre possibile selezionare che le impostazioni per estrusore o per modello siano incluse per garantire una stampa corretta." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configurazione universale del sistema di build" @@ -4477,6 +4766,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Libreria utilità, tra cui generazione diagramma Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "Valore" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualizza le stampanti in Digital Factory" @@ -4525,6 +4818,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Ulteriori informazioni?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Avvertenza" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità." @@ -4549,6 +4846,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Quale stampante si desidera configurare?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Quale tipo di navigazione della fotocamera deve essere utilizzata?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?" @@ -4627,12 +4928,13 @@ msgstr "Sì" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \nContinuare?" +msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. " +"Continuare?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[0] "Si sta per rimuovere la stampante {0} da Cura. Questa azione non può essere annullata.\nContinuare?" msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" @@ -4649,7 +4951,9 @@ msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Alcune impostazioni di profilo sono state personalizzate.\nMantenere queste impostazioni modificate dopo il cambio dei profili?\nIn alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." +msgstr "Alcune impostazioni di profilo sono state personalizzate." +"Mantenere queste impostazioni modificate dopo il cambio dei profili?" +"In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4985,8 @@ msgstr "La nuova stampante apparirà automaticamente in Cura" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Impossibile connettere la stampante {printer_name} tramite cloud.\n Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" +msgstr "Impossibile connettere la stampante {printer_name} tramite cloud." +" Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" msgctxt "@label" msgid "Z" @@ -4727,6 +5032,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "oggi" @@ -4747,491 +5056,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Impossibile scaricare i plugin {}" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce assistenza per l'esportazione di profili Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Writer profilo Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." - -msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lettore legacy profilo Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornisce il supporto per la lettura di file X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lettore X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Writer UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aggiornamento della versione da 3.5 a 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aggiornamento della versione da 4.1 a 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aggiornamento della versione da 4.7 a 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Aggiornamento della versione da 4.9 a 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aggiornamento della versione da 3.2 a 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aggiornamento della versione da 2.7 a 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Aggiornamento della versione da 4.11 a 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aggiornamento della versione da 2.6 a 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aggiornamento della versione da 4.8 a 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Aggiornamento della versione da 4.3 a 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aggiornamento della versione da 3.3 a 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aggiornamento della versione da 4.4 a 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aggiornamento della versione da 2.5 a 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aggiornamento della versione da 2.1 a 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Aggiornamento della versione da 4.2 a 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Aggiornamento della versione da 5.2 a 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aggiornamento della versione da 4.0 a 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aggiornamento della versione da 2.2 a 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Aggiornamento della versione da 3.4 a 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Aggiornamento della versione da 4.13 a 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Aggiornamento versione da 5.4 a 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aggiornamento della versione da 3.0 a 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aggiornamento versione da 4.6.2 a 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Aggiornamento versione da 5.3 a 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Estensione che consente la post-elaborazione degli script creati da utente" - -msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vista simulazione" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornisce supporto per l'importazione dei profili Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lettore profilo Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornisce le impostazioni per modello." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Utilità impostazioni per modello" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornisce una fase di anteprima in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase di anteprima" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Cancellazione supporto" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Consente il caricamento e la visualizzazione dei file codice G." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lettore codice G" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Effettua il backup o ripristina la configurazione." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backup Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin dispositivo di output unità rimovibile" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Azioni della macchina UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Fornisce la vista a raggi X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista ai raggi X" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete." +msgstr "Gestisce le connessioni di rete per le stampanti interconnesse UltiMaker." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "Connessione di rete UltiMaker" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Azione Impostazioni macchina" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornisce supporto per la lettura dei file modello." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Mercato" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lettore di immagine" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aggiornamento firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornisce una fase di preparazione in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase di preparazione" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controlla disponibilità di aggiornamenti firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Controllo aggiornamento firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Scrive il codice G in un file." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Writer codice G" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." - -msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lettore 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Stampa USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lettore 3MF" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "Fornisce supporto per l'importazione di profili da file G-Code." @@ -5248,6 +5080,374 @@ msgctxt "name" msgid "Solid View" msgstr "Visualizzazione compatta" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Lettore 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Stampa USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controlla disponibilità di aggiornamenti firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Controllo aggiornamento firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Mercato" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Backup Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Azione Impostazioni macchina" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Aggiornamento della versione da 2.5 a 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aggiornamento della versione da 4.7 a 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aggiornamento della versione da 4.4 a 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aggiornamento della versione da 3.0 a 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aggiornamento della versione da 4.11 a 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aggiornamento della versione da 4.1 a 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aggiornamento della versione da 2.6 a 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aggiornamento della versione da 3.3 a 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aggiornamento della versione da 4.8 a 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aggiornamento della versione da 4.5 a 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Aggiornamento della versione da 4.2 a 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aggiornamento della versione da 3.2 a 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Aggiornamento della versione da 4.3 a 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Aggiorna le configurazioni da Cura 5.6 a Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Aggiornamento della versione 5.6 a 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aggiornamento della versione da 2.1 a 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Aggiornamento versione da 5.3 a 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Aggiornamento della versione da 4.9 a 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aggiornamento della versione da 2.7 a 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aggiornamento della versione da 3.5 a 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Aggiornamento della versione da 5.2 a 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aggiornamento della versione da 4.0 a 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Aggiornamento della versione da 4.13 a 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Aggiornamento della versione da 3.4 a 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aggiornamento della versione da 2.2 a 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aggiornamento versione da 4.6.2 a 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Aggiornamento versione da 5.4 a 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Consente il caricamento e la visualizzazione dei file codice G." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lettore codice G" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni anonime su sezionamento Può essere disabilitato tramite le preferenze." + +msgctxt "name" +msgid "Slice info" +msgstr "Informazioni su sezionamento" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin dispositivo di output unità rimovibile" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Cancellazione supporto" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e dai alcuni suggerimenti." + +msgctxt "name" +msgid "Model Checker" +msgstr "Controllo modello" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornisce una fase di preparazione in Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase di preparazione" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." + +msgctxt "name" +msgid "Simulation View" +msgstr "Vista simulazione" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Lettore 3MF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Fornisce la vista a raggi X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista ai raggi X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lettore legacy profilo Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Estensione che consente la post-elaborazione degli script creati da utente" + +msgctxt "name" +msgid "Post Processing" +msgstr "Post-elaborazione" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" @@ -5257,12 +5457,20 @@ msgid "Sentry Logger" msgstr "Logger sentinella" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fornisce supporto per la scrittura di pacchetti nel formato MakerBot." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" +msgid "Makerbot Printfile Writer" +msgstr "Scrittore di File di Stampa Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornisce supporto per l'importazione dei profili Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lettore profilo Cura" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5481,20 @@ msgid "UFP Reader" msgstr "Lettore UFP" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Fornisce il supporto per la scrittura di file 3MF." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" +msgid "Image Reader" +msgstr "Lettore di immagine" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end CuraEngine" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,85 +5504,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Writer codice G compresso" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Azioni della macchina UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornisce una fase di anteprima in Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase di anteprima" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Fornisce supporto per l'esportazione dei profili Cura." -msgctxt "@info:title" -msgid "Error" -msgstr "Errore" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Writer profilo Cura" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annulla" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornisce il supporto per la lettura di file X3D." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Impostazioni" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lettore X3D" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornisce supporto per la lettura dei file modello." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Ulteriori informazioni" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" -msgctxt "@title:tab" -msgid "General" -msgstr "Generale" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornisce una fase di controllo in Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase di controllo" -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornisce le impostazioni per modello." -msgctxt "@info:title" -msgid "Saving" -msgstr "Salvataggio in corso" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Utilità impostazioni per modello" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Il file esiste già" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tutti i tipi supportati ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Profili del materiale" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Impossibile salvare {0}: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Fornisce il supporto per la scrittura di file 3MF e UCP." -msgctxt "@info:title" -msgid "Warning" -msgstr "Avvertenza" +msgctxt "name" +msgid "3MF Writer" +msgstr "Writer 3MF" -msgctxt "@title:tab" -msgid "Printers" -msgstr "Stampanti" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." -msgctxt "@info:title" -msgid "File Saved" -msgstr "File salvato" +msgctxt "name" +msgid "UFP Writer" +msgstr "Writer UFP" -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Conferma rimozione" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Scrive il codice G in un file." -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tutti i file (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Bilanciato" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." +msgctxt "name" +msgid "G-code Writer" +msgstr "Writer codice G" diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 6a344a1979..65cf3564ed 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Fine codice G da eseguire quando si passa a questo estrusore." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Durata del G-code di fine dell'estrusore" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Il tempo necessario per eseguire il G-code di fine, quando ci si allontana da questo estrusore." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Assoluto posizione fine estrusore" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posizione Y fine estrusore" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." @@ -84,17 +113,53 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Durata del G-code di inizio dell'estrusore" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Il tempo necessario per eseguire il G-code di inizio, quando si passa a questo estrusore." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" -msgstr "Assoluto posizione avvio estrusore" +msgstr "Posizione assoluta avvio estrusore" msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" -msgstr "X posizione avvio estrusore" +msgstr "Posizione X avvio estrusore" msgctxt "machine_extruder_start_pos_x description" msgid "The x-coordinate of the starting position when turning the extruder on." @@ -102,20 +167,20 @@ msgstr "La coordinata x della posizione di partenza all’accensione dell’estr msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" -msgstr "Y posizione avvio estrusore" +msgstr "Posizione Y avvio estrusore" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni specifiche della macchina" msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Offset X ugello" @@ -131,51 +196,3 @@ msgstr "Offset Y ugello" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "La coordinata y dell’offset dell’ugello." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." - -msgctxt "material label" -msgid "Material" -msgstr "Materiale" - -msgctxt "material description" -msgid "Material" -msgstr "Materiale" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 9615904f61..3ea126ad48 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Tipo di macchina" @@ -34,7 +42,8 @@ msgstr "Codice G avvio" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "I comandi codice G da eseguire all’avvio, separati da \n." +msgstr "I comandi codice G da eseguire all’avvio, separati da " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "Codice G fine" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "I comandi codice G da eseguire alla fine, separati da \n." +msgstr "I comandi codice G da eseguire alla fine, separati da " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "Il GUID del materiale. È impostato automaticamente." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo di materiale" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Il tipo di materiale utilizzato." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca del materiale" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marca del materiale utilizzato." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Attendi il riscaldamento del piano di stampa" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Offset con estrusore" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Posizione assoluta di innesco estrusore" @@ -1558,7 +1616,8 @@ msgstr "Conteggio pareti di riempimento supplementari" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare.\nQuesta funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." +msgstr "Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare." +"Questa funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Temperatura di stampa preimpostata" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Temperatura di stampa Strato iniziale" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." +msgid "The temperature used for printing the first layer." +msgstr "La temperatura utilizzata per la stampa del primo strato." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flusso della parete esterna della superficie superiore" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flusso della parete interna della superficie superiore" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Flusso superiore/inferiore" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna della superficie superiore" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocità di stampa della parete interna della superficie superiore" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Velocità del rivestimento superficie" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accelerazione della parete esterna della superficie superiore" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accelerazione della parete interna della superficie superiore" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Accelerazione del rivestimento superficie superiore" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk parete interna della superficie superiore" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk parete esterna della superficie superiore" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Jerk del rivestimento superficie superiore" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Distanza Z supporto" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Distanza inferiore supporto" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "È la distanza tra la stampa e la parte inferiore del supporto." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Risoluzione interfaccia supporto" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Densità interfaccia supporto" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "Abilitazione blob di innesco" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Tipo di adesione piano di stampa" @@ -3818,7 +3965,8 @@ msgstr "Distanza dello skirt" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\nQuesta è la distanza minima. Più linee di skirt aumenteranno tale distanza." +msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa." +"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim solo sull’esterno" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Posizione del brim" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Stampa un brim all'esterno, all'interno o in entrambi i punti del modello. A seconda di quest'ultimo, tale scelta consente di ridurre la quantità di brim da rimuovere in seguito, garantendo al contempo una corretta adesione al piano di stampa." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Solo all'esterno" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Solo all'interno" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Ovunque" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Margine di aggiramento interno del brim" +msgid "Brim Avoid Margin" +msgstr "Margine per evitare il brim" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Un brim intorno a un modello potrebbe toccarne un altro in un punto non desiderato. Ciò rimuove tutto il brim entro questa distanza dai modelli che ne sono sprovvisti." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margine extra della base del raft" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la base del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno spazio per la stampa." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margine extra della parte centrale del raft" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la parte centrale del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margine extra della parte superiore del raft" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la parte superiore del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Rimuovi angoli interni raft" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Rimuovere gli angoli interni dalla base del raft" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Rimuovere gli angoli interni dalla base del raft, facendolo diventare convesso." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Rimuovere gli angoli interni dalla parte centrale del raft" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Rimuovere gli angoli interni dalla parte centrale del raft, facendolo diventare convesso." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Rimuovere gli angoli interni dalla parte superiore del raft" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Rimuove gli angoli interni dalla parte superiore del raft, facendolo diventare convesso." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Smoothing raft" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Levigatura della base del raft" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni nel contorno della base del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Levigatura della parte centrale del raft" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte centrale del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Levigatura della parte superiore del raft" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte superiore del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Traferro del raft" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Z Sovrapposizione Primo Strato" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Il primo e il secondo strato del modello vanno sovrapposti nella direzione Z per compensare il filamento perso nello spazio vuoto. Tutti i modelli al di sopra del primo strato saranno spostati verso il basso da questa quantità.\nSi può notare che a volte il secondo strato viene stampato al di sotto dello strato iniziale a causa di questa impostazione. Si tratta di un comportamento previsto." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Strati superiori del raft" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Spessore della base del raft" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Spessore dello strato superiore del raft" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Larghezza delle linee dello strato di base del raft" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "È lo spessore degli strati superiori del raft." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Larghezza delle linee superiori del raft" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Spaziatura delle linee dello strato di base del raft" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Spaziatura superiore del raft" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Spessore della base del raft" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Strati superiori del raft" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Larghezza delle linee dello strato di base del raft" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Spessore dello strato superiore del raft" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "È lo spessore degli strati superiori del raft." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Spaziatura delle linee dello strato di base del raft" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Larghezza delle linee superiori del raft" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Spaziatura superiore del raft" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordine monotono della superficie della parte superiore del raft" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Stampare le linee della superficie della parte superiore del raft in un ordine che fa sì che si sovrappongano sempre alle linee adiacenti in un'unica direzione. Ciò richiede un tempo di stampa leggermente superiore, ma conferisce alla superficie un aspetto più consistente, visibile anche sulla superficie inferiore del modello." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Conteggio delle pareti del raft" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare del raft." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Conteggio parete base del raft" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Conteggio delle pareti della parte centrale del raft" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati centrali del raft." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Conteggio delle parete della parte superiore del raft" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati superiori del raft." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "Indica la velocità alla quale il raft è stampato." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocità di stampa parte superiore del raft" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocità di stampa della base del raft" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocità di stampa della base del raft" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocità di stampa parte superiore del raft" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "Indica l’accelerazione con cui viene stampato il raft." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accelerazione di stampa parte superiore del raft" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accelerazione di stampa della base del raft" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accelerazione di stampa della base del raft" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accelerazione di stampa parte superiore del raft" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "Indica il jerk con cui viene stampato il raft." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk di stampa parte superiore del raft" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk di stampa della base del raft" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk di stampa della base del raft" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk di stampa parte superiore del raft" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "Indica la velocità di rotazione della ventola per il raft." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocità della ventola per la parte superiore del raft" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocità della ventola per la base del raft" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocità della ventola per la base del raft" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocità della ventola per la parte superiore del raft" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipi di prime tower" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Come generare la prime tower:
    • Normale: creare un contenitore in cui vengono preparati i materiali secondari
    • Impilata: creare una prime tower più intervallata possibile. Ciò farà risparmiare tempo e filamento, ma è possibile solo se i materiali utilizzati aderiscono tra loro
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normale" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Impilata" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Dimensioni torre di innesco" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distanza massima tra i rami della prime tower" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "La lunghezza massima dei rami stampabili a mezz'aria." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posizione X torre di innesco" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim torre di innesco" +msgid "Prime Tower Base" +msgstr "Base della Torre di Primerizzazione" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Dimensione della Base della Torre di Primerizzazione" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altezza della Base della Torre di Primerizzazione" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pendenza della Base della Torre di Primerizzazione" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Interlinea del Radeau della Torre di Primerizzazione" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Uno alla volta" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Imposta manualmente la sequenza di stampa" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco verrà stampato per primo." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Maglia di riempimento" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Rimuovi angoli interni raft" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Raggruppa le pareti esterne" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Conteggio parete base del raft" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Resoconto del processo di stampa" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Resoconto degli eventi che superano le soglie impostate" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Abilita il resoconto del processo di stampa" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Abilita il resoconto del processo di stampa per impostare i valori di soglia per il rilevamento di eventuali errori." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Avviso sul flusso" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite per attivare l'avviso sul flusso." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite per il flusso" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia del flusso." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Avviso sulla temperatura di stampa" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite per attivare l'avviso sulla temperatura di stampa." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite per la temperatura di stampa" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia della temperatura di stampa." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Avviso sulla temperatura del volume di costruzione" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite per attivare l'avviso sulla temperatura del volume di costruzione." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite per la temperatura del volume di costruzione" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia della temperatura del volume di costruzione." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,190 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice di rotazione da applicare al modello quando caricato dal file." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flusso graduale abilitato" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accelerazione max del flusso graduale" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accelerazione massima per modifiche di flusso graduale" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accelerazione del flusso max del livello iniziale" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Dimensione della fase di discretizzazione del flusso graduale" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durata di ciascuna fase nella modifica del flusso graduale" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reimposta durata flusso" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." - -msgctxt "material description" -msgid "Material" -msgstr "Materiale" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "material label" -msgid "Material" -msgstr "Materiale" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Raggruppa le pareti esterne" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flusso della parete esterna della superficie superiore" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flusso della parete interna della superficie superiore" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna della superficie superiore" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocità di stampa della parete interna della superficie superiore" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accelerazione della parete esterna della superficie superiore" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accelerazione della parete interna della superficie superiore" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk parete interna della superficie superiore" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk parete esterna della superficie superiore" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..795ac71b6f --- /dev/null +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flusso graduale abilitato" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Abilitare le variazioni graduali del flusso. Quando abilitate, il flusso viene aumentato/diminuito gradualmente fino al flusso target. Ciò è utile per le stampanti dotate di tubo bowden dove il flusso non viene modificato immediatamente all'avvio/arresto del motore dell'estrusore." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accelerazione massima del flusso graduale" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accelerazione massima per le variazioni graduali del flusso" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accelerazione massima del flusso per lo strato iniziale" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocità minima per le variazioni graduali del flusso per il primo strato." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Dimensione del gradino di discretizzazione del flusso graduale" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durata di ogni gradino per la variazione graduale del flusso" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reimpostare la durata del flusso" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato su quello target dei percorsi." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 4aefbe2bb3..ea4c92c62f 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -114,6 +114,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "プロジェクトを保存... (&S)" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "Universal Cura Projectを保存..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&設定" @@ -136,7 +140,9 @@ msgstr "*これらの変更を有効にするには、アプリケーション msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- マーケットプレースから材料プロファイルとプラグインを追加\n- 材料プロファイルとプラグインのバックアップと同期\n- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" +msgstr "- マーケットプレースから材料プロファイルとプラグインを追加" +"- 材料プロファイルとプラグインのバックアップと同期" +"- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" msgctxt "@heading" msgid "-- incomplete --" @@ -196,15 +202,24 @@ msgstr "
  • OpenGLバージョン: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

    \n

    「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

    \n " +msgstr "

    致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

    " +"

    「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

    \n

    開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

    \n

    バックアップは、設定フォルダに保存されます。

    \n

    問題解決のために、このクラッシュ報告をお送りください。

    \n " +msgstr "

    申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

    " +"

    開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

    " +"

    バックアップは、設定フォルダに保存されます。

    " +"

    問題解決のために、このクラッシュ報告をお送りください。

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

    \n

    {model_names}

    \n

    可能な限り最高の品質および信頼性を得る方法をご覧ください。

    \n

    印字品質ガイドを見る

    " +msgstr "

    モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

    " +"

    {model_names}

    " +"

    可能な限り最高の品質および信頼性を得る方法をご覧ください。

    " +"

    印字品質ガイドを見る

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -215,6 +230,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "一部のプリンターではクラウド接続は利用できません" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "密度の高い強力な部品ですが,印刷時間は遅くなります。機能部品に最適です。" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。" @@ -387,6 +406,14 @@ msgctxt "@button" msgid "Agree" msgstr "同意する" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "全てのファイル" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "すべてのサポートのタイプ ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "匿名データの送信を許可する" @@ -427,10 +454,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "匿名" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "匿名のクラッシュレポート" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "アプリケーションフレームワーク" +msgctxt "@title:column" +msgid "Applies on" +msgstr "適用:" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "エクストルーダーのオフセットをGCodeに適用します" @@ -471,6 +506,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。" +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1を取り外しますか?この作業はやり直しが効きません!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。" @@ -483,6 +522,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "すべてのモデルをグリッドに配置" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "選択を整列" + msgctxt "@label:button" msgid "Ask a question" msgstr "質問をする" @@ -543,6 +586,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "バックアップ" +msgctxt "@label" +msgid "Balanced" +msgstr "バランス" + msgctxt "@action:label" msgid "Base (mm)" msgstr "ベース(mm)" @@ -599,6 +646,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "計算された" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "カメラナビゲーション:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "カメラレンダリング:" @@ -631,6 +682,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFPファイルに書き込めません:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "キャンセル" + msgctxt "@button" msgid "Cancel" msgstr "キャンセル" @@ -807,6 +862,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "直径変更の確認" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "モデルを取り除きました" + msgctxt "@action:button" msgid "Connect" msgstr "接続" @@ -891,6 +950,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "サーバーの応答を解釈できませんでした。" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "GCodeWriterプラグインを読み込めませんでした。プラグインを再度有効にしてみてください。" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "マーケットプレースにアクセスできませんでした。" @@ -903,6 +966,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "材料アーカイブを{}に保存できませんでした:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}を保存できませんでした: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" @@ -913,15 +980,18 @@ msgstr "データをプリンタにアップロードできませんでした。 msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}\n処理を実行する権限がありません。" +msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" +"処理を実行する権限がありません。" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}\nOSによりブロックされています(ウイルス対策?)" +msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" +"OSによりブロックされています(ウイルス対策?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}\nリソースは一時的に利用できません" +msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" +"リソースは一時的に利用できません" msgctxt "@title:window" msgid "Crash Report" @@ -997,7 +1067,8 @@ msgstr "Curaはグループ{0}のホストプリンターにまだインスト msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "CuraはUltiMakerのコミュニティの協力によって開発され、\nCuraはオープンソースで使えることを誇りに思います:" +msgstr "CuraはUltiMakerのコミュニティの協力によって開発され、" +"Curaはオープンソースで使えることを誇りに思います:" msgctxt "@label" msgid "Cura language" @@ -1087,10 +1158,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "デフォルト" -msgctxt "@label" -msgid "Default" -msgstr "デフォルト" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: " @@ -1239,6 +1306,10 @@ msgctxt "@label" msgid "Draft" msgstr "ドラフト" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "すべてのモデルをビルドプレートにドロップ" + msgctxt "@action:button" msgid "Duplicate" msgstr "複製" @@ -1319,6 +1390,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "プリンターのIPアドレスを入力します。" +msgctxt "@info:title" +msgid "Error" +msgstr "エラー" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "エラー・トレースバック" @@ -1355,6 +1430,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "選択エクスポート..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Universal Cura Projectのエクスポート" + msgctxt "@button" msgid "Export material archive" msgstr "材料アーカイブのエクスポート" @@ -1383,10 +1462,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "エクストルーダーがG-Codeを終了する" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "エクストルーダー終了Gコードの時間" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "エクストルーダーがG-Codeを開始する" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "エクストルーダー開始Gコードの時間" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "エクストルーダー {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "エクストルーダーを無効にしました" @@ -1447,6 +1538,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "材料アーカイブの保存に失敗しました" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "特定のクラウドプリンタへの書き込みに失敗しました:{0} はリモートクラスタにありません。" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "お気に入り" @@ -1463,6 +1558,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "フィラメントの重さ" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "すでに存在するファイルです" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "ファイル保存" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" @@ -1571,6 +1674,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" +msgid "FreeCAD trackpad" +msgstr "FreeCADトラックパッド" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "フロントビュー" @@ -1623,6 +1729,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "ガントリーの高さ" +msgctxt "@title:tab" +msgid "General" +msgstr "一般" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" @@ -1643,6 +1753,10 @@ msgctxt "@action" msgid "Get started" msgstr "はじめに" +msgctxt "@label" +msgid "Global" +msgstr "グローバル" + msgctxt "@title:tab" msgid "Global Settings" msgstr "グローバル設定" @@ -1691,6 +1805,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "接続されているすべてのプリンターを非表示にする" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "設定を非表示にする" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "この設定を非表示にする" @@ -1763,6 +1881,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "このパッケージを使用するには、Curaを再始動する必要があります" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "UltiMakerアカウント名を含める" + msgctxt "@label" msgid "Infill" msgstr "インフィル" @@ -1975,6 +2097,10 @@ msgctxt "@action" msgid "Learn more" msgstr "詳しく見る" +msgctxt "@action:button" +msgid "Learn more" +msgstr "詳しく見る" + msgctxt "@button" msgid "Learn more" msgstr "詳しく見る" @@ -2103,6 +2229,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "データファイルを送信する前に、プリンターとプリンターの構成設定にそのG-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbotプリントファイル" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriterが指定されたパスに保存できませんでした。" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriterはテキストモードをサポートしていません。" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "フィラメントを管理する..." @@ -2405,6 +2543,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "現在のフィルターでは、結果が見つかりません" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "具体的な値は設定されていません" + msgctxt "@label" msgid "No time estimation available" msgstr "時間予測がありません" @@ -2477,6 +2619,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "エクストルーダーの数" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "OS言語" @@ -2501,6 +2647,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "おっと!スライス処理中に予期しないエラーが発生しました。設定でデータ共有を無効にしていない場合は,分析用にクラッシュログを自動的に受信しますのでご安心ください。さらに支援を行うために,問題トラッカーでプロジェクトの詳細を共有することを検討してください。" + msgctxt "@action:button" msgid "Open" msgstr "開く" @@ -2529,10 +2679,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "プロジェクトファイルを開く" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Universal Cura Project(UCP)を開く" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Universal Cura Project(UCP)ファイルを開く" + msgctxt "@action:label" msgid "Open With" msgstr "開く" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "UCPとして開く" + msgctxt "@action:button" msgid "Open as project" msgstr "プロジェクトを開く" @@ -2629,7 +2791,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "クリップボードから貼り付け" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "一時停止" @@ -2691,7 +2852,9 @@ msgstr "このアプリケーションの許可において必要な権限を与 msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "プリンタが接続されているか確認し、以下を行います。\n- プリンタの電源が入っているか確認します。\n- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" +msgstr "プリンタが接続されているか確認し、以下を行います。" +"- プリンタの電源が入っているか確認します。" +"- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" msgctxt "@text" msgid "Please name your printer" @@ -2705,6 +2868,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "このプロファイルの名前を指定してください。" +msgctxt "@info" +msgid "Please provide a new name." +msgstr "新しい名前を入力してください。" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "プラグインライセンスをお読みになり、同意してください。" @@ -2715,7 +2882,10 @@ msgstr "造形物を取り出してください" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "設定を見直し、モデルが次の状態かどうかを確認してください。\n- 造形サイズに合っている\n- 有効なエクストルーダーに割り当てられている\n- すべてが修飾子メッシュとして設定されているわけではない" +msgstr "設定を見直し、モデルが次の状態かどうかを確認してください。" +"- 造形サイズに合っている" +"- 有効なエクストルーダーに割り当てられている" +"- すべてが修飾子メッシュとして設定されているわけではない" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2725,6 +2895,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "検証済みのUltiMaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください。" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "匿名でないデータの送信を許可するには,UltiMakerアカウントにサインインしてください。" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。" @@ -2809,6 +2983,14 @@ msgctxt "@action:button" msgid "Print" msgstr "プリント" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "印刷後" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "印刷前" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2927,6 +3109,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "プリンターの設定は、プロジェクトに保存されている設定に合わせて更新されます。" +msgctxt "@title:tab" +msgid "Printers" +msgstr "プリンター" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factoryからプリンターが追加されました:" @@ -3135,6 +3321,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "名を変える" +msgctxt "@title:window" +msgid "Rename" +msgstr "名前変更" + msgctxt "@title:window" msgid "Rename Profile" msgstr "プロファイル名を変える" @@ -3236,8 +3426,12 @@ msgid "Save Cura project" msgstr "Curaプロジェクトを保存する" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Curaプロジェクトとプリントファイルを保存する" +msgid "Save Cura project and .makerbot print file" +msgstr "Cura Projectと.makerbot印刷ファイルを保存する" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr " Cura Projectと.ufp印刷ファイルを保存する" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3263,6 +3457,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "新しいプロファイルを保存" +msgctxt "@action:button" +msgid "Save project" +msgstr "プロジェクトの保存" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".ummファイルをUSBメモリーに保存します。" @@ -3279,6 +3477,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "リムーバブルドライブ{0}に {1}として保存" +msgctxt "@info:title" +msgid "Saving" +msgstr "保存中" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存中" @@ -3359,6 +3561,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "クラッシュ報告をUltiMakerに送信する" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "登録したUltiMakerアカウント名とプロジェクト名を含むクラッシュレポートを,UltiMaker Sentryに送信します。実際のモデルデータは送信されません。" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "個人を特定できる情報やモデルデータを含まないクラッシュレポートを,UltiMakerに送信します。" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "エンジンクラッシュレポートを送信" + msgctxt "@action:button" msgid "Send report" msgstr "レポート送信" @@ -3403,6 +3617,14 @@ msgctxt "@label" msgid "Settings" msgstr "設定" +msgctxt "@title:tab" +msgid "Settings" +msgstr "設定" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "UCPファイルからロードされた設定" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" @@ -3471,6 +3693,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "スライスのクラッシュは自動的にUltimakerに報告されますか?明示的な許可がない限り,モデル,IPアドレス,その他の個人を特定できる情報が送信または保存されることはありません。" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?" @@ -3527,6 +3753,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "詳しいクラッシュ報告を表示する" +msgctxt "@action:button" +msgid "Show settings" +msgstr "設定を表示" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "プロジェクトを保存時にダイアログサマリーを表示する" @@ -3595,10 +3825,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "スライスに失敗しました" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "スライス中..." @@ -3607,13 +3833,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "スムージング" +msgctxt "@label" +msgid "Solid" +msgstr "固体" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "ソリッドビュー" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n表示されるようにクリックしてください。" +msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。" +"表示されるようにクリックしてください。" msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3629,7 +3860,8 @@ msgstr "%1で定義された一部の設定値が上書きされました msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。\nプロファイルマネージャーをクリックして開いてください。" +msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。" +"プロファイルマネージャーをクリックして開いてください。" msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3655,8 +3887,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "スポンサーCura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "スポンサーCura" @@ -3713,10 +3943,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "推奨される材料の設定" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "推奨されるプロフィールの設定" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "サマリーCuraプロジェクト" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "概要 - Universal Cura Project(UCP)を開く" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "概要 - Universal Cura Project" + msgctxt "@label" msgid "Support" msgstr "サポート" @@ -3834,6 +4080,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "バックアップが最大ファイルサイズを超えています。" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "バランスのとれたプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "ミリメートルでビルドプレートからベースの高さ。" @@ -3890,6 +4140,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "{0} は既に存在します。ファイルを上書きしますか?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" @@ -3949,7 +4203,10 @@ msgstr "ノズルが入ったエクストルーダー。" msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "プリントのインフィル材料のパターン:\n\n非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 \n\n応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。\n\n複数の方向に高い強度を必要とする機能的な3Dプリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" +msgstr "プリントのインフィル材料のパターン:" +"非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 " +"応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。" +"複数の方向に高い強度を必要とする機能的な3Dプリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4067,6 +4324,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "これはCura Universalのプロジェクトファイルです。Cura Project,またはCura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?" @@ -4114,7 +4375,8 @@ msgstr "このプロジェクトには、現在Curaにインストールされ msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "この設定にプロファイルと異なった値があります。\nプロファイルの値を戻すためにクリックしてください。" +msgstr "この設定にプロファイルと異なった値があります。" +"プロファイルの値を戻すためにクリックしてください。" msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4131,7 +4393,8 @@ msgstr "この設定は常に全てのエクストルーダーに共有されて msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。\n計算された値に変更するためにクリックを押してください。" +msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。" +"計算された値に変更するためにクリックを押してください。" msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4141,6 +4404,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "この設定はエクストルーダー固有の競合する値から取得します:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "この設定は,Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。ユーザーは自己責任で追加するように求められます。" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "この設定は,Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。ユーザーは自己責任で追加するように求められます。" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "このバージョンは、運用環境での使用を目的としたmのではありません。問題が発生した場合は、GitHubページでフルバージョン{self.getVersion()}を記載して報告してください。" @@ -4233,6 +4504,10 @@ msgctxt "@action:label" msgid "Type" msgstr "タイプ" +msgctxt "@label" +msgid "Type" +msgstr "タイプ" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USBプリンティング" @@ -4287,7 +4562,8 @@ msgstr "以下のローカルEnginePluginサーバーの実行可能ファイル msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "実行中のEnginePluginを強制終了できません:{self._plugin_id}\nアクセスが拒否されました。" +msgstr "実行中のEnginePluginを強制終了できません:{self._plugin_id}" +"アクセスが拒否されました。" msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4329,6 +4605,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "ファイルに書き込めません:{0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "利用不可" @@ -4349,6 +4629,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "ユニット" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Project" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Universal Cura Projectファイルは,位置データと選択した設定を保持したまま,さまざまな3Dプリンタで印刷することができます。エクスポートすると,ビルドプレート上に存在するすべてのモデルが,現在の位置,方向,スケールとともに含まれます。適切な印刷を保証するために,エクストルーダーごとまたはモデルごとにどの設定を含めるかを選択することもできます。" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "ユニバーサルビルドシステム設定" @@ -4465,6 +4753,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "ボロノイ図生成を含むユーティリティライブラリ" +msgctxt "@title:column" +msgid "Value" +msgstr "値" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factoryでプリンターを表示する" @@ -4513,6 +4805,10 @@ msgctxt "@button" msgid "Want more?" msgstr "詳しく知りたい?" +msgctxt "@info:title" +msgid "Warning" +msgstr "警告" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" @@ -4537,6 +4833,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "どのプリンターをセットアップしますか?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "どのタイプのカメラナビゲーションを使用する必要がありますか?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" @@ -4615,7 +4915,8 @@ msgstr "はい" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?" +msgstr "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。" +"続行してもよろしいですか?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4636,7 +4937,9 @@ msgstr "現在バックアップは存在しません。[今すぐバックア msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "一部のプロファイル設定がカスタマイズされています。\nこれらの変更された設定をプロファイルの切り替え後も維持しますか?\n変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" +msgstr "一部のプロファイル設定がカスタマイズされています。" +"これらの変更された設定をプロファイルの切り替え後も維持しますか?" +"変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4668,7 +4971,8 @@ msgstr "新しいプリンターがUltiMaker Curaに自動的に表示されま msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -4714,6 +5018,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "秒" + msgctxt "@info:status" msgid "today" msgstr "本日" @@ -4734,491 +5042,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}プラグインのダウンロードに失敗しました" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルのエクスポートをサポートします。" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Curaプロファイルライター" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" - -msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "レガシーCuraプロファイルリーダー" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFPライター" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5 から 4.0 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "バージョン4.7から4.8へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "バージョン4.9から4.10へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2から3.3にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7から3.0にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "バージョン4.11から4.12へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6から2.7にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "バージョン4.8から4.9へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3から4.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3から3.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4から4.5にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5から2.6にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1 から2.2にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2から4.3にバージョンをアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2から5.3にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2 から2.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4 から 3.5 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "バージョン4.13から5.0へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4から5.5へのバージョンアップ" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0から3.1にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3から5.4へのバージョンアップ" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" - -msgctxt "name" -msgid "Post Processing" -msgstr "後処理" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "スライスされたレイヤーデータのプレビューを提供します。" - -msgctxt "name" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Curaプロファイルを取り込むためのサポートを供給する。" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Curaプロファイルリーダー" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "各モデル設定を与える。" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "各モデル設定ツール" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" - -msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" - -msgctxt "name" -msgid "Support Eraser" -msgstr "サポート消去機能" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-codeファイルの読み込み、表示を許可する。" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-codeリーダー" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura バックアップ" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" - -msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMakerプリンターのアクション" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" - -msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" +msgstr "UltiMakerネットワークプリンタへのネットワーク接続を管理します。" msgctxt "name" msgid "UltiMaker Network Connection" msgstr "Ultimakerネットワーク接続" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "プリンターの設定アクション" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "モデルファイルを読み込むためのサポートを供給します。" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimeshリーダー" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" - -msgctxt "name" -msgid "Marketplace" -msgstr "マーケットプレース" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" - -msgctxt "name" -msgid "Image Reader" -msgstr "画像リーダー" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "ファームウェアアップデーター" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Curaエンジンバックエンド" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "ファームウェアアップデートをチェックする。" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "ファームウェアアップデートチェッカー" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "ファイルにG-codeを書き込みます。" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-codeライター" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" - -msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MFリーダー" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" - -msgctxt "name" -msgid "USB printing" -msgstr "USBプリンティング" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMFファイルの読込みをサポートしています。" - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMFリーダー" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" @@ -5235,6 +5066,374 @@ msgctxt "name" msgid "Solid View" msgstr "ソリッドビュー" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MFリーダー" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" + +msgctxt "name" +msgid "USB printing" +msgstr "USBプリンティング" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "ファームウェアアップデートをチェックする。" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "ファームウェアアップデートチェッカー" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" + +msgctxt "name" +msgid "Marketplace" +msgstr "マーケットプレース" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura バックアップ" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "プリンターの設定アクション" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5から2.6にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "バージョン4.7から4.8へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4から4.5にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0から3.1にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "バージョン4.11から4.12へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6から2.7にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0から4.6.2へのバージョン更新" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3から3.4にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "バージョン4.8から4.9へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "バージョン4.5から4.6へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2から4.3にバージョンをアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2から3.3にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3から4.4にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "構成をCura 5.6からCura 5.7にアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6から5.7へのバージョンアップ" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1 から2.2にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3から5.4へのバージョンアップ" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "バージョン4.9から4.10へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7から3.0にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5 から 4.0 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2から5.3にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "バージョン4.13から5.0へのアップグレード" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4 から 3.5 にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2 から2.4にバージョンアップグレート" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "構成をCura 4.6.2からCura 4.7に更新します。" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2から4.7へのバージョン更新" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4から5.5へのバージョンアップ" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-codeファイルの読み込み、表示を許可する。" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-codeリーダー" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" + +msgctxt "name" +msgid "Slice info" +msgstr "スライスインフォメーション" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" + +msgctxt "name" +msgid "Support Eraser" +msgstr "サポート消去機能" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" + +msgctxt "name" +msgid "Model Checker" +msgstr "モデルチェッカー" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Curaで準備ステージを提供します。" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "ステージの準備" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "スライスされたレイヤーデータのプレビューを提供します。" + +msgctxt "name" +msgid "Simulation View" +msgstr "シミュレーションビュー" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMFファイルの読込みをサポートしています。" + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMFリーダー" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "透視ビューイング。" + +msgctxt "name" +msgid "X-Ray View" +msgstr "透視ビュー" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "レガシーCuraプロファイルリーダー" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" + +msgctxt "name" +msgid "Post Processing" +msgstr "後処理" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" @@ -5244,12 +5443,20 @@ msgid "Sentry Logger" msgstr "監視ロガー" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBotフォーマットパッケージを書き込むためのサポートを提供します。" msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" +msgid "Makerbot Printfile Writer" +msgstr "Makerbotプリントファイルライター" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Curaプロファイルを取り込むためのサポートを供給する。" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Curaプロファイルリーダー" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5260,12 +5467,20 @@ msgid "UFP Reader" msgstr "UFP リーダー" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" +msgid "Image Reader" +msgstr "画像リーダー" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Curaエンジンバックエンド" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5275,85 +5490,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "圧縮G-codeライター" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMakerプリンターのアクション" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Curaでプレビューステージを提供します。" + +msgctxt "name" +msgid "Preview Stage" +msgstr "プレビューステージ" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Curaプロファイルを書き出すためのサポートを供給する。" -msgctxt "@info:title" -msgid "Error" -msgstr "エラー" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Curaプロファイルライター" -msgctxt "@action:button" -msgid "Cancel" -msgstr "キャンセル" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3Dファイルを読むこむためのサポートを供給する。" -msgctxt "@title:tab" -msgid "Settings" -msgstr "設定" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3Dリーダー" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "{0} は既に存在します。ファイルを上書きしますか?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "モデルファイルを読み込むためのサポートを供給します。" -msgctxt "@action:button" -msgid "Learn more" -msgstr "詳しく見る" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimeshリーダー" -msgctxt "@title:tab" -msgid "General" -msgstr "一般" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Curaでモニターステージを提供します。" -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1を取り外しますか?この作業はやり直しが効きません!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "モニターステージ" -msgctxt "@label" -msgid "Type" -msgstr "タイプ" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "各モデル設定を与える。" -msgctxt "@info:title" -msgid "Saving" -msgstr "保存中" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "各モデル設定ツール" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "すでに存在するファイルです" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "すべてのサポートのタイプ ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "フィラメントプロファイル" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0}を保存できませんでした: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MFおよびUCPファイルの書き込みのサポートを提供します。" -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" +msgctxt "name" +msgid "3MF Writer" +msgstr "3MFリーダー" -msgctxt "@title:tab" -msgid "Printers" -msgstr "プリンター" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" -msgctxt "@info:title" -msgid "File Saved" -msgstr "ファイル保存" +msgctxt "name" +msgid "UFP Writer" +msgstr "UFPライター" -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "モデルを取り除きました" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "ファイルにG-codeを書き込みます。" -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "全てのファイル" - -msgctxt "@label" -msgid "Balanced" -msgstr "バランス" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "バランスのとれたプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" +msgctxt "name" +msgid "G-code Writer" +msgstr "G-codeライター" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index f7af60bb67..dc3115e094 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "エクストルーダー終了Gコードの時間" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "このエクストルーダーから切り替えるときに,終了Gコードを実行するのにかかる時間。" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "エクストルーダーのエンドポジションの絶対値" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "エクストルーダーエンド位置Y" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "エクストルーダーを切った際のY座標の最終位置。" @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "エクストルーダー開始Gコードの時間" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "このエクストルーダーに切り替えるときに,開始Gコードを実行するのにかかる時間。" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "エクストルーダーのスタート位置の絶対値" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" + +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "エクストルーダー スタート位置X" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "エクストルーダースタート位置Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "エクストルーダーのY座標のスタート位置。" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Xノズルオフセット" @@ -131,51 +196,3 @@ msgstr "Yノズルオフセット" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "ノズルのY軸のオフセット。" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" - -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 60c41dcff3..0306054c01 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" + msgctxt "machine_name label" msgid "Machine Type" msgstr "プリンターのタイプ" @@ -34,7 +42,8 @@ msgstr "G-Codeの開始" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "最初に実行するG-codeコマンドは、\nで区切ります。" +msgstr "最初に実行するG-codeコマンドは、" +"で区切ります。" msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "G-codeの終了" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "最後に実行するG-codeコマンドは、\nで区切ります。" +msgstr "最後に実行するG-codeコマンドは、" +"で区切ります。" msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "マテリアルのGUID。これは自動的に設定されます。" +msgctxt "material_type label" +msgid "Material Type" +msgstr "材料の種類" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "使用される材料の種類。" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "材料のブランド" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "使用されている材料のブランドです。" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "ビルドプレート加熱待ち時間" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "エクストルーダーのオフセット" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "エクストルーダーの絶対位置" @@ -966,7 +1024,8 @@ msgstr "ZシームX" msgctxt "z_seam_x description" msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各印刷を開始するX座\n標の位置。" +msgstr "レイヤー内の各印刷を開始するX座" +"標の位置。" msgctxt "z_seam_y label" msgid "Z Seam Y" @@ -1558,7 +1617,8 @@ msgstr "外側インフィル壁の数" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\nこの機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" +msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。" +"この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1622,7 +1682,8 @@ msgstr "インフィル優先" msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\nはじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" +msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します" +"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" msgctxt "min_infill_area label" msgid "Minimum Infill Area" @@ -1696,6 +1757,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" + +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "デフォルト印刷温度" @@ -1725,8 +1794,8 @@ msgid "Printing Temperature Initial Layer" msgstr "初期レイヤー印刷温度" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" +msgid "The temperature used for printing the first layer." +msgstr "最初の層を印刷するために使用される温度です。" msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2037,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "最外壁以外の壁のフロー補正。" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "上面最外壁の流れ" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "最外の壁ラインにおける流量補正。" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "上面内壁の流れ" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "上面/下面フロー" @@ -2136,6 +2221,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "上面の最外壁速度" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "上面の最外壁が印刷される速度" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "上面内壁速度" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "上面内壁が印刷される速度" + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "最上面速度" @@ -2320,6 +2421,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "内側のウォールがが出力される際のスピード。" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "上面外壁加速度" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "上面の最外壁が印刷される際の加速度" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "上面内壁加速度" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "上面内壁が印刷される際の加速度" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "最上面加速度" @@ -2480,6 +2597,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "上面内壁の最大瞬間速度変化" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "上面内壁が印刷される際の最大瞬間速度変化。" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "上面最外壁の最大瞬間速度変化" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "最上面ジャーク" @@ -3257,8 +3390,8 @@ msgid "Support Z Distance" msgstr "サポートZ距離" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "サポート構造の上部/下部からプリントまでの距離です。このギャップは、モデル印刷後にサポートを取り除くためのクリアランスを提供します。モデルの下にある最上層のサポート層は、通常のレイヤーの一部分かもしれません。" msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3406,8 @@ msgid "Support Bottom Distance" msgstr "サポート底部距離" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "印刷物とサポート材底部までの距離。" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "プリントからサポートの底までの距離。これは次のレイヤーの高さに切り上げられることに注意してください。" msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3561,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "サポートインタフェース解像度" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "サポートインタフェース密度" @@ -3724,6 +3849,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "プライムボルブを有効にする" @@ -3732,6 +3865,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "ビルドプレート接着タイプ" @@ -3818,7 +3967,8 @@ msgstr "スカート距離" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "スカートと印刷の最初の層の間の水平距離。\nこれは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" +msgstr "スカートと印刷の最初の層の間の水平距離。" +"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4010,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "外側にブリムのみ印刷" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "ブリムの位置" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "モデルの外側,内側,またはその両方にブリムを印刷します。モデルによっては,これによりベッドの適切な接着を確保しながら,後で取り外す必要があるブリムの量を減らすことができます。" + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "外側のみ" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "内側のみ" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "どこにでも" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "内側縁がマージンに接触しないようにする" +msgid "Brim Avoid Margin" +msgstr "ブリムを避けるためのマージン" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "モデルの周囲のブリムが,他のモデルの望ましくない場所に接触する可能性があります。これにより,この距離内のすべてのブリムがブリムのないモデルから削除されます。" msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4054,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "ラフトベースの追加マージン" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトベースが有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "ラフトの中央の追加マージン" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトの中央が有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "ラフト上部の追加マージン" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトの上部が有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "ラフト内側コーナーの削除" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "ラフトベースの内側の角を削除" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "ラフトベースから内側の角を取り除き,ラフトを凸状にします。" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "ラフト中央の内側の角を削除" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "ラフトの中央から内側の角を取り除き,ラフトを凸状にします。" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "ラフト上部の内側の角を削除" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "ラフトの上部から内側の角を取り除き,ラフトを凸状にします。" + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "ラフト補整" @@ -3900,6 +4118,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "ラフトベースのスムージング" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は,ラフトベースのアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "ラフト中央のスムージング" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は,ラフトの中央のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "ラフト上部のスムージング" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は,ラフト上部の輪郭の内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "ラフト間のラップ" @@ -3913,40 +4155,32 @@ msgid "Initial Layer Z Overlap" msgstr "初期レイヤーZのオーバーラップ" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "エアギャップで失われたフィラメントを補うために,モデルの1つ目と2つ目の層をZ方向にオーバーラップさせます。最初のモデルレイヤーより上のすべてのモデルは,この量だけ下にシフトされます。\nこの設定により,2つ目のレイヤーが最初のレイヤーの下に印刷される場合があることに注意してください。これは意図された動作です。" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "ラフト最上層" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "ラフトベース厚さ" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "ラフト最上層厚さ" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "ラフトベースライン幅" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "トップラフト層の層厚。" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "ラフト最上ライン幅" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "ラフトベースラインスペース" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "ラフト最上面スペース" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4214,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "ラフトベース厚さ" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "ラフト最上層" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "ラフトベースライン幅" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "ラフト最上層厚さ" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "トップラフト層の層厚。" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "ラフトベースラインスペース" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "ラフト最上ライン幅" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "ラフト最上面スペース" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "単一のラフト上面の表面の順序" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "ラフト上面のラインを,常に単一方向の隣接するラインと重なる順序で印刷します。これにより,印刷に少し時間がかかりますが,表面の見た目がより均一になり,これはモデルの底面にも表示されます。" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "ラフトの壁の数" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "ラフトの線形パターンの周囲に印刷する輪郭の数。" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "ラフトベースウォール数" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "ラフト中央の壁の数" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "ラフトの中間層の線形パターンの周囲に印刷する輪郭の数。" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "ラフト上部の壁の数" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "ラフトの最上層の線形パターンの周囲に印刷する輪郭の数。" msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4294,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "ラフトが印刷される速度。" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "ラフト上層印刷速度" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "ラフトベース印刷速度" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4310,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "ラフトベース印刷速度" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "ラフト上層印刷速度" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4326,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "ラフト印刷時の加速度。" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "ラフト上層層印刷加速度" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "ラフトベース印刷加速度" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "ラフトのトップ印刷時の加速度。" +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "ラフトの底面印刷時の加速度。" msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4342,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "ラフトの中間層印刷時の加速度。" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "ラフトベース印刷加速度" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "ラフト上層層印刷加速度" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "ラフトの底面印刷時の加速度。" +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "ラフトのトップ印刷時の加速度。" msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4358,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "ラフトが印刷時のジャーク。" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "ラフト上層印刷ジャーク" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "ラフトベース印刷ジャーク" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "トップラフト層印刷時のジャーク。" +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "ベースラフト層印刷時のジャーク。" msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4374,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "ミドルラフト層印刷時のジャーク。" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "ラフトベース印刷ジャーク" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "ラフト上層印刷ジャーク" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "ベースラフト層印刷時のジャーク。" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "トップラフト層印刷時のジャーク。" msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4390,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "ラフト印刷時のファンの速度。" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "ラフト上層ファン速度" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "ラフトベースファン速度" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "トップラフト印刷時のファンの速度。" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "ベースラフト層印刷時のファン速度。" msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4406,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "ミドルラフト印刷時のファンの速度。" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "ラフトベースファン速度" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "ラフト上層ファン速度" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "ベースラフト層印刷時のファン速度。" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "トップラフト印刷時のファンの速度。" msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4430,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "プライムタワーのタイプ" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "プライムタワーの生成方法:
    • 通常:二次材料が,プライミングされるバケットを作成します
    • インターリーブド:プライムタワーをできるだけまばらに作成します。これにより時間とフィラメントが節約されますが,使用できる材料が互いに接着している場合にのみ可能です。
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "通常" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "インターリーブド" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "プライムタワーのサイズ" @@ -4164,6 +4462,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "プライムタワーの各層の最小容積。" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "プライムタワーの最大ブリッジ距離" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "空中で印刷できるブランチの最大長。" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "プライムタワーX位置" @@ -4189,12 +4495,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "プライムタワーブリム" +msgid "Prime Tower Base" +msgstr "プライムタワーベース" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "プライムタワーベースのサイズ" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "プライムタワーブリム/ベースの幅。ベースを大きくするとビルドプレートへの接着が強化されますが、有効な印刷エリアも減少します。" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "プライムタワーベースの高さ" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "プライムタワーベースの高さです。この値を増やすと、ベースが広くなるためプライムタワーがより頑丈になります。この設定が低すぎると、プライムタワーは頑丈なベースを持たなくなります。" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "プライムタワーベースの傾斜" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "プライムタワーベースの傾斜に使用される倍率係数です。この値を増やすと、ベースが細くなります。減らすと、ベースが厚くなります。" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "プライムタワーラフトライン間隔" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "プライムタワーラフト層の独自のラフトライン間の距離です。間隔が広いと、ラフトをビルドプレートから簡単に取り除くことができます。" msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4758,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "1つずつ" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動で印刷順序を設定する" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "オブジェクトリストを並べ替えて,印刷順序を手動で設定できます。リストの最初のオブジェクトが最初に印刷されます。" + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "インフィルメッシュ" @@ -5228,21 +5574,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "ラフト内側コーナーの削除" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外壁をグループ化" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "ラフトベースウォール数" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "印刷プロセスレポート" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "設定されたしきい値を超えたイベントのレポート" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "印刷プロセスレポートを有効にする" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "印刷プロセスのレポートを有効にして,問題の検出の可能性があるしきい値を設定します。" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "フロー警告" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "検出するフロー警告の制限。" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "フロー制限" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "検出するフロー異常の制限。" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "印刷温度警告" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "検出するプリント温度警告の制限。" + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "印刷温度制限" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "検出する印刷温度異常の制限。" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "ビルドボリューム温度警告" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "検出するビルドボリューム温度の制限警告。" + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "ビルドボリューム温度制限" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "検出するビルドボリューム温度の異常の制限。" msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,190 +5694,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "段階的なフローが有効" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "段階的なフローの最大加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "フローを段階的に変化させるための最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初期層の最大フロー加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第1層のフローを段階的に変化させるための最低速度" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "段階的なフローの離散化ステップのサイズ" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "段階的なフローの変化におけるステップごとの時間" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "フロー期間をリセット" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" - -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" - -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "外壁をグループ化" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "上面最外壁の流れ" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "最外の壁ラインにおける流量補正。" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "上面内壁の流れ" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "上面の最外壁速度" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "上面の最外壁が印刷される速度" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "上面内壁速度" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "上面内壁が印刷される速度" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "上面外壁加速度" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "上面の最外壁が印刷される際の加速度" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "上面内壁加速度" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "上面内壁が印刷される際の加速度" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "上面内壁の最大瞬間速度変化" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "上面内壁が印刷される際の最大瞬間速度変化。" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "上面最外壁の最大瞬間速度変化" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..20013f0ca6 --- /dev/null +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "段階的なフローが有効" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "段階的なフローの変化を有効にします。有効にすると,フローは目標フローまで段階的に増減します。これは,押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "段階的なフローの最大加速度" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "フローを段階的に変化させるための最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初期層の最大フロー加速度" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第1層のフローを段階的に変化させるための最低速度" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "段階的なフローの離散化ステップのサイズ" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "段階的なフローの変化におけるステップごとの継続時間" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "フローの継続時間をリセット" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "この値より長い移動の場合,素材フローはパスの目標フローにリセットされます。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 02e9916f4d..635a7b1c1e 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -114,6 +114,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "프로젝트 저장(&S)..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&범용 Cura 프로젝트 저장..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "설정" @@ -136,7 +140,9 @@ msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재 msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- 재료 설정 및 Marketplace 플러그인 추가\n- 재료 설정과 플러그인 백업 및 동기화\n- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" +msgstr "- 재료 설정 및 Marketplace 플러그인 추가" +"- 재료 설정과 플러그인 백업 및 동기화" +"- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" msgctxt "@heading" msgid "-- incomplete --" @@ -196,15 +202,24 @@ msgstr "
  • OpenGL 버전: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

    \n

    "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

    \n " +msgstr "

    치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

    " +"

    "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>\n                    

    시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>\n                    

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>\n                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>\n " +msgstr "

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>" +"                    

    시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>" +"                    

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>" +"                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>" +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

    \n

    {model_names}

    \n

    인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

    \n

    인쇄 품질 가이드 보기

    " +msgstr "

    하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

    " +"

    {model_names}

    " +"

    인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

    " +"

    인쇄 품질 가이드 보기

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -215,6 +230,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "A cloud connection is not available for some printers" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "밀도가 높고 견고한 부품이지만 출력 시간이 더 느립니다. 기능적인 부품에 적합합니다." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다." @@ -387,6 +406,14 @@ msgctxt "@button" msgid "Agree" msgstr "동의" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "모든 파일 (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "지원되는 모든 유형 ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "익명 데이터 전송 허용" @@ -427,10 +454,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "익명" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "익명 충돌 보고" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "애플리케이션 프레임 워크" +msgctxt "@title:column" +msgid "Applies on" +msgstr "적용 대상:" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "익스트루더 오프셋을 GCode에 적용" @@ -471,6 +506,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." @@ -483,6 +522,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "모든 모델을 그리드에 정렬하기" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "배열 선택" + msgctxt "@label:button" msgid "Ask a question" msgstr "질문하기" @@ -543,6 +586,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "백업" +msgctxt "@label" +msgid "Balanced" +msgstr "균형" + msgctxt "@action:label" msgid "Base (mm)" msgstr "바닥 (mm)" @@ -599,6 +646,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "계산된" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "카메라 탐색:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "카메라 렌더링:" @@ -631,6 +682,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFP 파일에 쓸 수 없음:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "취소" + msgctxt "@button" msgid "Cancel" msgstr "취소" @@ -807,6 +862,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "직경 변경 확인" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "제거 확인" + msgctxt "@action:button" msgid "Connect" msgstr "연결" @@ -891,6 +950,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "서버의 응답을 해석할 수 없습니다." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "GCodeWriter 플러그인을 불러올 수 없습니다. 플러그인을 다시 활성화해보세요." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "마켓플레이스에 도달할 수 없습니다." @@ -903,6 +966,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "재료 아카이브를 {}에 저장할 수 없음:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}: {1} 에 저장할 수 없습니다" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" @@ -913,15 +980,18 @@ msgstr "데이터를 프린터로 업로드할 수 없음." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n프로세스를 실행할 권한이 없습니다." +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" +"프로세스를 실행할 권한이 없습니다." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" +"운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n리소스를 일시적으로 사용할 수 없습니다" +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" +"리소스를 일시적으로 사용할 수 없습니다" msgctxt "@title:window" msgid "Crash Report" @@ -997,7 +1067,8 @@ msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.\nCura는 다음의 오픈 소스 프로젝트를 사용합니다:" +msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다." +"Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" msgctxt "@label" msgid "Cura language" @@ -1087,10 +1158,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "기본값" -msgctxt "@label" -msgid "Default" -msgstr "기본값" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 " @@ -1239,6 +1306,10 @@ msgctxt "@label" msgid "Draft" msgstr "초안" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "모든 모델을 빌드 플레이트에 놓기" + msgctxt "@action:button" msgid "Duplicate" msgstr "복제" @@ -1319,6 +1390,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "프린터의 IP 주소를 입력하십시오." +msgctxt "@info:title" +msgid "Error" +msgstr "오류" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "오류 추적" @@ -1355,6 +1430,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "내보내기 선택..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "범용 Cura 프로젝트 내보내기" + msgctxt "@button" msgid "Export material archive" msgstr "재료 아카이브 내보내기" @@ -1383,10 +1462,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "익스트루더 종료 Gcode" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "압출기 종료 G-코드 지속 시간" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "익스트루더 시작 Gcode" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "압출기 시작 G-코드 지속 시간" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "압출기 {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "익스트루더 비활성화됨" @@ -1447,6 +1538,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "재료 아카이브를 저장하는 데 실패함" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "특정 클라우드 프린터에 쓰기 실패: {0}이(가) 원격 클러스터에 없음" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "즐겨찾기" @@ -1463,6 +1558,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "필라멘트 무게" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "파일이 이미 있습니다" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "파일이 저장됨" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." @@ -1571,6 +1674,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" +msgid "FreeCAD trackpad" +msgstr "FreeCAD 트랙패드" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "앞에서 보기" @@ -1623,6 +1729,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "갠트리 높이" +msgctxt "@title:tab" +msgid "General" +msgstr "일반" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다." @@ -1643,6 +1753,10 @@ msgctxt "@action" msgid "Get started" msgstr "시작하기" +msgctxt "@label" +msgid "Global" +msgstr "전체" + msgctxt "@title:tab" msgid "Global Settings" msgstr "전역 설정" @@ -1691,6 +1805,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "연결된 프린터 모두 숨기기" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "설정 숨기기" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "이 설정 숨기기" @@ -1763,6 +1881,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "패키지를 사용하려면 Cura를 재시작해야 합니다." +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "UltiMaker 계정 이름 포함" + msgctxt "@label" msgid "Infill" msgstr "내부채움" @@ -1975,6 +2097,10 @@ msgctxt "@action" msgid "Learn more" msgstr "자세히 알아보기" +msgctxt "@action:button" +msgid "Learn more" +msgstr "자세히 알아보기" + msgctxt "@button" msgid "Learn more" msgstr "자세히 알아보기" @@ -2103,6 +2229,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 적합한 지 확인하십시오. g-코드가 정확하지 않을 수 있습니다." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot 프린트파일" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter가 지정된 경로에 저장할 수 없습니다." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter는 텍스트 모드를 지원하지 않습니다." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "재료 관리..." @@ -2405,6 +2543,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "현재 필터로는 결과를 찾을 수 없음" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "특정 값이 설정되지 않았습니다" + msgctxt "@label" msgid "No time estimation available" msgstr "시간 추산 이용 불가" @@ -2477,6 +2619,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "익스트루더의 수" +msgctxt "@action:button" +msgid "OK" +msgstr "확인" + msgctxt "@label" msgid "OS language" msgstr "OS 언어" @@ -2501,6 +2647,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "죄송합니다. 슬라이싱 과정 도중 예상치 못한 오류가 발생했습니다. 다만, 기본 설정에서 데이터 공유를 비활성화하지 않았다면 분석을 위한 충돌 로그가 자동으로 수신되니 안심하세요. 도움을 주시려면 문제 추적기에 프로젝트 세부 정보를 공유해 주세요." + msgctxt "@action:button" msgid "Open" msgstr "열기" @@ -2529,10 +2679,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "프로젝트 파일 열기" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "범용 Cura 프로젝트(UCP) 열기" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "범용 Cura 프로젝트(UCP) 파일 열기" + msgctxt "@action:label" msgid "Open With" msgstr "다음으로 열기" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "UCP로 열기" + msgctxt "@action:button" msgid "Open as project" msgstr "프로젝트로 열기" @@ -2629,7 +2791,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "클립보드에서 붙여넣기" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "중지" @@ -2691,7 +2852,8 @@ msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하 msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." +msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오." +"- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." msgctxt "@text" msgid "Please name your printer" @@ -2705,6 +2867,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "이 프로파일에 대한 이름을 제공하십시오." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "새로운 이름을 입력해주세요." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "플러그인 라이센스를 읽고 동의하십시오." @@ -2715,7 +2881,10 @@ msgstr "프린트물을 제거하십시오" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n- 출력 사이즈 내에 맞춤화됨\n- 활성화된 익스트루더로 할당됨\n- 수정자 메쉬로 전체 설정되지 않음" +msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오." +"- 출력 사이즈 내에 맞춤화됨" +"- 활성화된 익스트루더로 할당됨" +"- 수정자 메쉬로 전체 설정되지 않음" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2725,6 +2894,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "UltiMaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오." +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "비익명 데이터 전송을 허용하려면 UltiMaker 계정에 로그인해 주세요." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오." @@ -2809,6 +2982,14 @@ msgctxt "@action:button" msgid "Print" msgstr "프린트" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "인쇄 후" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "인쇄 전" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2927,6 +3108,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "프린터 설정은 프로젝트에 저장된 설정과 일치하도록 업데이트됩니다." +msgctxt "@title:tab" +msgid "Printers" +msgstr "프린터" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factory에서 프린터 추가:" @@ -3135,6 +3320,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "이름 바꾸기" +msgctxt "@title:window" +msgid "Rename" +msgstr "이름 변경" + msgctxt "@title:window" msgid "Rename Profile" msgstr "프로파일 이름 바꾸기" @@ -3236,8 +3425,12 @@ msgid "Save Cura project" msgstr "Cura 프로젝트 저장하기" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura 프로젝트 저장하고 파일 프린팅하기" +msgid "Save Cura project and .makerbot print file" +msgstr "Cura 프로젝트 및 .makerbot 출력 파일 저장" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Cura 프로젝트 및 .ufp 출력 파일 저장" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3263,6 +3456,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "새 프로필 저장" +msgctxt "@action:button" +msgid "Save project" +msgstr "프로젝트 저장" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".umm 파일을 USB 스틱에 저장합니다." @@ -3279,6 +3476,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." +msgctxt "@info:title" +msgid "Saving" +msgstr "저장" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" @@ -3359,6 +3560,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "충돌 보고서를 UltiMaker에 보내기" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "등록된 UltiMaker 계정 이름 및 프로젝트 이름을 포함한 충돌 보고를 UltiMaker Sentry에 전송합니다. 실제 모델 데이터는 전송되지 않습니다." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "개인 식별 정보 또는 모델 데이터를 제외한 충돌 보고를 UltiMaker에 전송합니다." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "엔진 충돌 보고 전송" + msgctxt "@action:button" msgid "Send report" msgstr "보고서 전송" @@ -3403,6 +3616,14 @@ msgctxt "@label" msgid "Settings" msgstr "설정" +msgctxt "@title:tab" +msgid "Settings" +msgstr "설정" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "UCP 파일에서 불러온 설정" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" @@ -3471,6 +3692,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "슬라이싱 충돌이 발생하면 Ultimaker에 자동으로 보고해야 하나요? 사용자가 명시적으로 권한을 부여하지 않는 한 모델, IP 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?" @@ -3527,6 +3752,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "충돌 리포트 보기" +msgctxt "@action:button" +msgid "Show settings" +msgstr "설정 표시" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "프로젝트 저장시 요약 대화 상자 표시" @@ -3595,10 +3824,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "슬라이싱 실패" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "예기치 않은 오류로 인해 슬라이싱에 실패했습니다. 이슈 트래커에 버그를 보고하는 것을 고려하십시오." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "슬라이싱..." @@ -3607,13 +3832,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "스무딩(smoothing)" +msgctxt "@label" +msgid "Solid" +msgstr "솔리드" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "솔리드 뷰" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n\n이 설정을 표시하려면 클릭하십시오." +msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다." +"이 설정을 표시하려면 클릭하십시오." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3629,7 +3859,8 @@ msgstr "%1에 정의된 일부 설정 값이 재정의되었습니다." msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n\n프로파일 매니저를 열려면 클릭하십시오." +msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다." +"프로파일 매니저를 열려면 클릭하십시오." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3655,8 +3886,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "스폰서 Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "스폰서 Cura" @@ -3713,10 +3942,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "추천 재료 설정" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "추천 프로필 설정" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "요약 - Cura 프로젝트" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "요약 - 범용 Cura 프로젝트(UCP) 열기" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "요약 - 범용 Cura 프로젝트" + msgctxt "@label" msgid "Support" msgstr "서포트" @@ -3834,6 +4079,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "백업이 최대 파일 크기를 초과했습니다." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "균형 프로파일은 생산성, 표면 품질, 기계적 특성 및 치수 정확도 사이의 균형을 찾기 위해 설계되었습니다." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." @@ -3890,6 +4139,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." @@ -3949,7 +4202,10 @@ msgstr "이 익스트루더에 삽입 된 노즐." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "프린트의 인필 재료 패턴:\n\n비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다.\n\n많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다.\n\n여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." +msgstr "프린트의 인필 재료 패턴:" +"비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다." +"많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다." +"여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4067,6 +4323,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Cura 범용 프로젝트 파일입니다. Cura 프로젝트 또는 Cura 범용 프로젝트로 열거나 파일에서 모델을 가져오시겠습니까?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "이 파일은 Cura 프로젝트 파일입니다. 프로젝트로 열거나 모델을 가져 오시겠습니까?" @@ -4114,7 +4374,8 @@ msgstr "이 프로젝트에는 현재 Cura에 설치되지 않은 재료 또는 msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "이 설정에는 프로파일과 다른 값이 있습니다.\n\n프로파일 값을 복원하려면 클릭하십시오." +msgstr "이 설정에는 프로파일과 다른 값이 있습니다." +"프로파일 값을 복원하려면 클릭하십시오." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4131,7 +4392,8 @@ msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n\n계산 된 값을 복원하려면 클릭하십시오." +msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다." +"계산 된 값을 복원하려면 클릭하십시오." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4141,6 +4403,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "이 설정은 범용 Cura 프로젝트로 내보내는 동안 제대로 작동하지 않을 수 있으며, 사용자 책임하에 추가해야 합니다." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "이 설정은 범용 Cura 프로젝트로 내보내는 동안 제대로 작동하지 않을 수 있으며, 사용자 책임하에 추가해야 합니다." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "이 버전은 프로덕션용이 아닙니다. 문제가 발생하면 정식 버전 {self.getVersion()}을 언급하며 GitHub 페이지에 보고해 주세요." @@ -4233,6 +4503,10 @@ msgctxt "@action:label" msgid "Type" msgstr "유형" +msgctxt "@label" +msgid "Type" +msgstr "유형" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 프린팅" @@ -4287,7 +4561,8 @@ msgstr "{self._plugin_id}에 대한 로컬 EnginePlugin 서버 실행 파일을 msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}\n접속이 거부되었습니다." +msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}" +"접속이 거부되었습니다." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4329,6 +4604,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "파일에 쓰기 불가: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "사용불가" @@ -4349,6 +4628,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "단위" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "범용 Cura 프로젝트" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "범용 Cura 프로젝트 파일은 위치 데이터 및 선택된 설정을 유지한 채 여러 3D 프린터에서 출력할 수 있습니다. 파일을 내보낼 때 빌드 플레이트의 모든 모델이 현재 위치, 방향, 크기와 함께 포함됩니다. 적절한 출력을 위해 포함할 압출기별 또는 모델별 설정을 선택할 수도 있습니다." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "범용 빌드 시스템 설정" @@ -4465,6 +4752,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리" +msgctxt "@title:column" +msgid "Value" +msgstr "값" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factory에서 프린터 보기" @@ -4513,6 +4804,10 @@ msgctxt "@button" msgid "Want more?" msgstr "무엇을 더 하시겠습니까?" +msgctxt "@info:title" +msgid "Warning" +msgstr "경고" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오." @@ -4537,6 +4832,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "어떤 프린터를 설정하시겠습니까?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "어떤 유형의 카메라 탐색을 사용해야 하나요?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" @@ -4615,7 +4914,8 @@ msgstr "예" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n정말로 계속하시겠습니까?" +msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. " +"정말로 계속하시겠습니까?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4636,7 +4936,9 @@ msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "일부 프로파일 설정을 사용자 정의했습니다.\n프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." +msgstr "일부 프로파일 설정을 사용자 정의했습니다." +"프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?" +"또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4668,7 +4970,8 @@ msgstr "새 프린터가 Cura에 자동으로 나타납니다." msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -4714,6 +5017,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "오늘" @@ -4734,491 +5041,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}개의 플러그인을 다운로드하지 못했습니다" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로필 내보내기를 지원합니다." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 프로파일 작성자" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." - -msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "레거시 Cura 프로파일 리더" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 작성자" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "버전 업그레이드 3.5에서 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.1에서 4.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7에서 4.8로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9에서 4.10으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2에서 3.3으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7에서 3.0으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11에서 4.12로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6에서 2.7으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8에서 4.9로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3에서 4.4로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "버전 업그레이드 3.3에서 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4에서 4.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5에서 2.6으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1에서 2.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2에서 4.3로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2에서 5.3으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "버전 업그레이드 4.0에서 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2에서 2.4로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4에서 3.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13에서 5.0으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4에서 5.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0에서 3.1로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2에서 4.7로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3에서 5.4로 버전 업그레이드" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" - -msgctxt "name" -msgid "Post Processing" -msgstr "후처리" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." - -msgctxt "name" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 프로파일 리더" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "모델 별 설정을 제공합니다." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "모델 별 설정 도구" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." - -msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" - -msgctxt "name" -msgid "Support Eraser" -msgstr "서포트 지우개" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-코드 리더" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 백업" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "이동식 드라이브를 제공합니다." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "이동식 드라이브 출력 장치 플러그인" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." - -msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 기기 동작" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." - -msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." +msgstr "UltiMaker 네트워크 프린터에 대한 네트워크 연결을 관리합니다." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "UltiMaker 네트워크 연결" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "컴퓨터 설정 작업" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "모델 파일 읽기 기능을 제공합니다." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 리더" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." - -msgctxt "name" -msgid "Marketplace" -msgstr "마켓플레이스" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." - -msgctxt "name" -msgid "Image Reader" -msgstr "이미지 리더" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "펌웨어 업데이터" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 백엔드" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "UltiMaker 디지털 라이브러리" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "펌웨어 업데이트를 확인합니다." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "펌웨어 업데이트 검사기" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G Code를 파일에 씁니다." - -msgctxt "name" -msgid "G-code Writer" -msgstr "GCode 작성자" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." - -msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF 파일 읽기 지원." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 리더" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." - -msgctxt "name" -msgid "USB printing" -msgstr "USB 프린팅" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF 파일 읽기가 지원됩니다." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 리더" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." @@ -5235,6 +5065,374 @@ msgctxt "name" msgid "Solid View" msgstr "솔리드 뷰" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF 파일 읽기 지원." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 리더" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." + +msgctxt "name" +msgid "USB printing" +msgstr "USB 프린팅" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "펌웨어 업데이트를 확인합니다." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "펌웨어 업데이트 검사기" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." + +msgctxt "name" +msgid "Marketplace" +msgstr "마켓플레이스" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 백업" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "컴퓨터 설정 작업" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5에서 2.6으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7에서 4.8로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4에서 4.5로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0에서 3.1로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11에서 4.12로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.1에서 4.2로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6에서 2.7으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0에서 4.6.2로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "버전 업그레이드 3.3에서 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8에서 4.9로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5에서 4.6으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2에서 4.3로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2에서 3.3으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3에서 4.4로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Cura 5.6에서 Cura 5.7로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6에서 5.7로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1에서 2.2로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3에서 5.4로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9에서 4.10으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7에서 3.0으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "버전 업그레이드 3.5에서 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2에서 5.3으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "버전 업그레이드 4.0에서 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13에서 5.0으로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4에서 3.5로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2에서 2.4로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2에서 4.7로 버전 업그레이드" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4에서 5.5로 버전 업그레이드" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-코드 리더" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." + +msgctxt "name" +msgid "Slice info" +msgstr "슬라이스 정보" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "이동식 드라이브를 제공합니다." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "이동식 드라이브 출력 장치 플러그인" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" + +msgctxt "name" +msgid "Support Eraser" +msgstr "서포트 지우개" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." + +msgctxt "name" +msgid "Model Checker" +msgstr "모델 검사기" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura에서 준비 단계 제공." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "준비 단계" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." + +msgctxt "name" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF 파일 읽기가 지원됩니다." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 리더" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "엑스레이 뷰를 제공합니다." + +msgctxt "name" +msgid "X-Ray View" +msgstr "엑스레이 뷰" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "레거시 Cura 프로파일 리더" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" + +msgctxt "name" +msgid "Post Processing" +msgstr "후처리" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" @@ -5244,12 +5442,20 @@ msgid "Sentry Logger" msgstr "보초 로거" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBot 포맷 패키지 작성을 지원합니다." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot 프린트파일 작성기" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 프로파일 리더" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5260,12 +5466,20 @@ msgid "UFP Reader" msgstr "UFP 리더기" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF 파일 작성 지원을 제공합니다." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" +msgid "Image Reader" +msgstr "이미지 리더" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 백엔드" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5275,89 +5489,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "압축 된 G 코드 작성기" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 기기 동작" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura에서 미리 보기 단계를 제공합니다." + +msgctxt "name" +msgid "Preview Stage" +msgstr "미리 보기 단계" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "UltiMaker 디지털 라이브러리" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Cura 프로파일 내보내기 지원을 제공합니다." -msgctxt "@info:title" -msgid "Error" -msgstr "오류" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 프로파일 작성자" -msgctxt "@action:button" -msgid "Cancel" -msgstr "취소" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D 파일을 읽을 수 있도록 지원합니다." -msgctxt "@title:tab" -msgid "Settings" -msgstr "설정" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 리더" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "모델 파일 읽기 기능을 제공합니다." -msgctxt "@action:button" -msgid "Learn more" -msgstr "자세히 알아보기" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 리더" -msgctxt "@title:tab" -msgid "General" -msgstr "일반" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura에서 모니터 단계 제공." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "모니터 단계" -msgctxt "@label" -msgid "Type" -msgstr "유형" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "모델 별 설정을 제공합니다." -msgctxt "@info:title" -msgid "Saving" -msgstr "저장" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "모델 별 설정 도구" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "파일이 이미 있습니다" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "지원되는 모든 유형 ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "재료 프로파일" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0}: {1} 에 저장할 수 없습니다" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MF 및 UCP 파일 쓰기를 지원합니다." -msgctxt "@action:button" -msgid "OK" -msgstr "확인" +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 기록기" -msgctxt "@info:title" -msgid "Warning" -msgstr "경고" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." -msgctxt "@title:tab" -msgid "Printers" -msgstr "프린터" +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 작성자" -msgctxt "@info:title" -msgid "File Saved" -msgstr "파일이 저장됨" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G Code를 파일에 씁니다." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "제거 확인" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "모든 파일 (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "균형" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "균형 프로파일은 생산성, 표면 품질, 기계적 특성 및 치수 정확도 사이의 균형을 찾기 위해 설계되었습니다." +msgctxt "name" +msgid "G-code Writer" +msgstr "GCode 작성자" diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 5453efd14c..62b73e760b 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "고정" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "기기 세부 설정" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 고정" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 위치" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "압출기 종료 G-코드 지속 시간" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "이 압출기에서 전환할 때 종료 G-코드를 실행하는 데 걸리는 시간입니다." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "익스트루더 끝 절대 위치" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "익스트루더 끝 Y 위치" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 위치" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "압출기 시작 G-코드 지속 시간" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "이 압출기로 전환할 때 시작 G-코드를 실행하는 데 걸리는 시간입니다." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "익스트루더 시작 위치의 절대 값" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." +msgctxt "material description" +msgid "Material" +msgstr "재료" + +msgctxt "material label" +msgid "Material" +msgstr "재료" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 직경" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "익스트루더 시작 X의 위치" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "익스트루더 시작 위치 Y" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "노즐 X 오프셋" @@ -131,51 +196,3 @@ msgstr "노즐 Y 오프셋" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "노즐 오프셋의 y 좌표." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 직경" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." - -msgctxt "material label" -msgid "Material" -msgstr "재료" - -msgctxt "material description" -msgid "Material" -msgstr "재료" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 고정" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "고정" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index b2ef2e1880..13f2653165 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + msgctxt "machine_name label" msgid "Machine Type" msgstr "기기 유형" @@ -34,7 +42,8 @@ msgstr "시작 GCode" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "시작과 동시에형실행될 G 코드 명령어 \n." +msgstr "시작과 동시에형실행될 G 코드 명령어 " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "End GCode" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "맨 마지막에 실행될 G 코드 명령 \n." +msgstr "맨 마지막에 실행될 G 코드 명령 " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "재료의 GUID. 자동으로 설정됩니다." +msgctxt "material_type label" +msgid "Material Type" +msgstr "재료 유형" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "사용된 재료의 유형입니다." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "재료 브랜드" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "사용된 재료의 브랜드입니다." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 직경" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "익스트루더로 오프셋" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 위치" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "독립 익스트루더 프라임 포지션" @@ -1558,7 +1616,8 @@ msgstr "여분의 내부채움 벽 수" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다.\n이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." +msgstr "내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다." +"이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." +msgctxt "material label" +msgid "Material" +msgstr "재료" + +msgctxt "material description" +msgid "Material" +msgstr "재료" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "기본 프린팅 온도" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "첫번째 레이어의 프린팅 온도" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." +msgid "The temperature used for printing the first layer." +msgstr "첫 레이어 인쇄에 사용되는 온도입니다." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "상면 가장 바깥 벽의 유량" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "상면 내벽 흐름" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "상단/하단 압출량" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "상면 외벽 속도" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "상면 내벽 속도" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 속도" + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "상단 표면 스킨 속도" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "모든 내부 벽이 프린팅되는 가속도입니다." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "상면 외벽 가속도" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "상면 내벽 가속도" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 가속도" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "상단 표면 스킨 가속도" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "상면 내벽의 최대 순간 속도 변화" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "스킨 표면 Jerk" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "서포트 Z 거리" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "서포트 구조물의 상단/하단에서 프린트까지의 거리입니다. 이 공간은 모델이 인쇄된 후 서포트를 제거할 수 있도록 여유를 제공합니다. 모델 아래 최상위 서포트 레이어는 정규 레이어의 일부일 수 있습니다." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "서포트 바닥 거리" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "출력물에서 서포트의 바닥까지의 거리." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "프린트에서 서포트 바닥까지의 거리입니다. 이는 다음 레이어 높이로 반올림됩니다." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "서포트 인터페이스 해상도" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "서포트 인터페이스 밀도" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 고정" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "고정" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "프라임 블롭 활성화" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "빌드 플레이트 고정 유형" @@ -3818,7 +3965,8 @@ msgstr "스커트 거리" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." +msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다." +"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "밖에서만 브림 생성" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "브림 위치" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "모델 외부, 내부 또는 양쪽 모두에 브림을 출력합니다. 모델에 따라 나중에 제거해야 하는 브림의 양을 줄이는 데 도움이 될 수 있으며, 베드에 적절하게 밀착시킬 수 있습니다." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "외부만" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "내부만" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "모두" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "내부 브림의 여백 회피" +msgid "Brim Avoid Margin" +msgstr "브림의 여백 회피" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "모델 주위의 브림은 원하지 않는 다른 모델에 닿을 수 있습니다. 이 설정은 브림이 없는 모델에서 이 거리 내의 모든 브림을 제거합니다." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "래프트 베이스 추가 여백" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 베이스가 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "래프트 중간 추가 여백" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 중간이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "래프트 상단 추가 여백" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 상단이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "래프트 내부 모서리 제거" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "래프트 베이스 내부 모서리 제거" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 베이스에서 내부 모서리를 제거합니다." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "래프트 중간 내부 모서리 제거" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 중간 부분에서 내부 모서리를 제거합니다." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "래프트 상단 내부 모서리 제거" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 상단 부분에서 내부 모서리를 제거합니다." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "래프트 부드럽게하기" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "래프트 베이스 부드럽게 하기" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 베이스의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "래프트 중간 부드럽게 하기" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 중간의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "래프트 상단 부드럽게 하기" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 상단의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "래프트 에어 갭" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "초기 레이어 Z 겹침" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "모델의 첫 번째 및 두 번째 레이어를 Z 방향으로 겹쳐서 에어 갭에서 손실된 필라멘트를 보완합니다. 첫 번째 모델 레이어 위의 모든 모델은 이 값만큼 아래로 이동합니다.\n이 설정으로 인해 두 번째 레이어가 초기 레이어 아래에 출력되는 경우가 있습니다. 이는 의도된 동작입니다." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "래프트 탑 레이어" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "래프트 기준 두께" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "래프트 상단 레이어 두께" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "래프트 기준 선 너비" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "상단 래프트 레이어의 레이어 두께." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "래프트 상단 선 너비" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "래프트 기준 선 간격" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "래프트 상단 간격" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "래프트 기준 두께" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "래프트 탑 레이어" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "래프트 기준 선 너비" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "래프트 상단 레이어 두께" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "상단 래프트 레이어의 레이어 두께." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "래프트 기준 선 간격" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "래프트 상단 선 너비" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "래프트 상단 간격" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "단면 래프트 상단 표면 순서" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "래프트 상단 표면 선이 항상 한 방향으로 인접한 선과 겹치도록 순서대로 출력합니다. 출력 시간은 약간 더 소요되지만, 모델 하단 표면에서도 보이는 표면을 더 일관적으로 보이게 만들 수 있습니다." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "래프트 벽 수" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "래프트의 선형 패턴 주위에 출력할 윤곽선 수입니다." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "래프트 베이스 벽 개수" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "래프트 중간 벽 수" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "래프트의 중간 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "래프트 상단 벽 수" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "래프트의 상단 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "래프트가 프린팅되는 속도." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "래프트 상단 프린팅 속도" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "래프트 기본 프린팅 속도" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "래프트 기본 프린팅 속도" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "래프트 상단 프린팅 속도" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "래프트가 프린팅되는 가속도." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "래프트 상단 프린팅 가속도" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "래프트 기본 프린팅 가속도" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "중간 래프트 층이 프린팅되는 가속도." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "래프트 기본 프린팅 가속도" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "래프트 상단 프린팅 가속도" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "래프트가 프린팅 될 때의 Jerk입니다." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "래프트 상단 프린팅 Jerk" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "래프트 기본 프린팅 Jerk" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "래프트 기본 프린팅 Jerk" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "래프트 상단 프린팅 Jerk" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "래프트의 팬 속도." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "래프트 상단 팬 속도" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "래프트 기본 팬 속도" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "상단 래프트 레이어의 팬 속도입니다." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "기본 래프트 레이어의 팬 속도입니다." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "중간 래프트 레이어의 팬 속도입니다." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "래프트 기본 팬 속도" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "래프트 상단 팬 속도" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "기본 래프트 레이어의 팬 속도입니다." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "상단 래프트 레이어의 팬 속도입니다." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "프라임 타워 유형" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "프라임 타워 생성 방법:
    • 일반: 보조 재료가 프라이밍되는 버킷을 생성합니다.
    • 중간 삽입: 프라임 타워를 최대한 희박하게 생성합니다. 시간과 필라멘트를 절약하지만, 사용된 재료가 서로 밀착되는 경우에만 가능합니다.
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "일반" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "중간 삽입" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "프라임 타워 사이즈" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "프라임 타워 최대 브리징 거리" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "공중에서 출력될 수 있는 브랜치의 최대 길이입니다." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "프라임 타워 X 위치" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "프라임 타워 브림" +msgid "Prime Tower Base" +msgstr "프라임 타워 베이스" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "프라임 타워 베이스 크기" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "프라임 타워 브림/베이스의 폭입니다. 베이스가 크면 빌드 플레이트에 대한 접착력이 향상되지만, 실제 인쇄 영역은 줄어듭니다." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "프라임 타워 베이스 높이" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "프라임 타워 베이스의 높이입니다. 이 값을 늘리면 베이스가 넓어져 프라임 타워가 더 튼튼해집니다. 이 설정이 너무 낮으면 프라임 타워에 튼튼한 베이스가 형성되지 않습니다." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "프라임 타워 베이스 경사" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "프라임 타워 베이스의 경사에 사용되는 크기 계수입니다. 이 값을 늘리면 베이스가 더 얇아집니다. 줄이면 베이스가 더 두꺼워집니다." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "프라임 타워 래프트 선 간격" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "독특한 프라임 타워 래프트 레이어를 위한 래프트 라인 간 거리입니다. 간격이 넓을수록 빌드 플레이트에서 래프트를 쉽게 제거할 수 있습니다." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "한번에 하나씩" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "수동으로 인쇄 순서 설정" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "객체 목록의 순서를 지정하여 출력 순서를 수동으로 설정할 수 있도록 허용합니다. 목록의 첫 번째 객체가 먼저 출력됩니다." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "메쉬 내부채움" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "래프트 내부 모서리 제거" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "외벽 그룹화" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "래프트 베이스 벽 개수" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "출력 과정 보고" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "설정된 임곗값을 벗어난 이벤트 보고" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "출력 과정 보고 활성화" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "발생할 수 있는 오류를 감지하도록 임곗값 설정을 위한 출력 과정 보고를 활성화합니다." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "유량 경고" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "감지 시의 유량 제한 경고입니다." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "유량 제한" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "감지 시의 비정상적인 유량 제한입니다." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "출력 온도 경고" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "감지 시의 출력 온도 제한 경고입니다." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "출력 온도 제한" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "감지 시의 비정상적인 출력 온도 제한입니다." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "빌드 볼륨 온도 경고" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "감지 시의 빌드 볼륨 온도 제한 경고입니다." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "빌드 볼륨 온도 제한" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "감지 시의 비정상적인 빌드 볼륨 온도 제한입니다. " msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,186 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "점진적 흐름 활성화" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "점진적 흐름 최대 가속도" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "점진적 흐름 변경에 대한 최대 가속도" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "초기 레이어 최대 흐름 가속도" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "점진적 흐름 이산화 단계 크기" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "점진적 흐름 변화의 각 단계 지속 시간" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "흐름 지속 시간 재설정" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 포지션" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "부착" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." - -msgctxt "material description" -msgid "Material" -msgstr "재료" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 지름" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." - -msgctxt "material label" -msgid "Material" -msgstr "재료" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 부착" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "외벽 그룹화" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "상면 가장 바깥 벽의 유량" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "상면 내벽 흐름" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "상면 외벽 속도" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "상면 내벽 속도" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 속도" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "상면 외벽 가속도" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "상면 내벽 가속도" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 가속도" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "상면 내벽의 최대 순간 속도 변화" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..dc35fb7caf --- /dev/null +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ko_KR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "점진적 흐름 활성화됨" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소합니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "점진적 흐름 최대 가속" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "점진적 흐름 변경에 대한 최대 가속" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "초기 레이어 최대 흐름 가속" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "첫 번째 레이어의 점진적 흐름 변경에 대한 최소 속도" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "점진적 흐름 이산화 단계 크기" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "점진적 흐름 변경에서 각 단계의 지속 시간" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "흐름 지속 시간 재설정" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index bf5337902b..3211663a19 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Project opslaan..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "& Universal Cura Project opslaan..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "In&stellingen" @@ -138,7 +142,9 @@ msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van krach msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" +msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats" +"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze" +"- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" msgctxt "@heading" msgid "-- incomplete --" @@ -198,15 +204,24 @@ msgstr "
  • OpenGL-versie: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

    \n

    Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

    \n " +msgstr "

    Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

    " +"

    Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

    \n

    Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

    \n

    Back-ups bevinden zich in de configuratiemap.

    \n

    Stuur ons dit crashrapport om het probleem op te lossen.

    \n " +msgstr "

    Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

    " +"

    Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

    " +"

    Back-ups bevinden zich in de configuratiemap.

    " +"

    Stuur ons dit crashrapport om het probleem op te lossen.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

    \n

    {model_names}

    \n

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    \n

    Handleiding printkwaliteit bekijken

    " +msgstr "

    Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

    " +"

    {model_names}

    " +"

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    " +"

    Handleiding printkwaliteit bekijken

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +233,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Een cloudverbinding is niet beschikbaar voor een printer" msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Een zeer dicht en sterk onderdeel, maar met een langere printtijd. Zeer geschikt voor functionele onderdelen." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." @@ -390,6 +409,14 @@ msgctxt "@button" msgid "Agree" msgstr "Akkoord" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Bestanden (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle Ondersteunde Typen ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Verzenden van anonieme gegevens toestaan" @@ -430,10 +457,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anoniem" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Anonieme crashrapporten" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Toepassingskader" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Van toepassing op" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Pas extruderoffsets toe op GCode" @@ -474,6 +509,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Weet u zeker dat u een nieuw project wilt starten? Hiermee wordt het platform leeggemaakt en worden eventuele niet-opgeslagen instellingen verwijderd." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" @@ -486,6 +525,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Rangschik alle modellen in een raster" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Selectie rangschikken" + msgctxt "@label:button" msgid "Ask a question" msgstr "Stel een vraag" @@ -546,6 +589,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Back-ups" +msgctxt "@label" +msgid "Balanced" +msgstr "Gebalanceerd" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" @@ -602,6 +649,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Berekend" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Cameranavigatie" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Cameraweergave:" @@ -634,6 +685,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Kan niet naar UFP-bestand schrijven:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuleren" + msgctxt "@button" msgid "Cancel" msgstr "Annuleren" @@ -810,6 +865,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Diameterwijziging bevestigen" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Verwijderen Bevestigen" + msgctxt "@action:button" msgid "Connect" msgstr "Verbinden" @@ -894,6 +953,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Antwoord van de server is niet duidelijk." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Kon GCodeWriter-plugin niet laden. Probeer de plugin opnieuw in te schakelen." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Kan Marketplace niet bereiken." @@ -906,6 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Kan materiaalarchief niet opslaan op {}:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Kan niet opslaan als {0}: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" @@ -924,7 +991,8 @@ msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Het wordt door h msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}\nResource is tijdelijk niet beschikbaar" +msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}" +"Resource is tijdelijk niet beschikbaar" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1068,8 @@ msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinte msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community.\nCura maakt met trots gebruik van de volgende opensourceprojecten:" +msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community." +"Cura maakt met trots gebruik van de volgende opensourceprojecten:" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1159,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Standaardgedrag voor gewijzigde instellingen wanneer er naar een ander profiel wordt overgeschakeld: " @@ -1242,6 +1307,10 @@ msgctxt "@label" msgid "Draft" msgstr "Ontwerp" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Alle modellen laten vallen op bouwplaat" + msgctxt "@action:button" msgid "Duplicate" msgstr "Dupliceren" @@ -1322,6 +1391,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Voer het IP-adres van uw printer in." +msgctxt "@info:title" +msgid "Error" +msgstr "Fout" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback van fout" @@ -1358,6 +1431,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Selectie Exporteren..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Universal Cura Project exporteren" + msgctxt "@button" msgid "Export material archive" msgstr "Materiaalarchief exporteren" @@ -1386,10 +1463,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Eind-G-code van extruder" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Duur einde G-code extruder" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Start-G-code van extruder" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Duur start G-code extruder" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Extruder {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extruder(s) uitgeschakeld" @@ -1450,6 +1539,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Opslaan materiaalarchief mislukt" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Schrijven naar specifieke cloudprinter mislukt: {0} niet in clusters op afstand." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favorieten" @@ -1466,6 +1559,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Gewicht filament" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Het Bestand Bestaat Al" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Bestand opgeslagen" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Het bestand {0} bevat geen geldig profiel." @@ -1574,6 +1675,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" +msgid "FreeCAD trackpad" +msgstr "FreeCAD-trackpad" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Weergave voorzijde" @@ -1626,6 +1730,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Rijbrughoogte" +msgctxt "@title:tab" +msgid "General" +msgstr "Algemeen" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." @@ -1646,6 +1754,10 @@ msgctxt "@action" msgid "Get started" msgstr "Aan de slag" +msgctxt "@label" +msgid "Global" +msgstr "Globaal" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Algemene Instellingen" @@ -1694,6 +1806,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Alle aangesloten printers verbergen" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Instellingen verbergen" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Deze instelling verbergen" @@ -1766,6 +1882,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Om het pakket te gebruiken moet u Cura opnieuw opstarten" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "UltiMaker-accountnaam toevoegen" + msgctxt "@label" msgid "Infill" msgstr "Vulling" @@ -1978,6 +2098,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Meer informatie" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Meer informatie" + msgctxt "@button" msgid "Learn more" msgstr "Meer informatie" @@ -2106,6 +2230,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot Printbestand" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter kon niet opslaan op het aangegeven pad." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter ondersteunt geen tekstmodus." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialen Beheren..." @@ -2410,6 +2546,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Geen resultaten gevonden met huidige filter" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Er is geen specifieke waarde ingesteld" + msgctxt "@label" msgid "No time estimation available" msgstr "Geen tijdschatting beschikbaar" @@ -2482,6 +2622,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Aantal extruders" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Taal van besturingssysteem" @@ -2506,6 +2650,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Oeps! We zijn een onverwachte fout tegengekomen tijdens uw snijproces. Geen zorgen, we hebben automatisch de crashlogs ontvangen voor analyse als u het delen van gegevens niet heeft uitgeschakeld in uw voorkeuren. Om ons verder te helpen, kunt u overwegen uw projectgegevens te delen op onze issue-tracker." + msgctxt "@action:button" msgid "Open" msgstr "Openen" @@ -2534,10 +2682,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Projectbestand Openen" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Universal Cura Project (UCP) openen" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Bestand van Universal Cura Project (UCP) openen" + msgctxt "@action:label" msgid "Open With" msgstr "Openen" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Openen als UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Openen als project" @@ -2635,7 +2795,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Plakken uit klembord" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pauzeren" @@ -2697,7 +2856,10 @@ msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepa msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Controleer of de printer verbonden is:\n- Controleer of de printer ingeschakeld is.\n- Controleer of de printer verbonden is met het netwerk.\n- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." +msgstr "Controleer of de printer verbonden is:" +"- Controleer of de printer ingeschakeld is." +"- Controleer of de printer verbonden is met het netwerk." +"- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2873,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Geef een naam op voor dit profiel." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Gelieve een nieuwe naam op te geven." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Lees de plug-in-licentie en stem hiermee in." @@ -2721,7 +2887,10 @@ msgstr "Verwijder de print" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:\n- binnen het werkvolume passen\n- zijn toegewezen aan een ingeschakelde extruder\n- niet allemaal zijn ingesteld als modificatierasters" +msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:" +"- binnen het werkvolume passen" +"- zijn toegewezen aan een ingeschakelde extruder" +"- niet allemaal zijn ingesteld als modificatierasters" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2900,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Meld u aan bij uw UltiMaker-account om het verzenden van niet-anonieme gegevens mogelijk te maken." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Synchroniseer de materiaalprofielen met uw printer voordat u gaat printen." @@ -2815,6 +2988,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Printen" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Afdrukken na" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Afdrukken voor" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3116,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Printerinstellingen worden bijgewerkt zodat deze overeenkomen met de instellingen die zijn opgeslagen met het project." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Printers" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Printers toegevoegd vanuit Digital Factory:" @@ -3143,6 +3328,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Hernoemen" +msgctxt "@title:window" +msgid "Rename" +msgstr "Naam wijzigen" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Profiel Hernoemen" @@ -3244,8 +3433,12 @@ msgid "Save Cura project" msgstr "Cura-project opslaan" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura-project opslaan en bestand printen" +msgid "Save Cura project and .makerbot print file" +msgstr "Cura-project en .makerbot-printbestand opslaan" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Cura-project en .ufp-printbestand opslaan" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,6 +3464,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Bewaar nieuw profiel" +msgctxt "@action:button" +msgid "Save project" +msgstr "Project opslaan" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Bewaar het .umm-bestand op een USB-stick." @@ -3287,6 +3484,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Opslaan" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" @@ -3367,6 +3568,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Het crashrapport naar UltiMaker verzenden" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Verzend crashrapporten met uw geregistreerde UltiMaker-accountnaam en de projectnaam naar UltiMaker Sentry. Er worden geen daadwerkelijke modelgegevens verzonden." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Verzend crashrapporten zonder enige persoonlijk identificeerbare informatie of modelgegevens naar UltiMaker." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Verzend engine-crashrapporten" + msgctxt "@action:button" msgid "Send report" msgstr "Rapport verzenden" @@ -3411,6 +3624,14 @@ msgctxt "@label" msgid "Settings" msgstr "Instellingen" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Instellingen" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Instellingen geladen uit UCP-bestand" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:" @@ -3479,6 +3700,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfde instantie van Cura worden geopend?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Moeten slicing-crashes automatisch gemeld worden aan Ultimaker? Let erop dat er geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens worden verzonden of opgeslagen, tenzij u hier expliciet toestemming voor geeft." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Moet het platform worden leeggemaakt voordat u een nieuw model laadt in de dezelfde instantie van Cura?" @@ -3535,6 +3760,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Gedetailleerd crashrapport weergeven" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Instellingen weergeven" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project" @@ -3603,10 +3832,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicen mislukt" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Slicen is mislukt door een onverwachte fout. Overweeg om de fout te melden via onze issue tracker." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Slicen..." @@ -3615,13 +3840,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Effenen" +msgctxt "@label" +msgid "Solid" +msgstr "Massief" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide weergave" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n\nKlik om deze instellingen zichtbaar te maken." +msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde." +"Klik om deze instellingen zichtbaar te maken." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3867,8 @@ msgstr "Sommige instelwaarden gedefinieerd in %1 zijn overschreven." msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen.\n\nKlik om het profielbeheer te openen." +msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen." +"Klik om het profielbeheer te openen." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3894,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Sponsor Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Sponsor Cura" @@ -3721,10 +3950,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Gesuggereerde materiaalinstellingen" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Gesuggereerde profielinstellingen" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Samenvatting - Cura-project" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Samenvatting - Open Universal Cura Project (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Samenvatting - Universal Cura Project" + msgctxt "@label" msgid "Support" msgstr "Supportstructuur" @@ -3843,6 +4088,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "De back-up is groter dan de maximale bestandsgrootte." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Het gebalanceerde profiel is ontworpen om een balans te vinden tussen productiviteit, oppervlaktekwaliteit, mechanische eigenschappen en dimensionale nauwkeurigheid." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "De basishoogte van het platform in millimeters." @@ -3899,6 +4148,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen." @@ -3959,7 +4212,10 @@ msgstr "De nozzle die in deze extruder geplaatst is." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Het patroon van het invulmateriaal van de print:\n\nVoor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling.\n\nVoor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan.\n\nGebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." +msgstr "Het patroon van het invulmateriaal van de print:" +"Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling." +"Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan." +"Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4077,6 +4333,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Dit is een Cura Universal Projectbestand. Wilt u het als Cura project of Cura Universal Project openen of de modellen ervan importeren?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Dit is een Cura-projectbestand. Wilt u dit openen als project of de modellen eruit importeren?" @@ -4125,7 +4385,8 @@ msgstr "Dit project bevat materialen of plugins die momenteel niet geïnstalleer msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Deze instelling heeft een andere waarde dan in het profiel.\n\nKlik om de waarde van het profiel te herstellen." +msgstr "Deze instelling heeft een andere waarde dan in het profiel." +"Klik om de waarde van het profiel te herstellen." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4404,8 @@ msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n\nKlik om de berekende waarde te herstellen." +msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde." +"Klik om de berekende waarde te herstellen." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4153,6 +4415,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Deze instelling werkt mogelijk niet goed tijdens het exporteren naar Universal Cura Project. Gebruikers wordt gevraagd deze instelling op eigen risico toe te voegen." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Deze instelling werkt mogelijk niet goed tijdens het exporteren naar Universal Cura Project. Gebruikers wordt gevraagd deze op eigen risico toe te voegen." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Deze versie is niet bedoeld voor productiegebruik. Als u problemen tegenkomt, meld ze dan op onze GitHub-pagina, met vermelding van de volledige versie {self.getVersion()}" @@ -4245,6 +4515,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Type" +msgctxt "@label" +msgid "Type" +msgstr "Type" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-printen" @@ -4341,6 +4615,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Er kan niet worden geschreven naar bestand: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Niet beschikbaar" @@ -4361,6 +4639,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Eenheid" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Project" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Universal Cura Project-bestanden kunnen worden geprint op verschillende 3D printers met behoud van positiegegevens en geselecteerde instellingen. Bij het exporteren worden alle modellen die aanwezig zijn op de bouwplaat meegenomen, samen met hun huidige positie, oriëntatie en schaal. U kunt ook selecteren welke instellingen per extruder of per model moeten worden meegenomen om er zeker van te zijn dat de print correct wordt uitgevoerd." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Universele configuratie bouwsysteem" @@ -4477,6 +4763,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie" +msgctxt "@title:column" +msgid "Value" +msgstr "Waarde" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Printers weergeven in Digital Factory" @@ -4525,6 +4815,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Wilt u meer?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Waarschuwing" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is." @@ -4549,6 +4843,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Welke printer wilt u instellen?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Welk type cameranavigatie moet worden gebruikt?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Welk type cameraweergave moet worden gebruikt?" @@ -4627,7 +4925,8 @@ msgstr "Ja" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" +msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt." +"Weet u zeker dat u door wilt gaan?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4649,7 +4948,9 @@ msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om ee msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "U hebt enkele profielinstellingen aangepast.\nWilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\nU kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." +msgstr "U hebt enkele profielinstellingen aangepast." +"Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?" +"U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4982,8 @@ msgstr "Uw nieuwe printer wordt automatisch weergegeven in Cura" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "U kunt uw printer {printer_name} via de cloud verbinden.\n Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" +msgstr "U kunt uw printer {printer_name} via de cloud verbinden." +" Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" msgctxt "@label" msgid "Z" @@ -4727,6 +5029,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "vandaag" @@ -4747,491 +5053,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} plug-ins zijn niet gedownload" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profielschrijver" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." - -msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lezer voor Profielen van oudere Cura-versies" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lezer" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-schrijver" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Versie-upgrade van 3.5 naar 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Versie-upgrade van 4.1 naar 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Versie-upgrade van 4.7 naar 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Versie-upgrade 4.9 naar 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Versie-upgrade van 3.2 naar 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Versie-upgrade van 2.7 naar 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Versie-upgrade van 4.11 naar 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Versie-upgrade van 2.6 naar 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Versie-upgrade van 4.8 naar 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Versie-upgrade van 4.3 naar 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Versie-upgrade van 3.3 naar 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Versie-upgrade van 4.4 naar 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Versie-upgrade van 2.5 naar 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Versie-upgrade van 2.1 naar 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Versie-upgrade van 4.2 naar 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Versie-upgrade van 5.2 naar 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Versie-upgrade van 4.0 naar 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Versie-upgrade van 2.2 naar 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Versie-upgrade van 3.4 naar 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Versie-upgrade 4.13 naar 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versie-upgrade 5.4 naar 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Versie-upgrade van 3.0 naar 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Versie-upgrade van 4.6.2 naar 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versie-upgrade 5.3 naar 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" - -msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Biedt voorbeeld van geslicete laaggegevens." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simulatieweergave" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiellezer" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biedt de Instellingen per Model." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Gereedschap voor Instellingen per Model" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Deze optie biedt een voorbeeldstadium in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Voorbeeldstadium" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Supportwisser" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code-lezer" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Een back-up maken van uw configuratie en deze herstellen." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acties UltiMaker-machines" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Biedt de röntgenweergave." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgenweergave" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Hiermee beheert u netwerkverbindingen naar UltiMaker-netwerkprinters." +msgstr "Beheert netwerkverbindingen naar UltiMaker-netwerkprinters." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "UltiMaker-netwerkverbinding" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Actie machine-instellingen" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Biedt ondersteuning voor het lezen van modelbestanden." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh-lezer" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplaats" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." - -msgctxt "name" -msgid "Image Reader" -msgstr "Afbeeldinglezer" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Biedt machineacties voor het bijwerken van de firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-updater" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-back-end" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Deze optie biedt een voorbereidingsstadium in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Stadium voorbereiden" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controleert op firmware-updates." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-updatecontrole" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Met deze optie schrijft u G-code naar een bestand." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code-schrijver" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." - -msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lezer" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." - -msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-lezer" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." @@ -5248,6 +5077,374 @@ msgctxt "name" msgid "Solid View" msgstr "Solide weergave" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lezer" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." + +msgctxt "name" +msgid "USB printing" +msgstr "USB-printen" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controleert op firmware-updates." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-updatecontrole" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplaats" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-back-ups" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Actie machine-instellingen" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Versie-upgrade van 2.5 naar 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Versie-upgrade van 4.7 naar 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Versie-upgrade van 4.4 naar 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Versie-upgrade van 3.0 naar 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Versie-upgrade van 4.11 naar 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Versie-upgrade van 4.1 naar 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Versie-upgrade van 2.6 naar 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Versie-upgrade van 3.3 naar 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Versie-upgrade van 4.8 naar 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Versie-upgrade van 4.5 naar 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Versie-upgrade van 4.2 naar 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Versie-upgrade van 3.2 naar 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Versie-upgrade van 4.3 naar 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Upgrades van configuraties van Cura 5.6 naar Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Versie-upgrade van 5.6 naar 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Versie-upgrade van 2.1 naar 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versie-upgrade 5.3 naar 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Versie-upgrade 4.9 naar 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Versie-upgrade van 2.7 naar 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Versie-upgrade van 3.5 naar 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Versie-upgrade van 5.2 naar 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Versie-upgrade van 4.0 naar 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Versie-upgrade 4.13 naar 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Versie-upgrade van 3.4 naar 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Versie-upgrade van 2.2 naar 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Versie-upgrade van 4.6.2 naar 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versie-upgrade 5.4 naar 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code-lezer" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." + +msgctxt "name" +msgid "Slice info" +msgstr "Slice-informatie" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Supportwisser" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." + +msgctxt "name" +msgid "Model Checker" +msgstr "Modelcontrole" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Deze optie biedt een voorbereidingsstadium in Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Stadium voorbereiden" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Biedt voorbeeld van geslicete laaggegevens." + +msgctxt "name" +msgid "Simulation View" +msgstr "Simulatieweergave" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-lezer" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Biedt de röntgenweergave." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgenweergave" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-updater" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lezer voor Profielen van oudere Cura-versies" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" + +msgctxt "name" +msgid "Post Processing" +msgstr "Nabewerking" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" @@ -5257,12 +5454,20 @@ msgid "Sentry Logger" msgstr "Sentrylogger" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot Printbestandschrijver" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-profiellezer" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5478,20 @@ msgid "UFP Reader" msgstr "UFP-lezer" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" +msgid "Image Reader" +msgstr "Afbeeldinglezer" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-back-end" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,89 +5501,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Schrijver voor gecomprimeerde G-code" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acties UltiMaker-machines" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Deze optie biedt een voorbeeldstadium in Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Voorbeeldstadium" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." -msgctxt "@info:title" -msgid "Error" -msgstr "Fout" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profielschrijver" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuleren" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Instellingen" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lezer" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Biedt ondersteuning voor het lezen van modelbestanden." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Meer informatie" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh-lezer" -msgctxt "@title:tab" -msgid "General" -msgstr "Algemeen" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Deze optie biedt een controlestadium in Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Controlestadium" -msgctxt "@label" -msgid "Type" -msgstr "Type" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Biedt de Instellingen per Model." -msgctxt "@info:title" -msgid "Saving" -msgstr "Opslaan" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Gereedschap voor Instellingen per Model" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Het Bestand Bestaat Al" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Alle Ondersteunde Typen ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiaalprofielen" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Kan niet opslaan als {0}: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF- en UCP-bestanden." -msgctxt "@action:button" -msgid "OK" -msgstr "OK" +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-schrijver" -msgctxt "@info:title" -msgid "Warning" -msgstr "Waarschuwing" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Printers" +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-schrijver" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Bestand opgeslagen" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Met deze optie schrijft u G-code naar een bestand." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Verwijderen Bevestigen" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Alle Bestanden (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Gebalanceerd" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Het gebalanceerde profiel is ontworpen om een balans te vinden tussen productiviteit, oppervlaktekwaliteit, mechanische eigenschappen en dimensionale nauwkeurigheid." +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code-schrijver" diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index f541f0b666..e157ab204d 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Duur einde G-Code extruder" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "De tijd die nodig is om de g-code aan het einde uit te voeren, wanneer er overgeschakeld wordt van deze extruder." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Eindpositie Extruder" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Y-eindpositie Extruder" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Duur start G-Code extruder" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "De tijd die nodig is om de start g-code uit te voeren, wanneer er wordt overgeschakeld naar deze extruder." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startpositie Extruder" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." +msgctxt "material description" +msgid "Material" +msgstr "Materiaal" + +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-startpositie Extruder" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-startpositie Extruder" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Offset Nozzle" @@ -131,51 +196,3 @@ msgstr "Y-Offset Nozzle" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "De Y-coördinaat van de offset van de nozzle." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." - -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" - -msgctxt "material description" -msgid "Material" -msgstr "Materiaal" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 333268d3b6..e50fc3e031 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Type Machine" @@ -34,7 +42,8 @@ msgstr "Start G-code" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n." +msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "Eind G-code" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n." +msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Materiaaltype" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Het type materiaal dat gebruikt wordt." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Materiaalmerk" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Het merk van het materiaal dat gebruikt wordt." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Wachten op verwarmen van platform" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Offset met extruder" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Absolute Positie voor Primen Extruder" @@ -1558,7 +1616,8 @@ msgstr "Aantal Extra Wanden Rond vulling" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt.\nDeze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." +msgstr "Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt." +"Deze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +msgctxt "material description" +msgid "Material" +msgstr "Materiaal" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Standaard printtemperatuur" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Printtemperatuur van de eerste laag" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." +msgid "The temperature used for printing the first layer." +msgstr "De temperatuur die gebruikt wordt voor het printen van de eerste laag." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Stroom van de buitenste wand van het bovenoppervlak" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Doorvoer boven/onder" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Snelheid van de buitenste wand van het bovenoppervlak" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Snelheid van de binnenste wand van het bovenoppervlak" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Snelheid bovenskin" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "De acceleratie tijdens het printen van alle binnenwanden." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Versnelling van de buitenste wand op bovenlaag" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Versnelling van de binnenwand op bovenlaag" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Acceleratie bovenskin" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Schok van de binnenste muur van het bovenoppervlak" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Schok van de buitenste muur van het bovenoppervlak" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Schok bovenskin" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Z-afstand Supportstructuur" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt naar boven afgerond op een veelvoud van de laaghoogte." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Afstand van de boven-/onderkant van de ondersteuningsstructuur tot de print. Deze opening zorgt voor ruimte om de ondersteuningen te verwijderen nadat het model is geprint. De bovenste ondersteuningslaag onder het model kan een fractie zijn van de normale lagen." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Afstand van Onderkant Supportstructuur" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "De afstand van de print tot de onderkant van de supportstructuur." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Afstand van de print tot de onderkant van de ondersteuning. Let op dat dit wordt afgerond naar de volgende laaghoogte." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolutie Verbindingsstructuur" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Dichtheid Verbindingsstructuur" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "Primeblob inschakelen" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Type Hechting aan Platform" @@ -3818,7 +3965,8 @@ msgstr "Skirtafstand" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print.\nDit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." +msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print." +"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Alleen aan Buitenkant" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Locatie rand" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Print een rand aan de buitenkant van het model, aan de binnenkant of aan beide kanten. Afhankelijk van het model helpt dit om de hoeveelheid rand die u achteraf moet verwijderen te verminderen, terwijl het voor een goede hechting aan het bed zorgt." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Alleen buitenkant" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Alleen binnenkant" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Overal" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Binnenste mijdmarge brim" +msgid "Brim Avoid Margin" +msgstr "Marge voor vermijden van rand" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Een rand rond een model kan een ander model raken op een plek waarvan u dat niet wilt. Dit verwijdert alle rand binnen deze afstand van modellen zonder rand." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Extra marge voor vlot op de basis" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot op de basis is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Extra marge voor vlot in het midden" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot in het midden is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Extra marge voor vlot aan bovenkant" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot aan de bovenkant is ingeschakeld, is dit het extra vlotebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Binnenhoeken raft verwijderen" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Binnenhoeken van basis van vlot verwijderen" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van de basis van het vlot, waardoor het vlot bol wordt." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Binnenhoeken van vlot in het midden verwijderen" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van het middelste deel van het vlot, waardoor het vlot bol wordt." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Binnenhoeken van vlot aan de bovenkant verwijderen" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van het bovenste deel van het vlot, waardoor het vlot bol wordt." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Raft effenen" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Vlotbasis gladmaken" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het basisvlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Midden van vlot gladmaken" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het midden van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Bovenkant van vlot gladmaken" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van de bovenkant van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Luchtruimte Raft" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Z Overlap Eerste Laag" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor het filament dat verloren gaat in de luchtspleet. Alle modellen boven de eerste modellaag zullen met deze hoeveelheid naar beneden worden verschoven.\nHet kan voorkomen dat de tweede laag onder de eerste laag wordt afgedrukt door deze instelling. Dit gedrag is zo bedoeld." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Bovenlagen Raft" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dikte Grondvlak Raft" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dikte Bovenlaag Raft" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Lijnbreedte Grondvlak Raft" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Laagdikte van de bovenste lagen van de raft." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Breedte Bovenste Lijn Raft" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Tussenruimte Lijnen Grondvlak Raft" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Bovenruimte Raft" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dikte Grondvlak Raft" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Bovenlagen Raft" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Lijnbreedte Grondvlak Raft" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dikte Bovenlaag Raft" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Laagdikte van de bovenste lagen van de raft." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Tussenruimte Lijnen Grondvlak Raft" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Breedte Bovenste Lijn Raft" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Bovenruimte Raft" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotone volgorde van het bovenste oppervlak van het vlot" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Print de lijnen van het bovenste oppervlak van het vlot in een volgorde die ervoor zorgt dat ze altijd overlappen met aangrenzende lijnen in één richting. Dit kost iets meer tijd om te printen, maar het oppervlak ziet er consistenter uit, wat ook zichtbaar is op de onderkant van het model." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Aantal vlotwanden" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon van het vlot." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Aantal wanden grondvlak raft" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Aantal middenwanden vlot" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de middelste lagen van het vlot." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Aantal bovenwanden vlot" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de bovenste lagen van het vlot." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "De snelheid waarmee de raft wordt geprint." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Printsnelheid Bovenkant Raft" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Printsnelheid Grondvlak Raft" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Printsnelheid Grondvlak Raft" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Printsnelheid Bovenkant Raft" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "De acceleratie tijdens het printen van de raft." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Printacceleratie Bovenkant Raft" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Printacceleratie Grondvlak Raft" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "De acceleratie tijdens het printen van de toplagen van de raft." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Printacceleratie Grondvlak Raft" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Printacceleratie Bovenkant Raft" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "De acceleratie tijdens het printen van de toplagen van de raft." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "De schok tijdens het printen van de raft." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Printschok Bovenkant Raft" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Printschok Grondvlak Raft" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "De schok tijdens het printen van de toplagen van de raft." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "De schok tijdens het printen van het grondvlak van de raft." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "De schok tijdens het printen van de middelste laag van de raft." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Printschok Grondvlak Raft" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Printschok Bovenkant Raft" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "De schok tijdens het printen van het grondvlak van de raft." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "De schok tijdens het printen van de toplagen van de raft." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "De ventilatorsnelheid tijdens het printen van de raft." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Ventilatorsnelheid Bovenkant Raft" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Ventilatorsnelheid Grondlaag Raft" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Ventilatorsnelheid Grondlaag Raft" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Ventilatorsnelheid Bovenkant Raft" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Type voorbereidingstoren" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Zo genereer je de voorbereidingstoren:
    • Normaal: creëer een emmer waarin secundaire materialen worden voorbereid
    • Interleaved: creëer een zo minimaal mogelijke voorbereidingstoren. Dit bespaart tijd en filament, maar is alleen mogelijk als de gebruikte materialen aan elkaar hechten
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normaal" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Interleaved" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Formaat Primepijler" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Maximale overbruggingsafstand voorbereidingstoren" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "De maximale lengte van de takken die via de lucht mogen worden geprint." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "X-positie Primepijler" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim primepijler" +msgid "Prime Tower Base" +msgstr "Basis van de Primepijler" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Grootte van de basis van de Primepijler" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "De breedte van de brim/basis van de prime toren. Een grotere basis verbetert de hechting aan het bouwplateau, maar vermindert ook het effectieve printgebied." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Hoogte van de basis van de Primepijler" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "De hoogte van de basis van de prime toren. Het verhogen van deze waarde resulteert in een stevigere prime toren omdat de basis breder zal zijn. Als deze instelling te laag is, zal de prime toren geen stevige basis hebben." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Basis hellingshoek van de Prime Toren" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "De groottefactor die gebruikt wordt voor de helling van de basis van de prime toren. Als u deze waarde verhoogt, wordt de basis slanker. Als u het verlaagt, wordt de basis dikker." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Lijnafstand van het vlot van de Primepijler" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de vlotlijnen voor de unieke vlotlaag van de Prime Tower. Een brede afstand maakt het eenvoudig om het vlot van de bouwplaat te verwijderen." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Eén voor Eén" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Handmatig afdrukvolgorde instellen" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Hiermee kunt u de objectlijst ordenen om de printvolgorde handmatig in te stellen. Het eerste object in de lijst wordt als eerste geprint." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Vulraster" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Binnenhoeken raft verwijderen" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Groepeer de buitenwanden" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Aantal wanden grondvlak raft" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Rapportage van printproces" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Rapportagegebeurtenissen die ingestelde drempels overschrijden" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Rapportage van printproces inschakelen" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Rapportage van printproces inschakelen voor het instellen van drempelwaarden voor mogelijke foutdetectie." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Flow-waarschuwing" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limiet op flow-waarschuwing voor detectie." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Flowlimiet" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limiet op flow-afwijking voor detectie." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Waarschuwing printtemperatuur" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limiet voor waarschuwing printtemperatuur voor detectie." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limiet printtemperatuur" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limiet op afwijking printtemperatuur voor detectie." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Waarschuwing temperatuur bouwvolume" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limiet op waarschuwing temperatuur bouwvolume voor detectie." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limiet temperatuur bouwvolume" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limiet op afwijking temperatuur bouwvolume voor detectie." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,186 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Geleidelijke flow ingeschakeld" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Max. versnelling geleidelijke flow" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale versnelling voor geleidelijke flowveranderingen" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale flowversnelling in de beginlaag" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Stapgrootte geleidelijke flowdiscretisatie" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duur van elke stap in de geleidelijke flowverandering" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flowduur resetten" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Groepeer de buitenwanden" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Stroom van de buitenste wand van het bovenoppervlak" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Snelheid van de buitenste wand van het bovenoppervlak" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Snelheid van de binnenste wand van het bovenoppervlak" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Versnelling van de buitenste wand op bovenlaag" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Versnelling van de binnenwand op bovenlaag" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Schok van de binnenste muur van het bovenoppervlak" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Schok van de buitenste muur van het bovenoppervlak" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..6e7f503e2c --- /dev/null +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Geleidelijke stroom ingeschakeld" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Geleidelijke stroomwijzigingen inschakelen. Als deze optie is ingeschakeld, wordt de stroom geleidelijk verhoogd/verlaagd tot de doelstroom. Dit is handig voor printers met een bowdenbuis waarbij de stroom niet onmiddellijk verandert wanneer de extrudermotor start/stopt." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale versnelling voor geleidelijke stroom" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale versnelling voor geleidelijke stroomveranderingen" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale stroomversnelling eerste laag" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimumsnelheid voor geleidelijke stroomveranderingen voor de eerste laag" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Stapgrootte geleidelijke stroomdiscretisatie" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duur van elke stap in de geleidelijke stroomverandering" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Stroomduur opnieuw instellen" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Voor elke af te leggen afstand die langer is dan deze waarde, wordt de materiaalstroom opnieuw ingesteld op de doelstroom van de paden." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 0cbb145fc0..2261bb2de0 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -124,6 +124,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Opcje" @@ -265,6 +269,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "" msgstr[1] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony." @@ -499,10 +507,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonimowa" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Struktura aplikacji" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "" @@ -561,6 +577,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Wybór ułożenia" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -625,6 +645,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Kopie zapasowe" +msgctxt "@label" +msgid "Balanced" +msgstr "Zrównoważony" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Baza (mm)" @@ -681,6 +705,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Przeliczone" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderowanie z kamery:" @@ -1009,6 +1037,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1253,10 +1285,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Domyślne" -msgctxt "@label" -msgid "Default" -msgstr "Domyślne" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: " @@ -1405,6 +1433,10 @@ msgctxt "@label" msgid "Draft" msgstr "Szkic" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplikuj" @@ -1531,6 +1563,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Eksportuj Zaznaczenie..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "" @@ -1564,10 +1600,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Końcowy G-code ekstrudera" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Początkowy G-code ekstrudera" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Ekstruder(y) wyłączony(/e)" @@ -1634,6 +1683,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Ulubione" @@ -1775,6 +1829,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Widok z przodu" @@ -1863,6 +1920,10 @@ msgctxt "@action" msgid "Get started" msgstr "Rozpocznij" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Ustawienia ogólne" @@ -1912,6 +1973,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ukryj tę opcję" @@ -1988,6 +2053,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "Wypełnienie" @@ -2344,6 +2413,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Zarządzaj materiałami..." @@ -2675,6 +2760,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "Szacunkowy czas niedostępny" @@ -2776,6 +2865,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "Otwórz" @@ -2804,10 +2897,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Otwórz Plik Projektu" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "Otwórz jako projekt" @@ -3020,6 +3125,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "" @@ -3116,6 +3225,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Drukuj" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Drukuj po" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Drukuj przed" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3422,8 +3539,12 @@ msgid "Provides support for reading model files." msgstr "Zapewnia wsparcie dla czytania plików modeli." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3663,7 +3784,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3690,6 +3815,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "" @@ -3793,6 +3922,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Wyślij raport błędu do UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "Wyślij raport" @@ -3845,6 +3986,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Ustawienia" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:" @@ -3913,6 +4058,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3969,6 +4118,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Pokaż szczegółowy raport błędu" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu" @@ -4045,10 +4198,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Cięcie..." @@ -4057,6 +4206,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Wygładzanie" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "Widok Bryły" @@ -4182,10 +4335,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Podsumowanie - Projekt Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "Podpory" @@ -4308,6 +4477,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Zrównoważony profil został zaprojektowany w celu znalezienia równowagi między wydajnością, jakością powierzchni, właściwościami mechanicznymi i precyzją wymiarową." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Wysokość podstawy od stołu w milimetrach." @@ -4554,6 +4727,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?" @@ -4643,6 +4820,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4872,6 +5057,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "Niedostępne" @@ -4892,6 +5082,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5081,6 +5279,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Prześlij niestandardowe oprogramowanie" @@ -5113,6 +5315,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Ulepszenie Wersji z 2.1 do 2.2" @@ -5217,6 +5423,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5294,6 +5504,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Jakiego rodzaju kamery należy użyć do renderowania?" @@ -5499,6 +5713,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "dziś" @@ -5520,17 +5738,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "@label" -msgid "Balanced" -msgstr "Zrównoważony" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Zrównoważony profil został zaprojektowany w celu znalezienia równowagi między wydajnością, jakością powierzchni, właściwościami mechanicznymi i precyzją wymiarową." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Wybór ułożenia" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Domyślne" #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." @@ -5540,6 +5750,10 @@ msgstr "Zrównoważony profil został zaprojektowany w celu znalezienia równowa #~ msgid "Error writing 3mf file." #~ msgstr "Błąd zapisu pliku 3mf." +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Widok symulacji" diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index 81c2838708..28aa15ea87 100644 --- a/resources/i18n/pl_PL/fdmextruder.def.json.po +++ b/resources/i18n/pl_PL/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Mariusz 'Virgin71' Matłosz \n" "Language-Team: reprapy.pl\n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Końcowy G-code Ekstrudera" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Bezwzgl. Końcowa Pozycja Ekstrudera" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Początkowy G-code Ekstrudera" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Bezwzględna Pozycja Początkowa Ekstrudera" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "Numer wentylatora przypisanego do ekstrudera. Zmień z domyślnej wartości 0, tylko w przypadku, kiedy posiadasz oddzielny wentylator dla każdego ekstrudera." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "Współrzędna X końcowej pozycji ekstrudera podczas jego wyłączania." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 0d81dc6909..9e2c0dda30 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -16,6 +16,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.4\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Odległość utrzymywana od krawędzi modelu. Prasowanie do końca krawędzi siatki może powodować zadarte krawędzie na wydruku." @@ -60,10 +68,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Lista obszarów, we których głowica nie może się poruszać." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -156,6 +160,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Wszystkie ustawienia, które wpływają na rozdzielczość druku. Ustawienia te mają ogromny wpływ na jakość (i czas druku)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Zastosuj Dodatkową Ścianę" @@ -404,21 +412,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Obrys" -msgctxt "brim_gap label" -msgid "Brim Distance" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" msgstr "" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" +msgctxt "brim_gap label" +msgid "Brim Distance" msgstr "" msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Liczba Linii Obrysu" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Obrys Tylko na Zew" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -460,6 +468,18 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura obszaru roboczego" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "Wyśrodkuj obiekt" @@ -745,16 +765,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Odległość od wydruku do dolnej części podpory." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Odległość od wierzchołka podpory do wydruku." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -868,6 +888,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Włącz Chłodzenie Wydruku" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Włącz Retrakcję" @@ -900,6 +924,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Włączyć zewnętrzną osłonę. Powstanie powłoka wokół modelu, która będzie czyściła drugą dyszę, jeśli jest na tej samej wysokości, co pierwsza dysza." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -932,6 +960,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Wymuś drukowanie obrysu wokół modelu, nawet jeśli powierzchnia byłaby zajęta przez podpory. Zastępuje obszary podpór przez obrys. Dotyczy pierwszej warstwy." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Wszędzie" @@ -1036,6 +1068,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Współczynnik kompensacji przepływu" @@ -1048,6 +1084,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Wykres Temp. Przepływu" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość." @@ -1096,6 +1136,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Kompensacja przepływu na najbardziej zewnętrznej linii górnej powierzchni." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Kompensacja przepływu na liniach ściany na powierzchni górnej dla wszystkich linii ściany, z wyjątkiem najbardziej zewnętrznej." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Ustawienie przepływu na warstwie górnej i dolnej." @@ -1284,6 +1332,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Grupuj ściany zewnętrzne" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" @@ -1428,10 +1480,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Jeśli tratwa jest włączona, jest to dodatkowy obszar tratwy wokół modelu, który ma również tratwę. Zwiększenie marginesu wzmocni tratwę przy wykorzystaniu z większej ilości materiału i pozostawi mniej miejsca na wydruk." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Zignoruj geometrię wewnętrzną wynikającą z nakładania się brył w siatce i wydrukuj ją jako jedną. Może to spowodować zniknięcie niezamierzonych wewnętrznych ubytków." @@ -1660,6 +1724,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Wkład nałożony na ścieżkę zewnętrznej ściany. Jeśli zewnętrzna ścianka jest mniejsza niż dysza i jest drukowana po wewnętrznych ściankach, użyj tego przesunięcia, aby uzyskać otwór w dyszy, żeby nakładała się z wewnętrzną ścianą zamiast być na zewnątrz modelu." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1672,6 +1740,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1812,6 +1884,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Potnij siatkę na części. Możesz to zrobić, aby stworzyć określone miejsca w jednej siatce, które będą drukowane z innymi ustawieniami, a nawet innym ekstruderem." @@ -1909,8 +2005,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Zmień pozycję końcową ekstrudera na bezwzględną, zamiast względem ostatniej pozycji głowicy." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Niech pierwsza i druga warstwa nachodzą na siebie w osi Z, aby skompensować stratę filamentu w szczelinie powietrznej. Wszystkie modele powyżej pierwszej warstwy modelu będą obniżone o tą wartość." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1936,10 +2034,18 @@ msgctxt "material label" msgid "Material" msgstr "Materiał" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID Materiału" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Objętość materiału między czyszczeniem" @@ -2216,6 +2322,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "" @@ -2256,6 +2366,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normalny" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "" @@ -2388,10 +2502,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Przeprowadzaj prasowanie tylko na najwyższej warstwie siatki. Oszczędza to czas jeżeli niższe warstwy nie muszą mieć gładkie wykończenia powierzchni." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Drukuj obrys tylko na zewnątrz modelu. Zmniejsza to liczbę obrysu, który trzeba usunąć po wydruku, podczas gdy nie zmniejsza znacząco przyczepności do stołu." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Kąt Osłony Wycierającej" @@ -2448,6 +2558,14 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Długość Czyszczenia Zew. Ściana" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2501,8 +2619,20 @@ msgid "Prime Tower Acceleration" msgstr "Przyspieszenie Wieży Czyszczącej" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Obrys wieży czyszczącej" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2516,10 +2646,18 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Szerokość Linii Wieży Czyszczczenia" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Min. Objętość Wieży Czyszczącej" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Rozmiar Wieży Czyszczącej" @@ -2528,6 +2666,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Prędkość Wieży Czyszczenia" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Pozycja Wieży Czyszcz. X" @@ -2536,10 +2678,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Pozycja Wieży Czyszcz. Y" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Przyspieszenie Druku" @@ -2548,6 +2686,10 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Zryw Druku" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sekwencja Wydruku" @@ -2560,6 +2702,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Drukuj Cienkie Linie" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Wydrukuj wieżę obok wydruku, która służy do zmiany materiału po każdym przełączeniu dyszy." @@ -2580,6 +2726,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Drukuj części modelu, które są poziomo cieńsze niż rozmiar dyszy." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Prędkość używana podczas drukowania drugiej warstwy skóry mostu." @@ -2588,6 +2738,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Prędkość używana podczas drukowania trzeciej warstwy skóry mostu." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Wydrukuj wypełnienie przed wydrukowaniem ścian. Drukowanie ścian jako pierwsze może prowadzić do bardziej dokładnych ścian, ale pogorszy zwisy. Drukowanie wypełnienia najpierw prowadzi do mocniejszych ścian, ale wzór wypełnienia może czasem być widoczny przez powierzchnię." @@ -2632,6 +2790,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Przerwa Tratwy" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2660,6 +2822,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Prędk. Druku Podst. Tratwy" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Grubość Podstawy Tratwy" @@ -2676,6 +2842,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Prędk. Went. Tratwa" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2704,6 +2874,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Prędk. Druku Środka Tratwy" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Przerwy Środka Tratwy" @@ -2712,6 +2886,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Grubość Środka Tratwy" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Przysp. Druku Tratwy" @@ -2728,6 +2906,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Wygładzanie Tratwy" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2760,10 +2942,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Prędk. Druku Góry Tratwy" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Przerwy Góra Tratwy" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Losowe" @@ -2816,10 +3010,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Usuń Przecięcia Siatki" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Usuń obszary gdzie kilka siatek nakłada się na siebie. Może zostać użyte, jeżeli dwa obiekty do druku 2 materiałami nachodzą na siebie." @@ -2828,6 +3034,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Usuń puste warstwy poniżej pierwszej drukowanej warstwy jeżeli takie występują. Wyłączenie tego ustawienia może powodować puste pierwsze warstwy jeżeli Tolerancja Cięcia jest ustawiona na Włącznie lub Środek." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2848,6 +3066,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Zastępuje najbardziej zewnętrzną część wzoru górnego/dolnego za pomocą kilku koncentrycznych linii. Korzystanie z jednej lub dwóch linii poprawia dachy, które zaczynają się na wypełnieniu." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2920,6 +3142,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Wybór Rogu Szwu" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Ręczne ustawienie kolejności drukowania" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Ustaw wysokość osłony przeciwwiatrowej. Wybierz czy drukować osłonę do pełnej wysokości modelu czy do określonej wysokości." @@ -3320,10 +3546,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Rozdzielczość Połączenia Podpory" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Prędk. Połączenia Podpór" @@ -3608,6 +3830,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Przyspieszenie, z jakim są drukowane wewnętrzne ścianki górnej powierzchni." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Przyspieszenie, z jakim są drukowane najbardziej zewnętrzne ściany górnej powierzchni." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Przyspieszenie, z jakim drukowane są ściany." @@ -3668,6 +3898,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "Średnia odległość między losowymi punktami wprowadzonymi w każdym segmencie linii. Zwróć uwagę, że oryginalne punkty wielokąta są odrzucane, a zatem duża gładkość powoduje zmniejszenie rozdzielczości. Wartość ta musi być większa niż połowa Grubości Nierównej Skóry." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "Domyślną przyspieszenie ruchu głowicy." @@ -3748,6 +3982,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Odległość między liniami na górnej warstwie tratwy. Rozstaw powinien być równy szerokości linii, tak że powierzchnia jest pełna." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3944,6 +4182,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "Wysokość stopni w schodkowym dole podpory spoczywającej na modelu. Niska wartość utrudnia usunięcie podpory, ale zbyt duża wartość może prowadzić do niestabilnej podpory. Ustaw na zero, aby wyłączyć zachowanie schodkowe." @@ -4016,6 +4258,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "Długość materiału wycofanego podczas retrakcji." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "Materiał platformy roboczej zainstalowanej w drukarce." @@ -4108,6 +4354,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są najbardziej zewnętrzne ściany górnej powierzchni." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są wewnętrzne ściany górnej powierzchni." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany." @@ -4124,6 +4378,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "Maksymalna zmiana prędkości chwilowej z jaką wykonywane są ruchy jałowe." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "Maksymalna prędkość silnika osi X." @@ -4236,6 +4494,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" @@ -4492,6 +4762,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "Prędkość, w jaką są drukowane górne warstwy tratwy. Powinny być drukowane nieco wolniej, dzięki czemu dysza może powoli wypolerować sąsiednie linie powierzchni." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Prędkość drukowania wewnętrznych ścian górnej powierzchni." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Prędkość drukowania najbardziej zewnętrznych ścian górnej powierzchni." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "Szybkość, z jaką wykonuje się pionowy ruch skoku Z. Jest to zwykle mniej niż prędkość drukowania, ponieważ trudniej się porusza stołem drukarki." @@ -4553,8 +4831,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4616,6 +4894,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "Typ g-code, który ma być generowany." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Objętość materiału wyciekającego jest inna. Wartość ta powinna być zasadniczo zbliżona do średnicy dyszy do sześcianu." @@ -4632,6 +4914,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Szerokość wieży czyszczącej." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Szerokość wieży czyszczącej." @@ -4660,10 +4946,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Określa odległość, na jakiej ekstruder powinien wykonać rozbieg natychmiast przed rozpoczęciem ściany mostu. Rozbieg przed rozpoczęciem mostu może zredukować ciśnienie w dyszy i może stworzyć bardziej płaski most." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki w zewn. krawędzi tratwy mają być zaokrąglone. Wew. narożniki są zaokrąglane do półokręgów o promieniu równym wartości podanej tutaj. To ustawienie usuwa także otwory w zewn. krawędzi tratwy, które są mniejsze niż taki okrąg." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "To ustawienie ogranicza liczbę retrakcji występujących w oknie minimalnej długości ekstruzji. Dalsze retrakcje w tym oknie zostaną zignorowane. Pozwala to uniknąć wielokrotnych retrakcji na tym samym odcinku filamentu, ponieważ może to spłaszczyć filament i spowodować problemy z wyciskaniem filamentu." @@ -4700,6 +4998,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Szer. Usuwania Górnej Skóry" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Przyspieszenie wewnętrznej powierzchni górnej ściany" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Szarpnięcie na najbardziej zewnętrznych ścianach górnej powierzchni" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Prędkość wewnętrznej powierzchni górnej ściany" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Przepływ wewnętrznej ściany(ach) górnej powierzchni" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Przyspieszenie zewnętrznej powierzchni górnej ściany" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Przepływ na najbardziej zewnętrznej linii górnej powierzchni" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Szarpnięcie na wewnętrznych ścianach górnej powierzchni" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Prędkość najbardziej zewnętrznych ścian górnej powierzchni" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Przysp. Górnej Pow. Skóry" @@ -4992,10 +5322,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Ściany, które wystają więcej niż zadany kont, zostaną wydrukowane przy użyciu ustawień wystających ścian. Gdy wartość wynosi 90, żadne ściany nie będą traktowane jako wystające. Zwis, który jest obsługiwany przez podpory, nie będzie również traktowany jako zwis." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Sprawdzając, czy model znajduje się powyżej czy poniżej podpory, wykonaj stopnie o danej wysokości. Niższe wartości będą cięte wolniej, podczas gdy wyższe wartości mogą powodować drukowanie zwykłej podpory w niektórych miejscach, w których powinno istnieć połączenie." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5388,1224 +5714,26 @@ msgctxt "travel description" msgid "travel" msgstr "ruch jałowy" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Grupuj ściany zewnętrzne" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Umożliwia ręczne ustawienie kolejności drukowania na liście obiektów. Pierwszy obiekt z listy zostanie wydrukowany jako pierwszy." -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane." +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Obrys Tylko na Zew" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Przepływ na najbardziej zewnętrznej linii górnej powierzchni" +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Niech pierwsza i druga warstwa nachodzą na siebie w osi Z, aby skompensować stratę filamentu w szczelinie powietrznej. Wszystkie modele powyżej pierwszej warstwy modelu będą obniżone o tą wartość." -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Kompensacja przepływu na najbardziej zewnętrznej linii górnej powierzchni." +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Drukuj obrys tylko na zewnątrz modelu. Zmniejsza to liczbę obrysu, który trzeba usunąć po wydruku, podczas gdy nie zmniejsza znacząco przyczepności do stołu." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Przepływ wewnętrznej ściany(ach) górnej powierzchni" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Rozdzielczość Połączenia Podpory" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Kompensacja przepływu na liniach ściany na powierzchni górnej dla wszystkich linii ściany, z wyjątkiem najbardziej zewnętrznej." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Prędkość najbardziej zewnętrznych ścian górnej powierzchni" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Prędkość drukowania najbardziej zewnętrznych ścian górnej powierzchni." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Prędkość wewnętrznej powierzchni górnej ściany" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Prędkość drukowania wewnętrznych ścian górnej powierzchni." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Przyspieszenie zewnętrznej powierzchni górnej ściany" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Przyspieszenie, z jakim są drukowane najbardziej zewnętrzne ściany górnej powierzchni." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Przyspieszenie wewnętrznej powierzchni górnej ściany" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Przyspieszenie, z jakim są drukowane wewnętrzne ścianki górnej powierzchni." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Szarpnięcie na wewnętrznych ścianach górnej powierzchni" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są wewnętrzne ściany górnej powierzchni." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Szarpnięcie na najbardziej zewnętrznych ścianach górnej powierzchni" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są najbardziej zewnętrzne ściany górnej powierzchni." - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)." - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Sylwetka 2D głowicy drukującej (z nasadką wentylatora)." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Korekcja objętości materiału ekstrudowanego za każdym razem, kiedy drukowane jest wypełn. spaghetti." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Próg zmiany warstw" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Maks. zmiana zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Opóźnienie zmiennych warstw" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Krok zmian zmiennych warstw" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Dostosowuje gęstość wypełnienia spaghetti. Należy zauważyć, że Gęstość Wypełnienia kontroluje tylko rozstaw linii wzoru napełniania, a nie ilość wytłaczania wypełnienia spaghetti." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Po przełączeniu ekstrudera, wytrzyj materiał wyciekający z dyszy na pierwszą drukowaną część. powoduje to bezpieczny, powolny ruch wycierania w miejscu gdzie wyciekający materiał nie spowoduje dużej szkody dla powierzchni modelu." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Zamieniaj Kieszenie Krzyża 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Zmień Kierunek Skóry" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Zmień kierunek, w jakim drukowane są górne/dolne warstwy. Zazwyczaj są one drukowane na ukos. Ustawienie to dodaje kierunek \"tylko X\" i \"tylko Y\"." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Ilość filamentu, która jest czyszczona podczas wycierania na wieży czyszczącej. Czyszczenie jest użyteczne do kompensowania utraty filamentu przez wypływanie z nieużywanej dyszy." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Zastosuj przesunięcie głowicy względem." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Auto Temperatura" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Maks. Nachylenie Ściany Mostu" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Kształt stołu" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Wyśrodkuj Obiekt" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Zmień temperaturę każdej warstwy automatycznie przy średniej prędkości przepływu tej warstwy." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Okrągła Wieża Czyszcząca" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji. Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach powłoki, a także kombinować tylko wewnątrz wypełnienia. Opcja \"Wewnątrz Wypełnienia\" wymusza takie samo zachowanie, jak opcja \"Nie w Powłoce\" we wcześniejszych wydaniach Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "Kombinowanie utrzymuje dyszę w już zadrukowanych obszarach podczas ruchu jałowego. Powoduje to nieco dłuższe ruchy jałowe, ale zmniejsza potrzebę retrakcji Jeśli kombinowanie jest wyłączone, materiał się cofa, a dysza przemieszcza się w linii prostej do następnego punktu. Można też unikać kombinowania na górnych/dolnych obszarach skóry przez kombinowanie tylko wewnątrz wypełnienia." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Kompensuj" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Komp. Wew. Nakład. się Ścian" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Komp. Zew. Nakład. się Ścian" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Kompensuj Nakładanie się Ścian" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których ściana jest drukowana kiedy jest już w tym miejscu ściana." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których wewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Kompensuje przepływ dla części, których zewnętrzna ściana jest drukowana kiedy jest już w tym miejscu ściana." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Koncentryczny 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Łączy końce gdzie wypełnienie spotyka się z wewn. ścianą za pomocą linii, które podążają za kształtem wewn. ściany. Włączenie tej opcji może spowodować lepsze łączenie się wypełnienia ze ścianą i redukuje efekty związane z jakością na pionowych ścianach. Wyłączenie tej opcji redukuje ilość użytego materiału." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Łączy górne/dolne ścieżki powłoki, gdy są one prowadzone obok siebie. Przy wzorze koncentrycznym, załączenie tego ustawienia znacznie zredukuje czas ruchów jałowych, ale ze względu na to, że połączenie może nastąpić w połowie drogi ponad wypełnieniem, ta fukncja może pogorszyć jakość górnej powierzchni." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Kontroluje, czy rogi na zewn. linii modelu wpływają na pozycję szwu. Brak oznacza, że rogi nie mają wpływu na pozycję szwu. Ukryj Szew powoduje, że szew będzie się bardziej pojawiał na wewn. rogach. Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na zewn. rogach. Ukryj lub Pokaż Szew powoduje, że szew będzie się bardziej pojawiał na wewn. lub zewn. rogach." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Prędkość Chłodzenia" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Tworzy mały węzeł u góry linii w górę, dzięki czemu kolejna pozioma warstwa ma większą szansę połączenia się z nią. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Opóźnienie po pochyłym ruchu. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Opóźnienie czasu po wzniesieniu w górę, tak aby linia idąca w górę mogła zesztywniać. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Czas opóźnienia pomiędzy dwoma poziomymi segmentami. Dzięki takiemu opóźnieniu może powstać lepsza przyczepność do poprzedniej warstwy, przy zbyt dużym opóźnieniu może jednak prowadzić do opadania. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Określa, która siatka wypełnienia znajduje się wewnątrz wypełnienia innej siatki wypełnienia. Siatka wypełniająca o wyższym porządku modyfikuje wypełnienie siatki wypełnień o niższym porządku i normalnych siatek." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Zakazane obszary" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Odległość między dyszą a liniami skierowanymi w dół. Większe prześwity powodują ukośne linie skierowanie w dół o mniej stromym kącie, co z kolei skutkuje mniejszymi połączeniami z następną warstwą. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Dystans przemieszczania się ku górze, który jest wytłaczany z połową szybkości.\n" -#~ "Może to prowadzić do lepszej przyczepności do wcześniejszych warstw, bez zbytniego podgrzewania materiału na tych warstwach. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Odległość podpory od zwisu w kierunkach X/Y " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Odległość o jaką spada materiału przez wytłaczanie w górę. Długość ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Odległość, z jaką materiał wytłoczony z góry jest przeciągany równolegle do dolnej ekstruzji. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "Końcowy G-code" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Zrówn. Przepływ Filamentu" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Wszędzie" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Rozszerz Dolną Powłokę Do Wypełn." - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Rozszerz Powłokę Do Wypełn." - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Rozszerz Górną Powłokę Do Wypełn." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Rozszerz obszary powłoki na górze i/lub dole powierzchni płaskich. Domyślnie, powłoka kończy się na linii ściany otaczające wypełnienie, chociaż może to prowadzić do powstawania dziur kiedy gęstość wypełnienia jest niska. Ustawienie to rozciąga powłokę poza linię ściany, dzięki czemu wypełnienie na kolejnej warstwie osiada na powłoce." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Rozszerz dolną powłokę (obszary, pod którym jest powietrze) tak, aby zostały zakotwiczone o warstwy wypełniające powyżej i poniżej." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Rozszerz górne obszary ścian (obszary, które mają ponad sobą powietrze) tak, aby wspomagały wypełnienie powyżej." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Opcja eksperymentalna: W dolnym obszarze podpory powinny być mniejsze niż na zwisie." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Odległość Park. Filamentu" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Wypełnij Szczeliny Między Ścianami" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Wypełnia szczeliny pomiędzy ściany gdzie żadna ściana nie pasuje." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtruj Małe Luki" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtruj małe luki, aby zredukować bloby na zewnątrz modelu." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Prędkość pierwszej warstwy" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Kompensacja przepływu w górę i w dół. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Kompensacja przepływu podczas drukowania płaskich linii. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Kompensacja przepływu: ilość ekstrudowanego materiału jest mnożona przez tę wartość." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Kompensacja przepływu: ilość wytłaczanego materiału jest mnożona przez tę wartość. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Współczynnik kompensacji przepływu" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Maks. offset ekstruzji do kompensowania przepływu" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID materiału. To jest ustawiana automatycznie " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Wysokość Suwnicy (Gantry)" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Polecenia G-code, które są wykonywane na samym końcu - oddzielone za pomocą \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Polecenia G-code, które są wykonywane na samym początku - oddzielone za pomocą \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Wersja G-code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Generuj drzewiaste podpory z gałęziami podpierającymi wydruk. Może to zredukować zużycie materiału i czas wydruku, ale bardzo zwiększa czas cięcia." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Przejedź nad górną powierzchnią dodatkowy raz, ale bez ekstrudowania materiału. Topi to plastyk na górze, co powoduje gładszą powierzchnię." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Posiada podgrzewany stół" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Prędkość nagrzewania" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Długość strefy cieplnej" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Wydrąż Model" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "W jakich odległościach powinny znajdować się gałęzie kiedy dotykają modelu. Mały dystans spowoduje więcej punktów podparcia, co da lepsze nawisy, ale utrudni usuwanie podpór." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Jak ciąć warstwy z ukośnymi powierzchniami. Obszary warstwy mogą być generowane na podstawie miejsca gdzie środek warstwy przecina się z powierzchnią (Środek). Alternatywnie każda warstwa może mieć obszary, które wpadają do środka objętości poprzez wysokość warstwy (Wyłączne) lub warstwa ma obszary, które wpadają do środka w każdym miejscu na warstwie (Włącznie). Wyłącznie zatrzymuje najwięcej detali, Włącznie powoduje najlepsze dopasowanie, a Środek wymaga najmniej czasu do przetworzenia." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Gdy załączone, retrakcja jest używana zamiast kombinowanego ruchu jałowego, który zastępuje ściankę, której przepływ jest mniejszy od minimalnego." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Zignoruj Małe Luki Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Na każdej warstwie rozpocznij drukowanie obiektu blisko tego samego punktu, abyśmy nie rozpoczynali nowej warstwy w miejscu gdzie skończyła się poprzednia warstwa. Powoduje to lepsze nawisy i małe elementy, ale wydłuża czas druku." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Należy uwzględnić temperaturę stołu" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Uwzględnij temperaturę materiału" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Porządek Siatki Wypełnienia" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Przesunięcie w Osi Z Warstwy Początk." - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Esktruder Wewn. Ściany" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "Począt. na Środku" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Węzeł" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Ogranicz Retrakcje Pomiędzy Podporami" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Obszar głowicy drukarki" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Głębokość Drukarki" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Obszar Głowicy i Wentylatora Drukarki" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Obszar Głowicy Drukarki" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Wysokość drukarki" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Szerokość drukarki" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Twórz wieżę czyszczącą o okrągłym kształcie." - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Maksymalna Prędk. Posuwu" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Maks. Prędk. dla Zrówn. Przepływu" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Maksymalna Prędk. Z" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Maksymalna prędkość drukowania podczas ustawiania prędkości druku w celu zrównoważenia przepływu." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Pozycja siatki X" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Pozycja siatki Y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Pozycja siatki Z" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Minimalna Średnica" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Minimalny Przepływ Dla Ścianek" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Minimalny dopuszczalny przepływ procentowy dla linii ścianki. Kompensacja nakładania się ścianek redukuje przepływ, gdy dana ścianka znajduje się blisko wydrukowanej już ścianki. Ścianki, których przepływ powinien być mniejszy, niż ta wartość, będą zastąpione ruchami jałowymi. Aby używać tego ustawienia należy załączyć kompensację nakładających się ścianek oraz drukowanie ścianek zewnętrznych przed wewnętrznymi." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla interfejsu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla podłoża podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Minimalna średnica w kierunkach X/Y o małej powierzchni, który jest wspierana przez specjalną wieżę wspierającą." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Bez skóry" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Zwykle Cura próbuje zszywać małe dziury w siatce i usunąć części warstwy z dużymi otworami. Włączenie tej opcji powoduje zostawienie tych części, których nie można zszywać. Ta opcja powinna być używana jako ostatnia deska ratunku, gdy wszystko inne nie dostarczy właściwego G-code." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Nigdzie" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Kąt dyszy" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Długość dyszy" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Liczba Ekstruderów, które są dostępne" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Przesunięcie Ekstrudera" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Unikaj retrakcji podczas poruszania się od podpory do podpory w linii prostej. Załączenie tej funkcji spowoduje skrócenie czasu druku, lecz może prowadzić do nadmiernego nitkowania wewnątrz struktur podporowych." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Twórz kieszenie tylko w połowie czterostronnych skrzyżowań we wzorze krzyż 3D i zamieniaj pozycję kieszonek pomiędzy wysokościami gdzie wzór dotyka samego siebie." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Optymalizuj kolejność, według której drukowane są ściany, aby zredukować ilość retrakcji i długości ruchu jałowego. Większość części powinno na tym zyskać, ale niektóre mogą drukować się dłużej, dlatego prosimy o porównaniu czasu drukowania z i bez włączonej opcji." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientacja wzoru wypełnienia dla podpór. Wzór podpory jest obracany w płaszczyźnie poziomej." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Zew. Ściany Przed Wew" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Zew. średnica dyszy" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Odsetek ukośnych linii ułożonych w dół, który jest przykryty poziomą linią. Może to uniemożliwić zwisanie górnej krawędzi linii ułożonejw górę. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferuj Retrakcję" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Pole Czyszczące Wieży Czyszcz." - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Grubość Wieży Czyszcz." - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Wydrukuj tylko zewnętrzną powierzchnię o słabej strukturze tkaniny, drukując \"w cienkim powietrzu\". Jest to realizowane poprzez poziomy wydruk konturów modelu w określonych przedziałach Z, które są połączone przez linie skierowane w górę i w dół po porzekątnej." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Drukowanie wypełnienia tak często, aby filament zwisał chaotycznie wewnątrz przedmiotu. Zmniejsza to czas drukowania, ale zachowanie jest raczej nieprzewidywalne." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Wydrukuj cieńsze niż normalne linie szybciej, tak aby ilość materiału wytłaczanego na sekundę pozostała taka sama. Cienkie części modelu mogą wymagać drukowania linii o mniejszej szerokości linii niż podane w ustawieniach. To ustawienie kontroluje zmiany prędkości dla takich linii." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Drukuje ściany w kolejności od zewnątrz do wewnątrz, gdy jest włączona. Może to poprawić dokładność wymiarów w modelach X i Y przy użyciu plastiku o wysokiej lepkości, takiego jak ABS; może jednak zmniejszyć jakość druku zewnętrznego, zwłaszcza na zwisach." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Rozstaw Linii Tratwy" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Usuń całe wypełnienie i spowoduj, aby środek modelu był wybieralny dla podpór." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Objętościowy)" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Rozdzielczość przeliczania kolizji, aby unikać zderzeń z modelem. Ustawienie niższej wartości spowoduje bardziej dokładne drzewa, które rzadziej zawodzą, ale zwiększa to drastycznie czas cięcia." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Wycofanie" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Prędkość retrakcji Czyszczenia" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Powłoka" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Pokaż warianty drukarki" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Współczynnik Skurczu" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Współczynnik skurczu w procentach." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pomijaj Niektóre Połączenia Zygzak" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pomijaj jedno na każde N linii połączeń, aby struktury podpór łatwiej się odrywały." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pomijaj niektóre połączenia Zygzak, aby struktura podpór łatwiej się odrywała." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Małe elementy na pierwszej warstwie zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności i dokładności." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Małe obiekty zostaną wydrukowane z podanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może pomóc w zachowaniu dokładności." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Wygładź spiralny kontur, aby zmniejszyć widoczność szwu Z (szew Z powinien być ledwo widoczny na wydruku, ale nadal będzie widoczny w widoku warstwy). Należy pamiętać, że wygładzanie będzie miało tendencję do rozmycia drobnych szczegółów powierzchni." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Przepływ Spaghetti" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Wypełnienie Spaghetti" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Ekstra Objętość Wypełn. Spaghetti" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Maks. Wys. Wypełn. Spaghetti" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Krokowe Wypełn. Spaghetti" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Wkład Spaghetti" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Maks. Kąt Wypełn. Spaghetti" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Prędkość, z jaką porusza się dysza podczas wytłaczania materiału. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Prędkość drukowania ukośnej linii w dół. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Szybkość drukowania linii do góry „w powietrzu”. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Prędkość drukowania pierwszej warstwy, która jest jedyną warstwą dotykającą stołu. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Prędkość drukowania poziomych konturów modelu. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "Początk. G-code" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Rozp. Warstwy w tym Samym Punkcie" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Strategia zapewniająca podłączenie dwóch kolejnych warstw w każdym punkcie połączenia. Wycofanie pozwala na utwardzenie linii idących w górę we właściwej pozycji, ale może powodować \"mielenie\" filamentu. Węzeł może być wykonany na końcu linii do góry, aby zwiększyć szanse na połączenie z nią i pozostawić dobrą linię; może to jednak wymagać wolnych prędkości druku. Inną strategią jest wyrównanie opadania górnej krawędzi. Jednak linie nie zawsze spadają zgodnie z przewidywaniami." - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Czworościenny" - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Wartość nałożenia pomiędzy skórą a ścianami jako procent szerokości linii. Delikatne nałożenie pozwala na dobre połączenie ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "Ilość nałożenia pomiędzy skórą a ścianami w procentach szerokości linii skóry. Delikatne nałożenie pozawala na lepsze połączenie się ścian ze skórą. Jest to procent średniej szerokości linii skóry i wewnętrznej ściany." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Ilość nakładania się skóry i ścian. Lekkie nałożenie pozwala ściśle łączyć się ze skórą." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "Długość retrakcji: Ustaw na 0, aby wyłączyć retrkację. To powinno ogólnie być takie samo jak długość strefy grzewczej." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Kąt gałęzi. Użyj mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, aby mieć większy zasięg." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "Odległość jaka zostaje pokryta podczas tworzenia połączenia z wewnętrznego konturu dachu. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Długość końcówki wewnętrznej linii, która jest rozciągana podczas powrotu do zewnętrznej linii dachu. Trasa ta jest kompensowana. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "Odległość na jaką powłoki zostają rozszerzone do wypełnienia. Domyślna odległość wystarcza, aby pokonać szczelinę między liniami wypełnienia i nie dopuścić do powstania dziur, gdzie spotyka się z powłoką, gdy gęstość wypełnienia jest niska. Mniejsza odległość będzie często wystarczająca." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Odległość, na jaką opadają linie dachu wydrukowane \"w powietrzu\" podczas druku. Ta odległość jest kompensowana. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "Ekstruder jest przesuwany z normalnej wysokości pierwszej warstwy o tą wartość. Może być dodatnia (uniesienie) lub ujemna (obniżenie). Niektóre typy filamentu przyklejają się lepiej do stołu jeżeli ekstruder jest lekko uniesiony." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "Wysokość linii w górę i po przekątnej w dół między dwiema częściami poziomymi. Określa ona całkowitą gęstość struktury siatki. Dotyczy tylko Drukowania Drutu." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "Pozioma odległość między obwódką a pierwszą warstwą nadruku.\n" -#~ "Jest to o minimalnej odległości. Z tej odległości linie będą nakładane w kierunku zewnętrznym." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "Wypełnienie jest przesunięte o taką odległość wzdłuż osi Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "Maksymalna dozwolona różnica wysokości od podstawowej wysokości warstwy w mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "Maksymalna dozwolona szerokość obszaru powietrza pod linią ściany zanim zostanie wydrukowana ściana używająca ustawień mostu. Wyrażona w procentach szerokości linii ściany. Kiedy przestrzeń powietrza jest szersza od tego, linia ściany jest drukowana używając ustawień mostu. W przeciwnym wypadku linia ściany jest drukowana z normalnymi ustawieniami. Tym niższa wartość, tym większa szansa, że linie ściany na nawisach będą drukowane z ustawieniami mostu." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "Maksymalny kąt w odniesieniu do Osi Z wewnątrz wydruku dla obszarów, które mają być wypełnione wypełnieniem spaghetti. Obniżenie tej wartości powoduje, że więcej części modelu, które są pod kątem, będzie wypełnianych na każdej warstwie." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "Maksymalne odchylenie dozwolone przy zmniejszaniu rozdzielczości dla ustawienia „Maksymalna rozdzielczość”. Jeśli to zwiększysz, wydruk będzie mniej dokładny, ale G-Code będzie mniejszy." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Maksymalna odległość między podporami w kierunkach X/Y. Gdy oddzielne struktury są bliżej siebie niż ta wartość, struktury łączą się w jedną." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "Maksymalna odległość w mm do skompensowania." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "Maksymalna wysokość przestrzeni wewnętrznej, którą można łączyć i napełniać od góry." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "Maksymalna prędkość przesuwu stołu. Ustawienie na zero powoduje, że druk używa domyślnych ustawień oprogramowania dla maksymalnej prędkości z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "Minimalna odległość między zewnętrzną stroną formy i zewnętrzną stroną modelu." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "Współczynnik mnożący przepływu -> tłumaczenie odległości." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "Odsunięcie od ścian, z których będzie drukowane wypełnienie spaghetti." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego. Linia i zygzakowy wypełnienie zmienia kierunek na przemiennych warstwach zmniejszając koszt materiału. Wzory siatki, trójkątne, sześcienne, czworościenne i koncentryczne są w pełni drukowane na każdej warstwie. Wypełnienie sześcienne i czworościenne zmienia się co każdą warstwę, aby zapewnić równe rozłożenie siły w każdym kierunku." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzór materiału wypełniającego wydruk. Linie i zygzaki zmieniają kierunek na przemiennych warstwach, redukując koszty materiału. Kratka, trójkąty, tri-sześciokąt, sześcienne, ośmiościenne, ćwierć sześcienny i koncentryczny wzór są drukowane w pełni na każdej warstwie. Sześcienne, ćwierć sześcienne i czworościenne wypełnienie zmienia się co każdą warstwę, aby zapewnić równy rozkład siły w każdym kierunku." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Wzorzec wypełnienia wydruku. Kierunek zamiany linii i zygzaka na alternatywnych warstwach, zmniejsza koszty materiałów. Wzorzec siatki, trójkąta, sześcianu, oktetu, ćwiartki sześciennej, krzyżyka i koncentryczny, są w pełni drukowane na każdej warstwie. Gyroid, sześcian, świartka sześcienna i oktet zmienia się z każdą warstwą, aby zapewnić bardziej równomierny rozkład sił w każdym kierunku." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "Prędkość dla pierwszej warstwy. Niższa wartość jest zalecane w celu poprawy przyczepności do stołu." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "Temperatura stosowana dla obszaru roboczego. Jeżeli jest ustawione 0, temperatura nie będzie ustawiona." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "Temperatura stosowana dla podgrzewanej platformy roboczej. Jeżeli jest ustawione 0, temperatura stołu nie będzie ustawiona." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "Temperatura stosowana przy podgrzewanym stole. Jeśli jest to 0, stół nie rozgrzeje się dla tego wydruku." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "Grubość pustej wieży czyszczącej. Grubość większa niż połowa minimalnej objętości wieży czyszczącej spowoduje, że wieża będzie miała dużą gęstość." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "Grubość ścian zewnętrznych w kierunku poziomym. Ta wartość podzielona przez szerokość linii ściany określa liczbę ścian." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Typ G-code jaki ma być generowany." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "To ustawienie kontroluje jak bardzo wewn. narożniki zewn. linii tratwy są zaokrąglone. Wewn. narożniki są zaokrąglone do pół-okręgów o promieniu równym wartości podanej w tym miejscu. To ustawienie usuwa też otwory w zewn. linii tratwy, które są mniejsze niż taki okrąg." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Opóźnienie w wyborze, czy użyć mniejszej warstwy, czy nie. Ta liczba jest porównywana do najbardziej stromego nachylenia na warstwie." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "Czas, który poświęca się na zewnętrznych obrzeżach otworu, który ma stać się dachem. Dłuższy czas może spowodować lepsze połączenie. Odnosi się tylko do Drukowania Drutu." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Górne i/lub dolne powierzchnie przedmiotu o kącie większym niż to ustawienie nie będą miały rozszerzonego górnej/dolnej skóry. Pozwala to uniknąć powiększania wąskich ścian, które powstają, gdy powierzchnia modelu ma blisko pionowe nachylenie. Kąt 0 ° jest poziomy, a kąt 90 ° jest pionowy." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Drzewne Podpory" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Kąt Gałęzi Drzewnej Podpory" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Średnica Gałęzi Drzewiastej Podpory" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Kąt Średnicy Gałęzi Drzewiastej Podpory" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Odległość Gałęzi Drzewiastej Podpory" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Rozdzielczość Kolizji Drzewiastej Podpory" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Liczba Linii Ściany Drzewiastej Podpory" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Grubość Ściany Drzewiastej Podpory" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Użyj zmiennych warstw" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Używaj ekstruzji względnej zamiast bezwzględnej. Używanie względnych kroków osi E powoduje łatwiejszy postprocessing Gcodu. Jednakże nie jest to wspierane przez wszystkie drukarki i może powodować lekkie zakłamania w ilości podawanego materiału w porównaniu do kroków bezwzględnych. Niezależnie od tego ustawienia, tryb ekstruzji będzie zawsze ustawiany jako bezwzględny przez wyjściem jakiegokolwiek skryptu Gcode" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "DD Dolne Opóźnienie" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "DD Prędk. Drukowania Dołu" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "DD Przepływ Połączenia" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "DD Wysokość Połączenia" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "DD Prędkość Drukowania w Dół" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "DD Przeciągnij Wzdłuż" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "DD Łatwe Wzniesienie" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "DD Spadek" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "DD Płaskie Opóźnienie" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "DD Płaskie Przepływ" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "DD Przepływ" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "DD Prędkość Drukowania Poziomo" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "DD Rozmiar Węzła" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "DD Prześwit Dyszy" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "DD Rozciągaj Dach" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "DD Spadek Dachu" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "DD Długość Wkładu Dachu" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "DD Opóźnienie Zew. Dachu" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "DD Prędkość" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "DD Prostuj Linie w Dół" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "DD Strategia" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "DD Opóźnienie Góry" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "DD Prędkość Drukowania do Góry" - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Oczekiwanie na ogrzanie stołu" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Oczekiwanie na ogrzanie dyszy" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Ścianka o większym kącie nawisu niż podany będzie drukowana z użyciem ustawień nawisającej ścianki. Przy wartości 90°, żadna ścianka nie będzie traktowana jako ścianka nawisająca." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Kiedy niezerowe, przesunięcie w osi Z jest redukowane do zera w trakcie drukowania takiej ilości warstw. Wartość 0 oznacza, że przesunięcie pozostaje stałe dla wszystkich warstw wydruku." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Jeśli model ma małe, pionowe szczeliny, to można wykorzystać dodatkowe 5% mocy obliczeniowej do wygenerowania górnej i dolnej skóry w wąskich przestrzeniach. W takim wypadku, wyłącz tę opcję." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Czy drukować wypełnienie spaghetti krokami, czy ekstrudować filament wypełnienia na końcu wydruku." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Wytrzyj Dyszę po Przełączeniu" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Czyszczący skok Z jeśli jest retrakcja" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Drukowanie Drutu" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Warstwy Zbieżne Przesunięcia Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Ilość Pominięć Połącz. Zygzak" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "category_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "poprawki_kategorii" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "eksperymentalne!" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Sprawdzając, czy model znajduje się powyżej czy poniżej podpory, wykonaj stopnie o danej wysokości. Niższe wartości będą cięte wolniej, podczas gdy wyższe wartości mogą powodować drukowanie zwykłej podpory w niektórych miejscach, w których powinno istnieć połączenie." diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..2529ed73e4 --- /dev/null +++ b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 0179ae338b..a20b875523 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" -"PO-Revision-Date: 2023-10-23 05:56+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: 2024-04-02 02:31+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4.2\n" #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." @@ -123,6 +123,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Salvar Projeto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "@Salvar Universal Cura Project..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "Aju&stes" @@ -267,6 +271,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Conexão de nuvem não está disponível para uma impressora" msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Uma parte muito densa e forte mas com tempo de impressão maior. Ótimo para partes funcionais." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." @@ -501,10 +509,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anônimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Relatórios de falhas anônimos" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Framework de Aplicações" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Se aplica a" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplicar deslocamentos de Extrusão ao G-Code" @@ -563,6 +579,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organizar Todos os Modelos em Grade" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Posicionar Seleção" + msgctxt "@label:button" msgid "Ask a question" msgstr "Fazer uma pergunta" @@ -627,6 +647,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Backups" +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -683,6 +707,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculado" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Navegação de câmera:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Renderização de câmera:" @@ -1016,6 +1044,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Não foi possível interpretar a resposta de servidor." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Não foi possível carregar o plugin GCodeWriter. Tente reabilitar o plugin." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Não foi possível conectar ao Marketplace." @@ -1266,10 +1298,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " @@ -1418,6 +1446,10 @@ msgctxt "@label" msgid "Draft" msgstr "Rascunho" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Largar Todos os Modelos na plataforma de impressão" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicar" @@ -1544,6 +1576,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar Seleção..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Exportar Universal Cura Project" + msgctxt "@button" msgid "Export material archive" msgstr "Exportar arquivo de material" @@ -1577,10 +1613,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-Code Final do Extrusor" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Duração do G-code Final do Extrusor" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-Code Inicial do Extrusor" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Duração do G-code Inicial do Extrusor" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Extrusor {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusor(es) Desabilitado(s)" @@ -1647,6 +1696,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Falha em salvar o arquivo de materiais" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Falha ao escrever em impressora de nuvem específica: {0} não presente nos clusters remotos." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" @@ -1788,6 +1842,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" +msgid "FreeCAD trackpad" +msgstr "Trackpad do FreeCAD" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visão Frontal" @@ -1876,6 +1933,10 @@ msgctxt "@action" msgid "Get started" msgstr "Começar" +msgctxt "@label" +msgid "Global" +msgstr "Global" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globais" @@ -1925,6 +1986,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Omitir todas as impressoras conectadas" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Omitir ajustes" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Ocultar este ajuste" @@ -1995,12 +2060,16 @@ msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora. msgctxt "@label" msgid "In order to start using Cura you will need to configure a printer." -msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora:" +msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora." msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Para usar o pacote você precisará reiniciar o Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "Incluir nome de conta da Ultimaker" + msgctxt "@label" msgid "Infill" msgstr "Preenchimento" @@ -2357,6 +2426,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot Printfile" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Gerador de Makerbot Printfile" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter não conseguiu salvar no caminho designado." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter não suporta modo texto." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar Materiais..." @@ -2688,6 +2773,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Não há resultados encontrados com o filtro atual" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Nenhum valor específico foi definido" + msgctxt "@label" msgid "No time estimation available" msgstr "Sem estimativa de tempo disponível" @@ -2789,6 +2878,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Oops! Encontramos um erro inesperado durante seu processo de fatiamento. Esteja assegurado que automaticamente recebemos os registros de falha para análise se você não disabilitou compartilhamento de dados nas suas preferências. Para nos assistir melhor, considere compartilhar detalhes do seu projeto em nosso rastreador de problemas." + msgctxt "@action:button" msgid "Open" msgstr "Abrir" @@ -2817,10 +2910,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir Arquivo de Projeto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Abrir Universal Cura Project (UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Abrir arquivo de Universal Cura Project (UCP)" + msgctxt "@action:label" msgid "Open With" msgstr "Abrir Com" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Abrir como UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como projeto" @@ -3037,6 +3142,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Por favor se conecte à sua conta Ultimaker para permitir o envio de dados não-anônimos." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." @@ -3133,6 +3242,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimir" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir depois" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3439,8 +3556,12 @@ msgid "Provides support for reading model files." msgstr "Provê suporta a ler arquivos de modelo." msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." +msgid "Provides support for writing 3MF and UCP files." +msgstr "Provê suporte a escrever arquivos 3MF e UCP." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Provê suporte à escrita de Pacotes de Formato MakerBot." msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3680,8 +3801,12 @@ msgid "Save Cura project" msgstr "Salvar o projeto Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salvar o projeto Cura e imprimir o arquivo" +msgid "Save Cura project and .makerbot print file" +msgstr "Salvar projeto do Cura e arquivo de impressão .makerbot" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Salvar projeto Cura e arquivo de impressão .ufp" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3707,6 +3832,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Salvar novo perfil" +msgctxt "@action:button" +msgid "Save project" +msgstr "Salvar projeto" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Grava o arquivo .umm em um pendrive USB." @@ -3810,6 +3939,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Enviar relatório de falha à UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Enviar relatórios de falha com sua conta registrado na Ultimaker e o nome do projeto para o Ultimaker Sentry. Nenhum dado real do modelo é enviado." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Enviar relatórios de falha sem qualquer informação ou dados de modelos pessoalmente identificável para a Ultimaker." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Enviar relatórios de falha do engine" + msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" @@ -3862,6 +4003,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "Ajustes" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Ajustes carregados do arquivo UCP" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" @@ -3930,6 +4075,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Devem falhas de fatiamento serem automaticamente relatadas à Ultimaker? Nota, nenhum dado de modelos, endereços IP ou outros tipos de informação pessoalmente identificável é enviada ou armazenada a não ser que você dê permissão explícita." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" @@ -3986,6 +4135,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Exibir relatório de falha detalhado" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Exibir ajustes" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Exibir diálogo de resumo ao salvar projeto" @@ -4062,10 +4215,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Fatiamento falhado" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Fatiando..." @@ -4074,6 +4223,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" +msgctxt "@label" +msgid "Solid" +msgstr "Sólido" + msgctxt "name" msgid "Solid View" msgstr "Visão Sólida" @@ -4199,10 +4352,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com sucesso." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Ajustes sugeridos de Material" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Ajustes sugeridos de Perfil" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo - Projeto do Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Resumo - Abrir Universal Cura Project (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Resumo - Universal Cura Project" + msgctxt "@label" msgid "Support" msgstr "Suporte" @@ -4325,6 +4494,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "O backup excede o tamanho máximo de arquivo." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "O perfil equilibrado é projetado para conseguir um equilíbrio entre produtividade, qualidade de superfície, propriedades mecânicas e acuidade dimensional." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "A altura-base da mesa de impressão em milímetros." @@ -4578,6 +4751,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Este é um arquivo de projeto Universal do Cura. Você gostaria de abri-lo como um projeto do Cura, ou Cura Universal Project, ou importar os modelos dele?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" @@ -4667,6 +4844,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Este ajuste pode não ter bom desempenho ao exportar para Universal Cura Project, Usuários devem adicioná-lo assumindo o risco." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Este ajuste pode não ter bom desempenho ao exportar para Universal Cura Projecto. Usuários devem adicioná-lo assumindo o risco." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" @@ -4898,6 +5083,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Não foi possível escrever para arquivo: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Indisponível" @@ -4918,6 +5108,16 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Project" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" +"Arquivos Universal Cura Project podem ser impressos em impressoras 3D diferentes enquanto retêm dados posicionais e ajustes selecionados. Quando exportados, todos os modelos presentes na plataforma de impressão serão incluídos juntamente à sua posição, orientação e escala atuais. Você pode também selecionar quais ajustes por extrusor ou por modelo devem ser " +"incluídos para assegurar impressão apropriada." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuração de sistema universal de construção" @@ -5107,6 +5307,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Atualiza configurações do Cura 5.6 para o Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carregar Firmware personalizado" @@ -5139,6 +5343,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidade, incluindo geração Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "Valor" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "Atualização de Versão de 2.1 para 2.2" @@ -5243,6 +5451,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "Atualização de Versão de 5.4 para 5.5" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Atualização de Versão de 5.6 para 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impressoras na Digital Factory" @@ -5320,6 +5532,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Que impressora você gostaria de configurar?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Que tipo de navegação de câmera deve ser usada?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Que tipo de renderização de câmera deve ser usada?" @@ -5533,6 +5749,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "hoje" @@ -5561,10 +5781,6 @@ msgstr "{} complementos falharam em baixar" #~ msgstr[0] "... e {0} outra" #~ msgstr[1] "... e {0} outras" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Posicionar Seleção" - #~ msgctxt "@tooltip:button" #~ msgid "Become a 3D printing expert with UltiMaker e-learning." #~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." @@ -5573,6 +5789,10 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Cura does not accurately display layers when Wire Printing is enabled." #~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." @@ -5601,10 +5821,22 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Material profiles not installed" #~ msgstr "Perfis de material não instalados" +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "Provê suporte à escrita de arquivos 3MF." + +#~ msgctxt "@option" +#~ msgid "Save Cura project and print file" +#~ msgstr "Salvar o projeto Cura e imprimir o arquivo" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Visão Simulada" +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + #~ msgctxt "@label" #~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." #~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index ffa30c9afa..09f8e20425 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" -"PO-Revision-Date: 2021-04-11 17:09+0200\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-04-01 22:39+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.4.2\n" msgctxt "platform_adhesion description" msgid "Adhesion" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Duração de G-Code Final do Extrusor" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Absoluta Final do Extrusor" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Inicial do Extrusor" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Duração de G-Code Inicial do Extrusor" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Absoluta de Início do Extrusor" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "O número da ventoinha de refrigeração da impressão associada a este extrusor. Somente altere o valor default 0 quando você tiver uma ventoinha diferente para cada extrusor." +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "O tempo que se deve levar para executar o g-code final ao alternar deste extrusor." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "O tempo que se deve levar para executar o g-code inicial ao alternar para este extrusor." + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "A coordenada X da posição final do extrusor quando se o desliga." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 74a22e725b..9f1ed4f14e 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Cura 5.0\n" +"Project-Id-Version: Cura 5.7\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" -"PO-Revision-Date: 2023-10-23 06:17+0200\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"PO-Revision-Date: 2024-04-02 02:04+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,7 +15,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" +"X-Generator: Poedit 3.4.2\n" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Como gerar a torre de purga:
    • Normal: cria-se um balde em que materiais secundários são purgados
    • Intercalados: cria-se uma torre de purga tão esparsa quanto possível. Isto salvará material e filamento, mas só é praticável se os materiais aderirem entre si
    " + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "O brim em volta de um modelo pode tocar outro modelo onde você não deseja. Isto remove todo o brim dentro desta distância de modelos sem brim." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." @@ -61,13 +69,9 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão)" +msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão) " msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Permite que você ordene a lista de objetos de forma a manualmente definir a sequência de impressão. O primeiro objeto da lista será impresso primeiro." + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "Alternar Parede Adicional" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "Brim" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Margem de Prevenção de Brim" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "Distância do Brim" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Brim Dentro da Margem a Evitar" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "Contagem de Linhas do Brim" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Localização do Brim" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,18 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "Temperatura do Volume de Impressão" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite de temperature do Volume de Construção" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Aviso de temperatura do Volume de Construção" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura." + msgctxt "center_object label" msgid "Center Object" msgstr "Centralizar Objeto" @@ -746,16 +766,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distância da parte inferior do suporte até a impressão." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distância da impressão até a base do suporte. Note que o valor é arredondado pra cima para a próxima altura de camada." msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Distância do topo do suporte à impressão." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distância da base ou topo do suporte à impressão. Esta lacuna provê uma folga pra remover os suporte depois da impressão do modelo. A camada de suporte superior abaixo do modelo pode ser uma fração de camadas regulares." msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -869,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "Habilitar Refrigeração de Impressão" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Habilitar Relatório de Processo de Impressão" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "Habilitar Retração" @@ -901,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Habilita relatório de processo de impressão para definir valores-limite para possível detecção de falhas." + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." @@ -933,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Em Todo Lugar" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "Em Todo Lugar" @@ -1037,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "Raio de Equalização de Fluxo" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de Fluxo" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "Fator de Compensação da Taxa de Fluxo" @@ -1049,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "Gráfico de Fluxo de Temperatura" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Aviso de Fluxo" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor." @@ -1097,6 +1137,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Compensação de fluxo no filete de parede mais externo." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo no filete de parede externo de superfície do topo." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nos files de parede de superfície do topo excetuando o mais externo." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Compensação de fluxo em filetes do topo e base." @@ -1285,6 +1333,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar Paredes Externas" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Giróide" @@ -1429,10 +1481,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se a base do raft estiver habilitada, esta é a área de raft extra em torno do modelo que também a terá. Aumentar esta margem criará um raft mais forte mas também usará mais material e deixará uma área menor para sua impressão." + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o meio do raft estiver habilitado, esta será a área extra de raft em torno do modelo que também o terá. Aumentar esta margem criará um raft mais forte mas também usará mais material e deixará uma área menor para a sua impressão." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o topo do raft estiver habilitado, esta é a área extra de raft em torno do modelo que também o terá. Aumentar esta margem criará um raft mais forte mas usará mais material e deixará menos área para sua impressão." + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." @@ -1661,6 +1725,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Dentro Somente" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "De Dentro Pra Fora" @@ -1673,6 +1741,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "Interface preferida" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalado" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "Contagem de Camadas das Vigas Interligadas" @@ -1813,6 +1885,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite do aviso de Temperatura de Volume de Construção para detecção." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite da Anomalia da temperatura de Volume de Construção para detecção." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite da anomalia da Temperatura de Construção para detecção." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite do aviso de temperatura de Impressão para detecção." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite da anomalia de fluxo para detecção." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite do aviso de fluxo para detecção." + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." @@ -1910,8 +2006,12 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" +"Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão de ar. Todos os modelos sobre a primeira camada de modelo serão deslocados pra baixo por essa quantidade.\n" +"Deve ser notado que algumas vezes a segunda camada é impressa abaixo da camada inicial por causa deste ajuste. Este é o comportamento pretendido" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1937,10 +2037,18 @@ msgctxt "material label" msgid "Material" msgstr "Material" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca do Material" + msgctxt "material_guid label" msgid "Material GUID" msgstr "GUID do Material" +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo do Material" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "Volume de Material Entre Limpezas" @@ -2217,6 +2325,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Ordem de Passagem a Ferro Monotônica" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordem do Raft Monotônico da Superfície Superior" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "Ordem da Superfície Monotônica Superior" @@ -2257,6 +2369,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "Normal" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + msgctxt "support_structure option normal" msgid "Normal" msgstr "Normal" @@ -2389,10 +2505,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "Ângulo da Cobertura de Escorrimento" @@ -2449,6 +2561,14 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Distância de Varredura da Parede Externa" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em sequência. Quando habilitado, as mudanças de fluxo são limitadas porque as paredes são impressas um tipo a cada vez; quando desabilitado, o número de percursos entre as ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Fora Somente" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "De Fora Pra Dentro" @@ -2502,8 +2622,20 @@ msgid "Prime Tower Acceleration" msgstr "Aceleração da Torre de Purga" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim da Torre de Purga" +msgid "Prime Tower Base" +msgstr "Base da Torre de Purga" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura da Base da Torre de Purga" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamanho da Base da Torre de Purga" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Inclinação da Base da Torre de Purga" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2517,10 +2649,18 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "Largura de Extrusão da Torre de Purga" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distância Máxima de Ponte das Torres de Purga" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume Mínimo da Torre de Purga" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaçamento do Filete de Raft da Torre de Purga" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Tamanho da Torre de Purga" @@ -2529,6 +2669,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "Velocidade da Torre de Purga" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo da Torre de Purga" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posição X da Torre de Purga" @@ -2537,10 +2681,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "Posição Y da Torre de Purga" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleração da Impressão" @@ -2549,6 +2689,10 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Relatório do Processo de Impressão" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "Sequência de Impressão" @@ -2561,6 +2705,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "Imprimir Paredes Finas" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprime um brim na parte de fora do modelo, de dentro, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de brim que você precisa remover depois, ao mesmo tempo em que assegura aderência apropriada na plataforma." + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." @@ -2581,6 +2729,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprime os filetes da superfície superior to raft em uma ordem que faz com que se sobreponham a filetes adjacentes na mesma direção. Isso leva um pouco mais de tempo para imprimir, mas faz a superfície parecer mais consistente, algo que também é visível na superfície inferior do modelo." + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." @@ -2589,6 +2741,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite de temperatura de impressão" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Aviso de temperatura de impressão" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." @@ -2633,6 +2793,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Vão Aéreo do Raft" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margem Extra da Base de Raft" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "Extrusor da Base do Raft" @@ -2661,6 +2825,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "Velocidade de Impressão da Base do Raft" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Suavização da Base de Raft" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "Espessura da Base do Raft" @@ -2677,6 +2845,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Velocidade de Ventoinha no Raft" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margem Extra do Meio do Raft" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "Extrusor do Meio do Raft" @@ -2705,6 +2877,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "Velocidade de Impressão do Meio do Raft" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Suavização do Meio do Raft" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "Espaçamento do Meio do Raft" @@ -2713,6 +2889,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "Espessura do Meio do Raft" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Contagem de Paredes do Meio do Raft" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "Aceleração de Impressão do Raft" @@ -2729,6 +2909,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Amaciamento do Raft" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margem Extra do Topo do Raft" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "Extrusor do Topo do Raft" @@ -2761,10 +2945,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "Velocidade de Impressão do Topo do Raft" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Suavização do Topo do Raft" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "Espaçamento Superior do Raft" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Contagem de Paredes do Topo do Raft" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Contagem de Paredes do Raft" + msgctxt "z_seam_type option random" msgid "Random" msgstr "Aleatório" @@ -2817,10 +3013,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Remover Interseções de Malha" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Remover Cantos Internos da Base do Raft" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "Remover Cantos Internos de Raft" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Remover Cantos Internos do Meio do Raft" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Remover Cantos Internos do Topo do Raft" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." @@ -2829,6 +3037,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Remove cantos interior da base do raft, fazendo com que o raft se torne convexo." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Remove cantos internos da parte média do raft, fazendo com que o raft se torne convexo." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Remove cantos internos da parte superior do raft, fazendo com que o raft se torne convexo." + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." @@ -2849,6 +3069,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Relatar eventos que saem dos limites estabelecidos" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferência de Descanso" @@ -2921,6 +3145,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Preferência do Canto da Costura" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." @@ -3323,10 +3551,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "Prioridade de Interface de Suporte" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "Velocidade da Interface de Suporte" @@ -3613,6 +3837,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "A aceleração com que as camadas superiores do raft são impressas." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com que as paredes internas da superfície superior são impressas." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com que as paredes externas da superfície superior são impressas." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Aceleração com que se imprimem as paredes." @@ -3673,6 +3905,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "A marca de material usado." + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." @@ -3753,6 +3989,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre os filetes do raft para a camada única de raft de torre de purga. Espaçamento alto permite remoção fácil do raft da plataforma de impressão." + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." @@ -3950,6 +4190,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "A altura da base da torre de purga. Aumentar este valor resultará em uma torre de purga mais firme porque a base se tornará mais larga. Se o ajuste for muito baixo, a torre de purga não terá uma base firme." + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." @@ -4022,6 +4266,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "O comprimento de filamento retornado durante uma retração." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "O fator de magnitude usado para a inclinação da base da torre de purga. Se você aumentar este valor, a base se tornará mais fina. Se você diminuí-lo, ela se tornará mais grossa." + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "O material da plataforma de impressão presente na impressora." @@ -4114,6 +4362,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com que as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com que as paredes mais externas da superfície superior são impressas." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." @@ -4130,6 +4386,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "O comprimento máximo dos galhos que serão impressos no ar." + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "A velocidade máxima para o motor da impressora na direção X." @@ -4242,6 +4502,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear nas camadas intermediárias do raft." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear nas camadas superiores do raft." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear do raft." + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "O número de camadas de preenchimento que suportam arestas de contorno." @@ -4501,6 +4773,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que a parede mais externa da superfície superior é impressa." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." @@ -4562,8 +4842,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." +msgid "The temperature used for printing the first layer." +msgstr "A temperatura usada para imprimir a primeira camada." msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4625,6 +4905,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "O tipo de G-Code a ser gerado." +msgctxt "material_type description" +msgid "The type of material used." +msgstr "O tipo de material usado." + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." @@ -4642,6 +4926,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "A largura da torre de purga." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A largura da base ou brim da torre de purga. Uma base maior melhora a aderência à mesa mas também reduz a área efetiva de impressão." + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "A largura da torre de purga." @@ -4670,10 +4958,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla quantos cantos internos no contorno da base do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controle quantos cantos internos no contorno do meio do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controle quantos cantos internos no contorno do topo do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." @@ -4710,6 +5010,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Largura de Remoção do Contorno Superior" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da Parede Interna da Superfície Superior" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Interna da Superfície Superior" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da Parede Interna da Superfície Superior" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo das Paredes Internas da Superfície Superior" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da Parede Externa da Superfície Superior" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da Parede Externa da Superfície Superior" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk da Parede Externa da Superfície Superior" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da Parede Externa da Superfície Superior" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Aceleração da Superfície Superior" @@ -5002,10 +5334,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." @@ -5032,7 +5360,7 @@ msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente ap msgctxt "hole_xy_offset description" msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo':" +msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo'." msgctxt "bridge_skin_material_flow description" msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." @@ -5398,1344 +5726,74 @@ msgctxt "travel description" msgid "travel" msgstr "percurso" -# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" +#~ msgctxt "brim_inside_margin description" +#~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +#~ msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro." -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" +#~ msgctxt "brim_inside_margin label" +#~ msgid "Brim Inside Avoid Margin" +#~ msgstr "Brim Dentro da Margem a Evitar" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações de fluxo gradual" +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "Brim Somente Para Fora" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada passo na alteração de fluxo gradual" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo da discretização de fluxo gradual" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na alteração de fluxo gradual" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho de passo da discretização de fluxo gradual" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset do fluxo" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual habilitado" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração máxima de fluxo da camada inicial" -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações de fluxo gradual" -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Duração de reset do fluxo" -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Adicionar Limite de Filete Central" - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Temperatura Automática" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Compensar" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preenche Lacunas Entre Paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar Pequenas Lacunas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Nó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Limitar Retrações de Suporte" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Máxima em Z" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada." - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X da malha" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y da malha" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z da malha" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrair" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_skin_width description" -#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." -#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Limite de Filete Central Dividido" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" -#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente." - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Ângulo do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Diâmetro de Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Distância dos Galhos do Suporte em Árvore" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Resolução de Colisão do Suporte em Árvore" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "Número de Filetes da Parede do Suporte em Árvore" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Espera da Base de IA" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Velocidade de Impressão da Base da IA" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Fluxo de Conexão da IA" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Altura da Conexão IA" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Velocidade de Impressão Descendente de IA" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Arrasto de IA" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Facilitador Ascendente da IA" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Queda de IA" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Espera Plana de IA" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Fluxo Plano de IA" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Fluxo da IA" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Velocidade de Impressão Horizontal de IA" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Tamanho do Nó de IA" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Espaço Livre para o Bico em IA" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Arrasto do Topo de IA" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Queda do Topo de IA" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Distância de Penetração do Teto da IA" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Retardo exterior del techo en IA" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Velocidade da IA" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Endireitar Filetes Descendentes de IA" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Estratégia de IA" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Espera do Topo de IA" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Velocidade de Impressão Ascendente da IA" - -#, fuzzy -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "Resolução da Interface de Suporte" #~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma." - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y." - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Impressão em Arame" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..24b118429c --- /dev/null +++ b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po @@ -0,0 +1,55 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-04-01 22:35+0200\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.2\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na mudança gradual de fluxo" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou diminuído ao fluxo-alvo. Isto é útil para impressoras com tubo bowden em que o fluxo não é imediatamente alterado quando o motor de extrusor para ou inicia." + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cada movimento de percurso menor que este valor, o fluxo de material é resetado para o fluxo-alvo dos caminhos" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo de discretização gradual de fluxo" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máximo de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças de fluxo gradual da primeira camada" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset de fluxo" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 48c598458e..a8ca610fbc 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Guardar projeto..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Guardar Universal Cura Project…" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Definições" @@ -138,7 +142,9 @@ msgstr "*Terá de reiniciar a aplicação para ativar estas alterações." msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Adicione definições de materiais e plug-ins do Marketplace\n- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" +msgstr "- Adicione definições de materiais e plug-ins do Marketplace" +"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" +"- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -198,15 +204,24 @@ msgstr "
  • Versão do OpenGL: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

    \n

    Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

    \n " +msgstr "

    Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

    " +"

    Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Ups, o UltiMaker Cura encontrou um possível problema.

    \n

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    \n

    Os backups estão localizados na pasta de configuração.

    \n

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    \n " +msgstr "

    Ups, o UltiMaker Cura encontrou um possível problema.

    " +"

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    " +"

    Os backups estão localizados na pasta de configuração.

    " +"

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

    \n

    {model_names}

    \n

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    \n

    Ver o guia de qualidade da impressão

    " +msgstr "

    Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

    " +"

    {model_names}

    " +"

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    " +"

    Ver o guia de qualidade da impressão

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +233,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Não existe uma conectividade de cloud disponível para a impressora" msgstr[1] "Não existe uma conectividade de cloud disponível para algumas impressoras" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Uma peça altamente densa e resistente, mas com um tempo de impressão mais lento. Excelente para peças funcionais." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Existe uma impressão em curso. O Cura não consegue iniciar outra impressão via USB até a impressão anterior ser concluída." @@ -390,6 +409,14 @@ msgctxt "@button" msgid "Agree" msgstr "Concordar" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos os Ficheiros (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos os Formatos Suportados ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir o envio de dados anónimos" @@ -430,10 +457,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anónimo" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Relatórios de falha anónimos" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Framework da aplicação" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Aplica-se em" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Aplicar desvios da extrusora ao GCode" @@ -474,6 +509,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Tem a certeza de que deseja iniciar um novo projeto? Isto irá apagar tudo na base de construção assim como quaisquer definições que não tenham sido guardadas." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" @@ -486,6 +525,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organizar todos os modelos numa grelha" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Organizar Seleção" + msgctxt "@label:button" msgid "Ask a question" msgstr "Faça uma pergunta" @@ -546,6 +589,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Cópias de segurança" +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -602,6 +649,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Calculado" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Navegação de câmara:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Composição de câmara:" @@ -634,6 +685,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Não é possível escrever no ficheiro UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + msgctxt "@button" msgid "Cancel" msgstr "Cancelar" @@ -696,7 +751,8 @@ msgstr "A verificar..." msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. \n\nA estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." +msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. " +"A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" @@ -810,6 +866,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar Alteração de Diâmetro" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + msgctxt "@action:button" msgid "Connect" msgstr "Ligar" @@ -894,6 +954,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Não foi possível interpretar a resposta do servidor." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "Não foi possível carregar o plugin GCodeWriter. Tente reativar o plugin." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Não foi possível ligar ao Marketplace." @@ -906,6 +970,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Não foi possível guardar o arquivo de material em {}:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível guardar em {0}: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Não foi possível guardar no Disco Externo {0}: {1}" @@ -916,15 +984,18 @@ msgstr "Não foi possível carregar os dados para a impressora." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}\nSem permissão para executar o processo." +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" +"Sem permissão para executar o processo." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}\nO sistema operativo está a bloquear (antivírus)?" +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" +"O sistema operativo está a bloquear (antivírus)?" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}\nO recurso está temporariamente indisponível" +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" +"O recurso está temporariamente indisponível" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1071,8 @@ msgstr "O Cura detetou perfis de material que ainda não estavam instalados na i msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.\nO Cura tem o prazer de utilizar os seguintes projetos open source:" +msgstr "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade." +"O Cura tem o prazer de utilizar os seguintes projetos open source:" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1162,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Predefinição" -msgctxt "@label" -msgid "Default" -msgstr "Predefinição" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: " @@ -1242,6 +1310,10 @@ msgctxt "@label" msgid "Draft" msgstr "Rascunho" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Largar Todos os Modelos para construir placa" + msgctxt "@action:button" msgid "Duplicate" msgstr "Duplicar" @@ -1322,6 +1394,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Introduza o endereço IP da sua impressora." +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Determinação da origem do erro" @@ -1358,6 +1434,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Exportar seleção..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Exportar Projeto Cura Universal" + msgctxt "@button" msgid "Export material archive" msgstr "Exportar ficheiro de material" @@ -1386,10 +1466,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-code final do extrusor" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Duração do código G final da extrusora" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-code inicial do extrusor" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Duração do código G inicial da extrusora" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "{0} da Extrusora" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Extrusor(es) desativado(s)" @@ -1450,6 +1542,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Erro ao guardar o arquivo de material" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Não foi possível escrever à impressora de nuvem específica: {0} não se encontra em conjuntos remotos." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoritos" @@ -1466,6 +1562,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Peso do Filamento" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Ficheiro Já Existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Ficheiro Guardado" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "O ficheiro {0} não contém qualquer perfil válido." @@ -1574,6 +1678,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Forçar o modo de compatibilidade na visualização por camada (é necessário reiniciar)" +msgid "FreeCAD trackpad" +msgstr "Trackpad do FreeCAD" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista Frente" @@ -1626,6 +1733,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Altura do pórtico" +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." @@ -1646,6 +1757,10 @@ msgctxt "@action" msgid "Get started" msgstr "Iniciar" +msgctxt "@label" +msgid "Global" +msgstr "Global" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Definições Globais" @@ -1694,6 +1809,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Ocultar todas as impressoras conectadas" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Ocultar configurações" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Esconder esta definição" @@ -1766,6 +1885,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Para poder utilizar este pacote terá de reiniciar o Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "Incluir nome de conta UltiMaker" + msgctxt "@label" msgid "Infill" msgstr "Enchimento" @@ -1978,6 +2101,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Saber mais" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saber mais" + msgctxt "@button" msgid "Learn more" msgstr "Saber mais" @@ -2106,6 +2233,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação do g-code poderá não ser exata." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Arquivo de Impressão Makerbot" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter não pôde salvar no caminho designado." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter não suporta o modo texto." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gerir Materiais..." @@ -2410,6 +2549,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Não foram encontrados resultados com o filtro atual" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Não foi definido um valor específico" + msgctxt "@label" msgid "No time estimation available" msgstr "Nenhuma estimativa de tempo disponível" @@ -2482,6 +2625,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Número de Extrusores" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Idioma do Sistema Operativo" @@ -2506,6 +2653,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Ups! Deparámo-nos com um erro inesperado durante o seu processo de corte. Fique descansado, recebemos automaticamente relatórios de falha para análise se não tiver desativado a partilha de dados nas suas preferências. Para nos ajudar melhor, considere partilhar os detalhes do seu projeto no nosso rastreador de problemas." + msgctxt "@action:button" msgid "Open" msgstr "Abrir" @@ -2534,10 +2685,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir ficheiro de projeto" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Abrir Projeto Cura Universal (UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Abrir ficheiro do Projeto Cura Universal (UCP)" + msgctxt "@action:label" msgid "Open With" msgstr "Abrir" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Abrir como UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Abrir como projeto" @@ -2635,7 +2798,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Colar da área de transferência" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Colocar em pausa" @@ -2697,7 +2859,10 @@ msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:\n- Verifique se a impressora está ligada.\n- Verifique se a impressora está ligada à rede.\n- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." +msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:" +"- Verifique se a impressora está ligada." +"- Verifique se a impressora está ligada à rede." +"- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2876,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Forneça um nome para este perfil." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, forneça um novo nome." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Leia e aceite a licença de utilização do plug-in." @@ -2721,7 +2890,10 @@ msgstr "Remova a impressão" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Reveja as definições e verifique se os seus modelos:\n- Cabem dentro do volume de construção\n- Estão atribuídos a uma extrusora ativada\n- Não estão todos definidos como objetos modificadores" +msgstr "Reveja as definições e verifique se os seus modelos:" +"- Cabem dentro do volume de construção" +"- Estão atribuídos a uma extrusora ativada" +"- Não estão todos definidos como objetos modificadores" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2903,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Inicie sessão para obter plug-ins e materiais verificados para o UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Inicie sessão na sua conta UltiMaker para permitir o envio de dados não anónimos." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Sincronize os perfis de material com as suas impressoras antes de começar a imprimir." @@ -2815,6 +2991,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Imprimir" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Imprimir depois" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Imprimir antes" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3119,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "As definições da impressora serão atualizadas para corresponder às definições guardadas com o projeto." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impressoras adicionadas a partir da Digital Factory:" @@ -3143,6 +3331,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Mudar Nome" +msgctxt "@title:window" +msgid "Rename" +msgstr "Renomear" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Mudar Nome do Perfil" @@ -3244,8 +3436,12 @@ msgid "Save Cura project" msgstr "Guardar projeto Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Guardar o projeto Cura e o ficheiro de impressão" +msgid "Save Cura project and .makerbot print file" +msgstr "Guardar projeto Cura e ficheiro de impressão .makerbot" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Guardar projeto Cura e ficheiro de impressão .upf" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,6 +3467,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Guardar novo perfil" +msgctxt "@action:button" +msgid "Save project" +msgstr "Guardar projeto" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Guarde o ficheiro .umm numa unidade USB." @@ -3287,6 +3487,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado no Disco Externo {0} como {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "A Guardar" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "A Guardar no Disco Externo {0}" @@ -3367,6 +3571,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Enviar relatório de falhas para a UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Envie relatórios de falha com o seu nome de conta UltiMaker registado e o nome de projeto para UltiMaker Sentry. Não está a ser enviado um modelo de dados. " + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Envie relatórios de falha sem qualquer modelo informação pessoalmente identificável à UltiMaker." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Enviar relatórios de falha no mecanismo" + msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" @@ -3411,6 +3627,14 @@ msgctxt "@label" msgid "Settings" msgstr "Definições" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Definições" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Configurações carregadas a partir do ficheiro UCP" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:" @@ -3479,6 +3703,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Pretende que os ficheiros abertos a partir do ambiente de trabalho ou de aplicações externas sejam executados na mesma instância do Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Devem as falhas no corte ser automaticamente comunicadas à UltiMaker? Note que não são enviados ou armazenados quaisquer modelos, endereços IP ou outras informações pessoalmente identificáveis, a não ser que o autorize explicitamente." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Limpar a base de construção antes de carregar um novo modelo na instância única do Cura?" @@ -3535,6 +3763,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar relatório de falhas detalhado" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Mostrar configurações" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto" @@ -3603,10 +3835,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "O seccionamento falhou" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O seccionamento falhou com um erro inesperado. Por favor reportar um erro no nosso registo de problemas." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "A Seccionar..." @@ -3615,13 +3843,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" +msgctxt "@label" +msgid "Solid" +msgstr "Sólido" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista Sólidos" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n\nClique para tornar estas definições visíveis." +msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente." +"Clique para tornar estas definições visíveis." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3870,8 @@ msgstr "Alguns valores de definição definidos em %1 foram substituídos msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n\nClique para abrir o gestor de perfis." +msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil." +"Clique para abrir o gestor de perfis." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3897,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Patrocinar o Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Patrocinar o Cura" @@ -3721,10 +3953,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Configurações de Material sugeridas" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Configurações de Perfil sugeridas" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Resumo – Projeto Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Resumo - Abrir Projeto Cura Universal (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Resumo - Projeto Cura Universal" + msgctxt "@label" msgid "Support" msgstr "Suportes" @@ -3843,6 +4091,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "A cópia de segurança excede o tamanho de ficheiro máximo." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "O perfil equilibrado é projetado para encontrar um equilíbrio entre a produtividade, a qualidade da superfície, as propriedades mecânicas e a precisão dimensional." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "A altura da \"Base\" desde a base de construção em milímetros." @@ -3899,6 +4151,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "O extrusor a utilizar para imprimir os suportes. Definição usada com múltiplos extrusores." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias." @@ -3959,7 +4215,9 @@ msgstr "O nozzle inserido neste extrusor." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "O padrão do material de enchimento da impressão:\n\nPara impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.\n\nPara impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." +msgstr "O padrão do material de enchimento da impressão:" +"Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono." +"Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4077,6 +4335,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuração não está disponível porque não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura ou um projeto Universal ou importar os modelos do mesmo?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Este ficheiro é um Projeto do Cura. Pretende abrir como Projeto ou só importar os modelos 3D incluídos no Projeto?" @@ -4125,7 +4387,8 @@ msgstr "O projeto contém materiais ou plug-ins que não estão atualmente insta msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Esta definição tem um valor que é diferente do perfil.\n\nClique para restaurar o valor do perfil." +msgstr "Esta definição tem um valor que é diferente do perfil." +"Clique para restaurar o valor do perfil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4406,8 @@ msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alte msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n\nClique para restaurar o valor calculado." +msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente." +"Clique para restaurar o valor calculado." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4153,6 +4417,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Esta definição está resolvida a partir de valores específicos da extrusora em conflito:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "O desempenho desta configuração poderá ser afetado enquanto se exporta o Projeto Cura Universal. Será pedido aos Utilizadores para a adicionarem por sua conta e risco." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "O desempenho desta configuração poderá ser afetado enquanto se exporta o Projeto Cura Universal. Será pedido aos Utilizadores para a adicionarem por sua conta e risco." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Esta versão não se destina a uma utilização de produção. Se encontrar quaisquer problemas, comunique-os na nossa página no GitHub, referindo a versão completa {self.getVersion()}" @@ -4245,6 +4517,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Tipo" +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impressão USB" @@ -4299,7 +4575,8 @@ msgstr "Não é possível encontrar o servidor EnginePlugin local executável pa msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Não é possível interromper o EnginePlugin em execução.{self._plugin_id}\nAcesso negado." +msgstr "Não é possível interromper o EnginePlugin em execução.{self._plugin_id}" +"Acesso negado." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4341,6 +4618,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Não é possível escrever no ficheiro: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Indisponível" @@ -4361,6 +4642,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Projeto Cura Universal" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Os ficheiros de Projeto Cura Universal podem ser imprimidos em diferentes impressoras 3D e manter os dados posicionais e configurações selecionadas.Quando exportados, todos os modelos apresentados na placa de construção serão incluídos juntamente com a respetiva posição, orientação e escala. Também é possível selecionar que configurações por extrusora ou por modelo devem ser incluídos para garantir uma impressão adequada." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Configuração de sistema de construção universal" @@ -4477,6 +4766,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi" +msgctxt "@title:column" +msgid "Value" +msgstr "Valor" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualize as impressoras na fábrica digital" @@ -4525,6 +4818,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Deseja mais?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal que possa utilizar este tipo de qualidade." @@ -4549,6 +4846,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Qual impressora gostaria de definir?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Que tipo de navegação de câmara deve ser utilizado?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Que tipo de composição de câmara deve ser utilizado?" @@ -4649,7 +4950,9 @@ msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botã msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Alterou algumas definições do perfil.\nPretende manter estas alterações depois de trocar de perfis?\nComo alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." +msgstr "Alterou algumas definições do perfil." +"Pretende manter estas alterações depois de trocar de perfis?" +"Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4984,8 @@ msgstr "A sua nova impressora aparecerá automaticamente no Cura" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "A sua impressora {printer_name} pode ser ligada através da cloud.\n Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" +msgstr "A sua impressora {printer_name} pode ser ligada através da cloud." +" Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" msgctxt "@label" msgid "Z" @@ -4727,6 +5031,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "hoje" @@ -4747,491 +5055,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Falhou a transferência de {} plug-ins" -msgid "Provides support for exporting Cura profiles." -msgstr "Oferece apoio para a exportação de perfis Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de perfis Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." - -msgctxt "name" -msgid "Slice info" -msgstr "Informações do seccionamento" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Permite importar perfis de versões antigas do Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de perfis antigos do Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornece suporte para ler ficheiros X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização da versão 3.5 para 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização da versão 4.1 para 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização da versão 4.7 para 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização da versão 4.9 para 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização da versão 3.2 para 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização da versão 2.7 para 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização da versão 4.11 para a versão 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização da versão 2.6 para 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização da versão 4.8 para 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização da versão 4.3 para 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização da versão 3.3 para 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização da versão 4.4 para a versão 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização da versão 2.5 para 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização da versão 2.1 para 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização da versão 4.2 para 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização da versão 5.2 para 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização da versão 4.0 para 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização da versão 2.2 para 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização da versão 3.4 para 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização do Cura versão 4.13 para 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização da versão 5.4 para 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização da versão 4.5 para a versão 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização da versão 3.0 para 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização da versão 4.6.2 para a versão 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização da versão 5.3 para 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Permite pré-visualizar os dados das camadas seccionadas." - -msgctxt "name" -msgid "Simulation View" -msgstr "Visualização por camadas" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornece suporte para importar perfis Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornece uma fase de pré-visualização no Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de pré-visualização" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Eliminador de suportes" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite abrir e visualizar ficheiros G-code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-code" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Efetua uma cópia de segurança e repõe a sua configuração." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in de dispositivo de saída da unidade amovível" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Materiais" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Funções para impressoras Ultimaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permite a visualização em Raio-X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista Raio-X" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker." +msgstr "Gere as ligações de rede a impressoras UltiMaker interconectadas." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "Ligação de rede UltiMaker" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Função Definições da Máquina" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornece suporte para a leitura de ficheiros modelo." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor de Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de imagens" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Disponibiliza as ações da máquina para atualizar o firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end do CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornece uma fase de preparação no Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparação" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Biblioteca Digital UltiMaker" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Procura e verifica se existem atualizações de firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador Atualizações Firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Grava o g-code num ficheiro." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gravador de G-code" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornece suporte para ler ficheiros 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornece suporte para ler ficheiros AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor de AMF" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "Permite importar perfis a partir de ficheiros g-code." @@ -5248,6 +5079,374 @@ msgctxt "name" msgid "Solid View" msgstr "Vista Sólidos" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornece suporte para ler ficheiros 3MF." + +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." + +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador Atualizações Firmware" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Efetua uma cópia de segurança e repõe a sua configuração." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Função Definições da Máquina" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização da versão 2.5 para 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização da versão 4.7 para 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização da versão 4.4 para a versão 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização da versão 3.0 para 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização da versão 4.11 para a versão 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização da versão 4.1 para 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização da versão 2.6 para 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização da versão 3.3 para 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização da versão 4.8 para 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização da versão 4.5 para a versão 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização da versão 4.2 para 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização da versão 3.2 para 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização da versão 4.3 para 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Atualiza as configurações da Cura 5.6 para Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Atualização da versão 5.6 para 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização da versão 2.1 para 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização da versão 5.3 para 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização da versão 4.9 para 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização da versão 2.7 para 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização da versão 3.5 para 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização da versão 5.2 para 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização da versão 4.0 para 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização do Cura versão 4.13 para 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização da versão 3.4 para 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização da versão 2.2 para 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização da versão 4.6.2 para a versão 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização da versão 5.4 para 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite abrir e visualizar ficheiros G-code." + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-code" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." + +msgctxt "name" +msgid "Slice info" +msgstr "Informações do seccionamento" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in de dispositivo de saída da unidade amovível" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Eliminador de suportes" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." + +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelos" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornece uma fase de preparação no Cura." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparação" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Permite pré-visualizar os dados das camadas seccionadas." + +msgctxt "name" +msgid "Simulation View" +msgstr "Visualização por camadas" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornece suporte para ler ficheiros AMF." + +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor de AMF" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permite a visualização em Raio-X." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista Raio-X" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Disponibiliza as ações da máquina para atualizar o firmware." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de firmware" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Permite importar perfis de versões antigas do Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de perfis antigos do Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" + +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-Processamento" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" @@ -5257,12 +5456,20 @@ msgid "Sentry Logger" msgstr "Sentry Logger" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fornece suporte para escrever Pacotes de Formato MakerBot." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" +msgid "Makerbot Printfile Writer" +msgstr "Escritor de Arquivo de Impressão Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornece suporte para importar perfis Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis Cura" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5480,20 @@ msgid "UFP Reader" msgstr "Leitor de UFP" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Possiblita a gravação de ficheiros 3MF." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" +msgid "Image Reader" +msgstr "Leitor de imagens" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end do CuraEngine" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,89 +5503,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Gravador de G-code comprimido" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Funções para impressoras Ultimaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê o g-code a partir de um arquivo comprimido." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-code comprimido" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornece uma fase de pré-visualização no Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de pré-visualização" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Biblioteca Digital UltiMaker" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Possibilita a exportação de perfis do Cura." -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de perfis Cura" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornece suporte para ler ficheiros X3D." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Definições" +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornece suporte para a leitura de ficheiros modelo." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saber mais" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor de Trimesh" -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornece uma fase de monitorização no Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de monitorização" -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornece as definições por-modelo." -msgctxt "@info:title" -msgid "Saving" -msgstr "A Guardar" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de definições Por-Modelo" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "O Ficheiro Já Existe" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos os Formatos Suportados ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Materiais" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível guardar em {0}: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Presta apoio na escrita de ficheiros 3MF e UCP." -msgctxt "@action:button" -msgid "OK" -msgstr "OK" +msgctxt "name" +msgid "3MF Writer" +msgstr "Gravador 3MF" -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" +msgctxt "name" +msgid "UFP Writer" +msgstr "Gravador de UFP" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Ficheiro Guardado" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Grava o g-code num ficheiro." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos os Ficheiros (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Equilibrado" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "O perfil equilibrado é projetado para encontrar um equilíbrio entre a produtividade, a qualidade da superfície, as propriedades mecânicas e a precisão dimensional." +msgctxt "name" +msgid "G-code Writer" +msgstr "Gravador de G-code" diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index edd642b9ca..a201b0ea6b 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Base Construção" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação do Extrusor" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "G-code final para executar ao mudar deste extrusor." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Duração do código G final da extrusora" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "O tempo que demora a executar o código G final, ao deixar esta extrusora." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Final Absoluta do Extrusor" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posição Y Final do Extrusor" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação do Extrusor" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "A coordenada Y da posição final ao desligar o extrusor." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "G-code inicial para executar ao mudar para este extrusor." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Duração do código G inicial da extrusora" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "O tempo que demora a executar o código G inicial, ao mudar para esta extrusora." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Inicial Absoluta do Extrusor" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posição X Inicial do Extrusor" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posição Y Inicial do Extrusor" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "A coordenada Y da posição inicial ao ligar o extrusor." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desvio X do Nozzle" @@ -131,51 +196,3 @@ msgstr "Desvio Y do Nozzle" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "A coordenada Y do desvio do nozzle." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Base Construção" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação do Extrusor" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação do Extrusor" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 54c107e3f6..36c9f75929 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Tipo de Máquina" @@ -34,7 +42,8 @@ msgstr "G-code Inicial" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Comandos G-code a serem executados no início – separados por \n." +msgstr "Comandos G-code a serem executados no início – separados por " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "G-code Final" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Comandos G-code a serem executados no fim – separados por \n." +msgstr "Comandos G-code a serem executados no fim – separados por " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "GUID do material. Este é definido automaticamente." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo de material" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "O tipo de material utilizado." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca do material" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "A marca do material utilizado." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Esperar pelo Aquecimento da Base de Construção" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Desviar com extrusor" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação do Extrusor" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Posição Absoluta Preparação Extrusor" @@ -1558,7 +1616,8 @@ msgstr "Contagem de paredes de enchimento adicionais" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional.\nEsta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." +msgstr "Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional." +"Esta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Temperatura Impressão Predefinida" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Temperatura Impressão Camada Inicial" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." +msgid "The temperature used for printing the first layer." +msgstr "A temperatura usada para imprimir a primeira camada." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da parede mais externa da superfície superior" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo da parede interna da superfície superior" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Fluxo Superior/Inferior" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da parede mais externa da superfície superior" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da parede interna da superfície superior" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Velocidade Revestimento Superior" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "A aceleração com que todas as paredes interiores são impressas." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da parede externa da superfície superior" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da parede interna da superfície superior" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Aceleração Revestimento Superior" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk das Paredes Interiores da Superfície Superior" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Exterior da Superfície Superior" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Jerk Revestimento Superior" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Distância Z de suporte" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distância do topo/base da estrutura de suporte até a impressão. Este espaço permite a remoção dos suportes após a impressão do modelo. A camada de suporte mais alta abaixo do modelo pode ser uma fração das camadas regulares." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Distância inferior do suporte" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "A distância entre a impressão e a parte inferior do suporte." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distância da impressão até a base do suporte. Note que isso é arredondado para a próxima altura de camada." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução Interface Suporte" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Densidade da interface de suporte" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Base Construção" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "\"Blob\" de Preparação" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação do Extrusor" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação do Extrusor" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Modos de Aderência" @@ -3818,7 +3965,8 @@ msgstr "Distância Contorno" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\nEsta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." +msgstr "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão." +"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Aba Apenas no Exterior" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Localização da borda" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprima uma borda no exterior ou interior do modelo, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de borda que será necessário remover mais tarde, garantindo ao mesmo tempo uma aderência à base adequada." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Apenas no exterior" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Apenas no interior" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Borda interna evitar margem" +msgid "Brim Avoid Margin" +msgstr "Margem para evitar borda" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Uma borda ao redor de um modelo poderá tocar noutro modelo num ponto onde o utilizador não quer que tal aconteça. Esta ação remove toda a borda neste espaço entre modelos sem borda. " msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margem extra da base da plataforma" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se a base da plataforma estiver habilitada, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margem extra do centro da plataforma" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o centro da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margem extra do topo da plataforma" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o topo da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover cantos interiores do raft" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Remover ângulos internos da base da plataforma" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Remova ângulos internos da base da plataforma, fazendo com que a plataforma fique convexa." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Remover ângulos internos do centro da plataforma" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Remova ângulos internos do centro da plataforma, fazendo com que a plataforma fique convexa." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Remover ângulos internos do topo da plataforma " + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Remova ângulos internos do topo da plataforma, fazendo com que a plataforma fique convexa." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Suavização Raft" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Alisamento da base da plataforma" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno da base da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Alisamento do centro da plataforma" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno do centro da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Alisamento do topo da plataforma" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno do topo da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Caixa de Ar do Raft" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Sobreposição Z Camada Inicial" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Faça com que a primeira e segunda camadas do modelo se sobreponham na direção Z para compensar a perda de filamento na caixa de ar. Todos os modelos acima da primeira camada do modelo serão deslocadas para baixo segundo este valor.\nNote-se que, por vezes, a segunda camada é imprimida por baixo da camada inicial por causa desta configuração. Este comportamento é intencional." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura Camada Superior Raft" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Diâmetro Linha Base do Raft" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "A espessura das camadas superiores do raft." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Diâmetro Linha Superior do Raft" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento da Linha Base do Raft" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Diâmetro Linha Base do Raft" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura Camada Superior Raft" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "A espessura das camadas superiores do raft." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento da Linha Base do Raft" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Diâmetro Linha Superior do Raft" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordem de superfície do topo da plataforma monotónica" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprima as linhas de superfície do topo da plataforma numa ordem que as leve a sobrepor-se a linhas adjacentes numa única direção. Desta forma, a impressão poderá demorar mais algum tempo, mas dá um aspeto mais consistente à superfície, o que também é visível na superfície inferior do modelo. " + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Número de paredes da plataforma" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear da plataforma." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Número de paredes da base do raft" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Número de paredes do centro da plataforma" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas centrais da plataforma." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Número de paredes do topo da plataforma" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas superiores da plataforma." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "A velocidade a que o raft é impresso." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade do Topo do Raft" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade da Base do Raft" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade da Base do Raft" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade do Topo do Raft" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "A aceleração com que o raft é impresso." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração do Topo do Raft" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração da Base do Raft" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que a camada inferior (base) do raft é impressa." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "A aceleração com que a camada do meio do raft é impressa." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração da Base do Raft" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração do Topo do Raft" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que a camada inferior (base) do raft é impressa." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "O jerk com que o raft é impresso." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de impressão superior do raft" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de impressão inferior do raft" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com que as camadas superiores do raft são impressas." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com que a camada da base do raft é impressa." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "O jerk com que a camada do meio do raft é impressa." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de impressão inferior do raft" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de impressão superior do raft" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com que a camada da base do raft é impressa." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com que as camadas superiores do raft são impressas." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "A velocidade do ventilador do raft." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade do ventilador superior do raft" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade do ventilador inferior do raft" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade do ventilador das camadas superiores do raft." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade do ventilador da camada inferior do raft." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "A velocidade do ventilador da camada do meio do raft." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade do ventilador inferior do raft" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade do ventilador superior do raft" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade do ventilador da camada inferior do raft." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade do ventilador das camadas superiores do raft." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo de torre de preparação" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Como gerar a torre principal:
    • Normal: criar um balde no qual os materiais secundários são preparados
    • Intercalado: criar uma torre de preparação o mais esparsa possível. Assim, irá poupar-se tempo e filamento, mas tal apenas será possível se os materiais aderirem uns aos outros
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalado" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Tamanho Torre de Preparação" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distância transitória máxima da torre de preparação" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "O comprimento máximo dos ramos que podem ser imprimidos sobre o ar." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "Posição X da torre de preparação" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Aba da torre de preparação" +msgid "Prime Tower Base" +msgstr "Base da Torre de Primagem" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamanho da Base da Torre de Primagem" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A largura da aba/base da torre de primagem. Uma base maior melhora a aderência à placa de construção, mas também reduz a área efetiva de impressão." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura da Base da Torre de Primagem" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "A altura da base da torre de primagem. Aumentar esse valor resultará em uma torre de primagem mais robusta, pois a base será mais larga. Se esta configuração for muito baixa, a torre de primagem não terá uma base sólida." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Inclinação da Base da Torre de Primagem" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "O fator de magnitude usado para a inclinação da base da torre de primagem. Se você aumentar este valor, a base ficará mais fina. Se diminuir, a base ficará mais espessa." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaçamento das Linhas da Jangada da Torre de Primagem" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas da jangada para a única camada da jangada da torre de primagem. Um espaçamento largo facilita a remoção da jangada da placa de construção." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Individualmente" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Permite-lhe ordenar a lista de modo a definir manualmente a sequência de impressão. O primeiro objeto na lista será imprimido primeiro." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Objecto de Enchimento" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover cantos interiores do raft" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar as paredes externas" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Número de paredes da base do raft" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Comunicação do processo de impressão" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Eventos de comunicação que ultrapassam os limites definidos" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Permitir comunicação do processo de impressão" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Permitir comunicação do processo de impressão para definir valores limite para possível deteção de falhas." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Aviso de fluxo" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite sobre o aviso de fluxo para deteção." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de fluxo" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite sobre a anomalia de fluxo para deteção." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Aviso de temperatura de impressão" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite sobre o aviso de temperatura de impressão para deteção." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite da temperatura de impressão" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite sobre a anomalia de temperatura de impressão para deteção." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Aviso de temperatura do volume de construção" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite sobre o aviso de temperatura do volume de construção para deteção." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Limite de temperatura do volume de construção" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite sobre a anomalia de temperatura do volume de construção para deteção." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,190 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual ativado" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações do fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração do fluxo máximo da camada inicial" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho da etapa de discretização do fluxo gradual" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada etapa da alteração do fluxo gradual" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Repor duração do fluxo" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação Extrusor" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência à Base de Construção" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação Extrusor" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação Extrusor" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar as paredes externas" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluxo da parede mais externa da superfície superior" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluxo da parede interna da superfície superior" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidade da parede mais externa da superfície superior" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidade da parede interna da superfície superior" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "A velocidade com que as paredes internas da superfície superior são impressas." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleração da parede externa da superfície superior" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleração da parede interna da superfície superior" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk das Paredes Interiores da Superfície Superior" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk da Parede Exterior da Superfície Superior" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..5f02a114f3 --- /dev/null +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual ativado" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Ativar alterações graduais de fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído para o fluxo alvo. Isto é útil para impressoras com um tubo bowden em que o fluxo não é imediatamente alterado quando o motor da extrusora arranca/para." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças graduais de fluxo" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração do fluxo máximo da camada inicial" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças graduais de fluxo para a primeira camada" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho do passo de discretização do fluxo gradual" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada etapa da mudança gradual de fluxo" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Redefinir a duração do fluxo" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer deslocação superior a este valor, o fluxo de material é reposto no fluxo teórico das vias" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 7c2944df77..ed37461df9 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,6 +24,7 @@ msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 из %2" +#, fuzzy msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -32,6 +33,7 @@ msgstr[1] "%1 перекрыто" msgstr[2] "%1 перекрыто" msgstr[3] "" +#, fuzzy msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -120,6 +122,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Сохранить проект..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Сохранить Universal Cura Project..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Параметры" @@ -142,7 +148,9 @@ msgstr "*Для применения данных изменений вам по msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Добавляйте настройки материалов и плагины из Marketplace \n - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" +msgstr "- Добавляйте настройки материалов и плагины из Marketplace " +" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов " +" - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -202,20 +210,30 @@ msgstr "
  • Версия OpenGL: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

    \n

    Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

    \n " +msgstr "

    В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

    " +"

    Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    В ПО UltiMaker Cura обнаружена ошибка.

    \n

    Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

    \n

    Резервные копии хранятся в папке конфигурации.

    \n

    Отправьте нам этот отчет о сбое для устранения проблемы.

    \n " +msgstr "

    В ПО UltiMaker Cura обнаружена ошибка.

    " +"

    Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

    " +"

    Резервные копии хранятся в папке конфигурации.

    " +"

    Отправьте нам этот отчет о сбое для устранения проблемы.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

    \n

    {model_names}

    \n

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    \n

    Ознакомиться с руководством по качеству печати

    " +msgstr "

    Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

    " +"

    {model_names}

    " +"

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    " +"

    Ознакомиться с руководством по качеству печати

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" +#, fuzzy msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" @@ -224,6 +242,10 @@ msgstr[1] "Подключение к облаку недоступно для н msgstr[2] "Подключение к облаку недоступно для некоторых принтеров" msgstr[3] "" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Очень плотная и прочная деталь, но печать требует более медленного времени. Отлично подходит для функциональных деталей." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена." @@ -396,6 +418,14 @@ msgctxt "@button" msgid "Agree" msgstr "Принимаю" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Все файлы (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Все поддерживаемые типы ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Разрешить отправку анонимных данных" @@ -436,13 +466,21 @@ msgctxt "@label" msgid "Anonymous" msgstr "Анонимн" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Анонимные отчеты о сбоях" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Фреймворк приложения" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Применить к" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" -msgstr "Применить смещения экструдера к GCode" +msgstr "Применить смещения экструдера к G-коду" msgctxt "@info:title" msgid "Are you ready for cloud printing?" @@ -480,6 +518,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!" @@ -492,6 +534,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Расположить все модели в сетке" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Расположить выбранное" + msgctxt "@label:button" msgid "Ask a question" msgstr "Задать вопрос" @@ -552,6 +598,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Резервные копии" +msgctxt "@label" +msgid "Balanced" +msgstr "Сбалансированный" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Основание (мм)" @@ -562,7 +612,7 @@ msgstr "Вид снизу" msgctxt "@label" msgid "Brand" -msgstr "Брэнд" +msgstr "Бренд" msgctxt "@title" msgid "Build Plate Leveling" @@ -608,6 +658,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Вычислено" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Навигация по камере:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Рендеринг камеры:" @@ -634,12 +688,16 @@ msgstr "Невозможно импортировать профиль из or !" +msgid "Could not save to {0}: {1}" +msgstr "Не могу записать {0}: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Невозможно сохранить на внешний носитель {0}: {1}" @@ -922,15 +992,18 @@ msgstr "Облако не залило данные на принтер." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}\nНет разрешения на выполнение процесса." +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" +"Нет разрешения на выполнение процесса." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}\nЕго блокирует операционная система (антивирус?)" +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" +"Его блокирует операционная система (антивирус?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}\nРесурс временно недоступен" +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" +"Ресурс временно недоступен" msgctxt "@title:window" msgid "Crash Report" @@ -1006,7 +1079,8 @@ msgstr "Cura обнаружены профили материалов, кото msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura разработана компанией UltiMaker B.V. совместно с сообществом.\nCura использует следующие проекты с открытым исходным кодом:" +msgstr "Cura разработана компанией UltiMaker B.V. совместно с сообществом." +"Cura использует следующие проекты с открытым исходным кодом:" msgctxt "@label" msgid "Cura language" @@ -1096,10 +1170,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "По умолчанию" -msgctxt "@label" -msgid "Default" -msgstr "По умолчанию" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: " @@ -1248,6 +1318,10 @@ msgctxt "@label" msgid "Draft" msgstr "Черновой" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Перетащите все модели на сборочную пластину." + msgctxt "@action:button" msgid "Duplicate" msgstr "Дублировать" @@ -1328,6 +1402,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Введите IP-адрес своего принтера." +msgctxt "@info:title" +msgid "Error" +msgstr "Ошибка" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Обратное отслеживание ошибки" @@ -1364,6 +1442,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Экспорт выбранного..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Экспорт Universal Cura Project" + msgctxt "@button" msgid "Export material archive" msgstr "Экспорт архива материалов" @@ -1392,10 +1474,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Завершающий G-код экструдера" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Продолжительность G-кода на конце экструдера" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Стартовый G-код экструдера" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Продолжительность G-кода запуска экструдера" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Экструдер {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Экструдер (-ы) отключен (-ы)" @@ -1456,6 +1550,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Архив материалов не сохранен" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Не удалось выполнить запись на определенный облачный принтер: {0} не в удаленных кластерах." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Избранные" @@ -1472,6 +1570,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Вес материала" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Файл уже существует" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Файл сохранён" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." @@ -1580,6 +1686,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" +msgid "FreeCAD trackpad" +msgstr "Трекпад FreeCAD" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Вид спереди" @@ -1594,11 +1703,11 @@ msgstr "Файл G" msgctxt "@info:title" msgid "G-code Details" -msgstr "Параметры G-code" +msgstr "Параметры G-кода" msgctxt "@item:inlistbox" msgid "G-code File" -msgstr "Файл G-code" +msgstr "Файл G-кода" msgctxt "@label" msgid "G-code flavor" @@ -1632,6 +1741,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Высота портала" +msgctxt "@title:tab" +msgid "General" +msgstr "Общее" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." @@ -1652,6 +1765,10 @@ msgctxt "@action" msgid "Get started" msgstr "Приступить" +msgctxt "@label" +msgid "Global" +msgstr "Глобальный" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Общие параметры" @@ -1700,6 +1817,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Скрыть все подключенные принтеры" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Скрыть настройки" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Спрятать этот параметр" @@ -1772,6 +1893,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Для работы с пакетом необходимо перезапустить Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "Включить имя аккаунта UltiMaker" + msgctxt "@label" msgid "Infill" msgstr "Заполнение" @@ -1984,6 +2109,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Узнать больше" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Узнать больше" + msgctxt "@button" msgid "Learn more" msgstr "Узнать больше" @@ -2110,7 +2239,19 @@ msgstr "Убедитесь, что все ваши принтеры включе msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." +msgstr "Перед отправкой G-кода на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-кода." + +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Файл печати Makerbot" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter не может сохранить файл в указанное место." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter не поддерживает текстовый режим." msgctxt "@action:inmenu" msgid "Manage Materials..." @@ -2288,6 +2429,7 @@ msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Размножить выбранное" +#, fuzzy msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -2344,6 +2486,7 @@ msgctxt "@action:button" msgid "New materials installed" msgstr "Установлены новые материалы" +#, fuzzy msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" @@ -2420,6 +2563,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Поиск с текущим фильтром не дал результатов" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Конкретное значение не установлено" + msgctxt "@label" msgid "No time estimation available" msgstr "Оценка времени недоступна" @@ -2492,6 +2639,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Количество экструдеров" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Язык ОС" @@ -2514,7 +2665,11 @@ msgstr "Показать только верхние слои" msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" +msgstr "Только один файл G-кода может быть загружен в момент времени. Пропускаю импортирование {0}" + +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Ой! Во время процесса нарезки произошла непредвиденная ошибка. Будьте уверены, мы автоматически получили журналы сбоев для анализа, если вы не отключили обмен данными в своих настройках. Чтобы помочь нам в дальнейшем, рассмотрите возможность поделиться информацией о своем проекте в нашем средстве отслеживания проблем." msgctxt "@action:button" msgid "Open" @@ -2526,7 +2681,7 @@ msgstr "Открыть недавние" msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" +msgstr "Открыть сжатую треугольную сетку" msgctxt "@title:window" msgid "Open File(s)" @@ -2544,10 +2699,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Открыть файл проекта" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Открыть Universal Cura Project (UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Открыть файл Universal Cura Project (UCP)" + msgctxt "@action:label" msgid "Open With" msgstr "Открыть с помощью" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "Открыть как UCP" + msgctxt "@action:button" msgid "Open as project" msgstr "Открыть как проект" @@ -2615,6 +2782,7 @@ msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." +#, fuzzy msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." @@ -2641,13 +2809,12 @@ msgstr "Упаковка Python-приложений" msgctxt "@info:status" msgid "Parsing G-code" -msgstr "Обработка G-code" +msgstr "Обработка G-кода" msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Вставить из буфера обмена" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Пауза" @@ -2709,7 +2876,10 @@ msgstr "Дайте необходимые разрешения при автор msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Проверьте наличие подключения к принтеру:\n- Убедитесь, что принтер включен.\n- Убедитесь, что принтер подключен к сети.\n- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." +msgstr "Проверьте наличие подключения к принтеру:" +"- Убедитесь, что принтер включен." +"- Убедитесь, что принтер подключен к сети." +"- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." msgctxt "@text" msgid "Please name your printer" @@ -2723,6 +2893,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Укажите имя для данного профиля." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Пожалуйста, укажите новое имя." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Прочитайте лицензию встраиваемого модуля и примите ее условия." @@ -2733,7 +2907,10 @@ msgstr "Пожалуйста, удалите напечатанное" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Проверьте настройки и убедитесь в том, что ваши модели:\n- соответствуют допустимой области печати\n- назначены активированному экструдеру\n- не заданы как объекты-модификаторы" +msgstr "Проверьте настройки и убедитесь в том, что ваши модели:" +"- соответствуют допустимой области печати" +"- назначены активированному экструдеру" +"- не заданы как объекты-модификаторы" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2743,6 +2920,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для UltiMaker Cura Enterprise" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Войдите в свой аккаунт UltiMaker, чтобы разрешить отправку неанонимных данных." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Перед началом печати синхронизируйте профили материалов с принтерами." @@ -2827,6 +3008,15 @@ msgctxt "@action:button" msgid "Print" msgstr "Печать" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Печатать после" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Печатать до" + +#, fuzzy msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2835,6 +3025,7 @@ msgstr[1] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:" msgstr[3] "" +#, fuzzy msgctxt "@label %1 is filled in with the name of an extruder" msgid "Print Selected Model with %1" msgid_plural "Print Selected Models with %1" @@ -2951,6 +3142,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Параметры принтера будут обновлены в соответствии с параметрами, сохраненными в проекте." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Принтеры" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Принтеры, добавленные из Digital Factory:" @@ -3159,6 +3354,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Переименовать" +msgctxt "@title:window" +msgid "Rename" +msgstr "Переименовать" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Переименовать профиль" @@ -3260,8 +3459,12 @@ msgid "Save Cura project" msgstr "Сохранить проект Cura" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Сохранить проекта Cura и распечатать файл" +msgid "Save Cura project and .makerbot print file" +msgstr "Сохраните проект Cura и файл печати .makerbot" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Сохраните проект Cura и файл печати .ufp." msgctxt "@title:window" msgid "Save Custom Profile" @@ -3287,6 +3490,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Сохранить новый профиль" +msgctxt "@action:button" +msgid "Save project" +msgstr "Сохранить проект" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "Сохраните UMM-файл на USB-накопителе." @@ -3303,6 +3510,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Сохранено на внешний носитель {0} как {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Сохранение" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Сохранение на внешний носитель {0}" @@ -3383,6 +3594,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Отправить отчет о сбое в UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Отправлять отчеты о сбоях, используя зарегистрированное имя учетной записи UltiMaker и название проекта, в UltiMaker Sentry. Фактические данные модели не отправляются." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Отправлять отчеты о сбоях без какой-либо личной информации или данных моделей в UltiMaker." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Отправлять отчеты о сбоях движка" + msgctxt "@action:button" msgid "Send report" msgstr "Отправить отчёт" @@ -3427,6 +3650,14 @@ msgctxt "@label" msgid "Settings" msgstr "Параметры" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Параметры" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "Настройки загружены из файла UCP" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" @@ -3495,6 +3726,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Следует ли автоматически сообщать Ultimaker о сбоях нарезки? Обратите внимание: никакие модели, IP-адреса или другая личная информация не отправляются и не сохраняются без вашего явного разрешения." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?" @@ -3551,6 +3786,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Показать подробный отчет о сбое" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Показать настройки" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Показывать сводку при сохранении проекта" @@ -3619,10 +3858,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Нарезка на слои не выполнена" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Нарезка на слои..." @@ -3631,13 +3866,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Сглаживание" +msgctxt "@label" +msgid "Solid" +msgstr "Сплошной" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Просмотр модели" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n\nЩёлкните, чтобы сделать эти параметры видимыми." +msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений." +"Щёлкните, чтобы сделать эти параметры видимыми." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3653,7 +3893,8 @@ msgstr "Некоторые определенные в %1 значени msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Значения некоторых параметров отличаются от значений профиля.\n\nНажмите для открытия менеджера профилей." +msgstr "Значения некоторых параметров отличаются от значений профиля." +"Нажмите для открытия менеджера профилей." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3679,8 +3920,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Спонсор Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Спонсор Cura" @@ -3737,10 +3976,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Рекомендуемые настройки материала" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Рекомендуемые настройки профиля" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Сводка - Проект Cura" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Сводка – Открыть Universal Cura Project (UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Сводка - Universal Cura Project" + msgctxt "@label" msgid "Support" msgstr "Поддержки" @@ -3849,6 +4104,7 @@ msgctxt "@text" msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." msgstr "Профиль отжига требует последующей обработки в печи после завершения печати. Этот профиль сохраняет точность размеров напечатанной детали после отжига и повышает прочность, жесткость и термостойкость." +#, fuzzy msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" @@ -3861,6 +4117,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Размер файла резервной копии превышает максимально допустимый." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Сбалансированный профиль разработан для достижения баланса между производительностью, качеством поверхности, механическими характеристиками и размерной точностью." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Высота основания от стола в миллиметрах." @@ -3917,6 +4177,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." @@ -3941,6 +4205,7 @@ msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Следующие принтеры получат новые профили материалов:" +#, fuzzy msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" @@ -3979,7 +4244,10 @@ msgstr "Сопло, вставленное в данный экструдер." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Шаблон заполнительного материала печати:\n\nДля быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».\n\nДля функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».\n\nДля функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." +msgstr "Шаблон заполнительного материала печати:" +"Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния»." +"Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников»." +"Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4097,6 +4365,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Это файл проекта Cura Universal. Хотите открыть его как проект Cura или Cura Universal Project или импортировать из него модели?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?" @@ -4113,6 +4385,7 @@ msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой." +#, fuzzy msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" @@ -4147,12 +4420,14 @@ msgstr "Этот проект содержит материалы или пла msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Значение этого параметра отличается от значения в профиле.\n\nЩёлкните для восстановления значения из профиля." +msgstr "Значение этого параметра отличается от значения в профиле." +"Щёлкните для восстановления значения из профиля." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Данный параметр был скрыт текущим принтером и не будет отображаться." +#, fuzzy msgctxt "@item:tooltip %1 is list of setting names" msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." @@ -4167,7 +4442,8 @@ msgstr "Данная настройка всегда используется с msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n\nЩёлкните для восстановления вычисленного значения." +msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно." +"Щёлкните для восстановления вычисленного значения." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4177,6 +4453,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Эта настройка получена из конфликтующих значений экструдера:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Этот параметр может работать некорректно при экспорте в Universal Cura Project. Пользователям предлагается добавить его на свой страх и риск." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Этот параметр может работать некорректно при экспорте в Universal Cura Project. Пользователям предлагается добавить его на свой страх и риск." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Эта версия не предназначена для производственного использования. Если у вас возникнут какие-либо проблемы, сообщите о них на нашей странице GitHub, указав полную версию {self.getVersion()}" @@ -4203,7 +4487,7 @@ msgstr "Сейчас вы можете отрегулировать ваш ст msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." +msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-кода на принтер." msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" @@ -4269,6 +4553,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Тип" +msgctxt "@label" +msgid "Type" +msgstr "Тип" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Печать через USB" @@ -4323,7 +4611,8 @@ msgstr "Не удается найти локальный исполняемый msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Невозможно завершить работу EnginePlugin: {self._plugin_id}\nДоступ запрещен." +msgstr "Невозможно завершить работу EnginePlugin: {self._plugin_id}" +"Доступ запрещен." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4365,6 +4654,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Невозможно записать в файл: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Недоступен" @@ -4385,6 +4678,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Единица" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Project" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Файлы Universal Cura Project можно распечатывать на различных 3D-принтерах, сохраняя при этом данные о положении и выбранные настройки. При экспорте будут включены все модели, присутствующие на рабочей пластине, вместе с их текущим положением, ориентацией и масштабом. Вы также можете выбрать, какие настройки экструдера или модели следует включить, чтобы обеспечить правильную печать." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Конфигурация универсальной системы сборки" @@ -4501,6 +4802,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного" +msgctxt "@title:column" +msgid "Value" +msgstr "Значение" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Просмотреть принтеры в Digital Factory" @@ -4549,6 +4854,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Желаете большего?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Внимание" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества." @@ -4573,6 +4882,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Какой принтер вы хотите настроить?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Какой тип навигации камеры следует использовать?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Рендеринг камеры какого типа следует использовать?" @@ -4653,6 +4966,7 @@ msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?" +#, fuzzy msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4675,7 +4989,9 @@ msgstr "В данный момент у вас отсутствуют резер msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Вы изменили некоторые настройки профиля.\nСохранить измененные настройки после переключения профилей?\nИзменения можно отменить и загрузить настройки по умолчанию из \"%1\"." +msgstr "Вы изменили некоторые настройки профиля." +"Сохранить измененные настройки после переключения профилей?" +"Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4707,7 +5023,8 @@ msgstr "Ваш новый принтер автоматически появит msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Ваш принтер {printer_name} может быть подключен через облако.\n Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" +msgstr "Ваш принтер {printer_name} может быть подключен через облако." +" Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" msgctxt "@label" msgid "Z" @@ -4753,6 +5070,10 @@ msgctxt "@label" msgid "mm" msgstr "мм" +msgctxt "@label" +msgid "s" +msgstr "с" + msgctxt "@info:status" msgid "today" msgstr "сегодня" @@ -4773,140 +5094,85 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Встраиваемые модули ({} шт.) не загружены" -msgid "Provides support for exporting Cura profiles." -msgstr "Обеспечивает поддержку экспорта профилей Cura." +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Управляет сетевыми подключениями к сетевым принтерам UltiMaker." msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Запись профиля Cura" +msgid "UltiMaker Network Connection" +msgstr "Соединение с сетью UltiMaker" msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-код файлов." msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" +msgid "G-code Profile Reader" +msgstr "Средство считывания профиля из G-кода" msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Чтение устаревших профилей Cura" +msgid "Solid View" +msgstr "Обзор" msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." +msgid "Provides support for reading 3MF files." +msgstr "Предоставляет поддержку для чтения 3MF файлов." msgctxt "name" -msgid "UFP Writer" -msgstr "Средство записи UFP" +msgid "3MF Reader" +msgstr "Чтение 3MF" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Принимает G-код и отправляет его на принтер. Плагин также может обновлять прошивку." msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Обновление версии 3.5 до 4.0" +msgid "USB printing" +msgstr "Печать через USB" msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." +msgid "Checks for firmware updates." +msgstr "Проверяет наличие обновлений ПО." msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Обновление версии 4.1 до 4.2" +msgid "Firmware Update Checker" +msgstr "Проверка обновлений" msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Обновление версии 4.7 до 4.8" +msgid "Marketplace" +msgstr "Магазин" msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Обновление версии 4.9 до 4.10" +msgid "Cura Backups" +msgstr "Резервные копии Cura" msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Обновление версии 3.2 до 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Обновление версии 2.7 до 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Обновление версии 4.11 до 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Обновление версии 2.6 до 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Обновление версии 4.8 до 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Обновление версии 4.3 до 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Обновление версии 3.3 до 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Обновление версии 4.4 до 4.5" +msgid "Machine Settings Action" +msgstr "Параметры принтера действие" msgctxt "description" msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." @@ -4917,12 +5183,84 @@ msgid "Version Upgrade 2.5 to 2.6" msgstr "Обновление версии 2.5 до 2.6" msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Обновление версии 2.1 до 2.2" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Обновление версии 4.7 до 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Обновление версии 4.4 до 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Обновление настроек Cura 3.0 до Cura 3.1." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Обновление версии 3.0 до 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Обновление версии 4.11 до 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Обновление версии 4.1 до 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Обновление версии 2.6 до 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Обновление версии с 4.6.0 до 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Обновление версии 3.3 до 3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Обновление версии 4.8 до 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Обновление версии 4.5 до 4.6" msgctxt "description" msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." @@ -4932,6 +5270,70 @@ msgctxt "name" msgid "Version Upgrade 4.2 to 4.3" msgstr "Обновление версии 4.2 до 4.3" +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Обновление версии 3.2 до 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Обновление версии 4.3 до 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Обновляет конфигурации с Cura 5.6 до Cura 5.7." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Обновление версии с 5.6 до 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Обновление версии 2.1 до 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Обновление версии 5.3 до 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Обновление версии 4.9 до 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Обновление версии 2.7 до 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Обновление версии 3.5 до 4.0" + msgctxt "description" msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." @@ -4949,12 +5351,12 @@ msgid "Version Upgrade 4.0 to 4.1" msgstr "Обновление версии 4.0 до 4.1" msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Обновление версии 2.2 до 2.4" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Обновление версии 4.13 до 5.0" msgctxt "description" msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." @@ -4965,44 +5367,12 @@ msgid "Version Upgrade 3.4 to 3.5" msgstr "Обновление версии 3.4 до 3.5" msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Обновление версии 4.13 до 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Обновление версии 5.4 до 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Обновление настроек Cura 3.0 до Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Обновление версии 3.0 до 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Обновление версии 2.2 до 2.4" msgctxt "description" msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." @@ -5013,52 +5383,36 @@ msgid "Version Upgrade 4.6.2 to 4.7" msgstr "Обновление версии с 4.6.2 до 4.7" msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Обновление версии 5.3 до 5.4" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Обновление версии 5.4 до 5.5" msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" +msgid "Allows loading and displaying G-code files." +msgstr "Позволяет загружать и отображать файлы G-код." msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" +msgid "G-code Reader" +msgstr "Чтение G-кода" msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." msgctxt "name" -msgid "Simulation View" -msgstr "Вид моделирования" +msgid "Slice info" +msgstr "Информация о нарезке модели" msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Предоставляет поддержку для импорта профилей Cura." +msgid "Provides removable drive hotplugging and writing support." +msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Чтение профиля Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Предоставляет параметры для каждой модели." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Инструмент для настройки каждой модели" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" +msgid "Removable Drive Output Device Plugin" +msgstr "Плагин для работы с внешним носителем" msgctxt "description" msgid "Creates an eraser mesh to block the printing of support in certain places" @@ -5069,130 +5423,12 @@ msgid "Support Eraser" msgstr "Средство стирания элемента поддержки" msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Позволяет загружать и отображать файлы G-code." +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." msgctxt "name" -msgid "G-code Reader" -msgstr "Чтение G-code" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Плагин для работы с внешним носителем" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Действия с принтерами UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Соединение с сетью UltiMaker" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Параметры принтера действие" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Предоставляет поддержку для чтения файлов моделей." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Средство чтения Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Магазин" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - -msgctxt "name" -msgid "Image Reader" -msgstr "Чтение изображений" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Средство обновления прошивки" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Предоставляет интерфейс к движку CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Движок CuraEngine" +msgid "Model Checker" +msgstr "Средство проверки моделей" msgctxt "description" msgid "Provides a prepare stage in Cura." @@ -5203,52 +5439,12 @@ msgid "Prepare Stage" msgstr "Подготовительный этап" msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." +msgid "Provides the preview of sliced layerdata." +msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Проверяет наличие обновлений ПО." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Проверка обновлений" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Записывает G-код в файл." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Средство записи G-кода" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." - -msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Предоставляет поддержку для чтения 3MF файлов." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Чтение 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." - -msgctxt "name" -msgid "USB printing" -msgstr "Печать через USB" +msgid "Simulation View" +msgstr "Вид моделирования" msgctxt "description" msgid "Provides support for reading AMF files." @@ -5259,20 +5455,36 @@ msgid "AMF Reader" msgstr "Средство чтения AMF" msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." +msgid "Provides the X-Ray view." +msgstr "Предоставляет рентгеновский вид." msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Средство считывания профиля из G-кода" +msgid "X-Ray View" +msgstr "Просмотр в рентгене" msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." msgctxt "name" -msgid "Solid View" -msgstr "Обзор" +msgid "Firmware Updater" +msgstr "Средство обновления прошивки" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Чтение устаревших профилей Cura" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" + +msgctxt "name" +msgid "Post Processing" +msgstr "Пост обработка" msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" @@ -5283,12 +5495,20 @@ msgid "Sentry Logger" msgstr "Контрольный журнал" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Обеспечивает поддержку записи пакетов формата MakerBot." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" +msgid "Makerbot Printfile Writer" +msgstr "Модуль записи файлов печати Makerbot" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Предоставляет поддержку для импорта профилей Cura." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Чтение профиля Cura" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5299,12 +5519,20 @@ msgid "UFP Reader" msgstr "Средство считывания UFP" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Предоставляет возможность записи 3MF файлов." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" +msgid "Image Reader" +msgstr "Чтение изображений" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Движок CuraEngine" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5314,89 +5542,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Средство записи сжатого G-кода" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Действия с принтерами UltiMaker" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Средство считывания сжатого G-кода" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Этап предварительного просмотра" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Предоставляет поддержку для экспорта профилей Cura." -msgctxt "@info:title" -msgid "Error" -msgstr "Ошибка" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Запись профиля Cura" -msgctxt "@action:button" -msgid "Cancel" -msgstr "Отмена" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Предоставляет поддержку для чтения X3D файлов." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Параметры" +msgctxt "name" +msgid "X3D Reader" +msgstr "Чтение X3D" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Предоставляет поддержку для чтения файлов моделей." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Узнать больше" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Средство чтения Trimesh" -msgctxt "@title:tab" -msgid "General" -msgstr "Общее" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Обеспечивает этап мониторинга в Cura." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Этап мониторинга" -msgctxt "@label" -msgid "Type" -msgstr "Тип" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Предоставляет параметры для каждой модели." -msgctxt "@info:title" -msgid "Saving" -msgstr "Сохранение" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Инструмент для настройки каждой модели" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Файл уже существует" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Все поддерживаемые типы ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Профили материалов" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Не могу записать {0}: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Обеспечивает поддержку записи файлов 3MF и UCP." -msgctxt "@action:button" -msgid "OK" -msgstr "OK" +msgctxt "name" +msgid "3MF Writer" +msgstr "Запись 3MF" -msgctxt "@info:title" -msgid "Warning" -msgstr "Внимание" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Принтеры" +msgctxt "name" +msgid "UFP Writer" +msgstr "Средство записи UFP" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Файл сохранён" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Записывает G-код в файл." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Подтвердите удаление" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Все файлы (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Сбалансированный" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Сбалансированный профиль разработан для достижения баланса между производительностью, качеством поверхности, механическими характеристиками и размерной точностью." +msgctxt "name" +msgid "G-code Writer" +msgstr "Средство записи G-кода" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 06cf6a3f39..94d2f5b945 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Прилипание к столу" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Продолжительность G-кода на конце экструдера" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Время, необходимое для выполнения конечного g-кода при выходе из этого экструдера." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Абсолютная конечная позиция экструдера" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Конечная Y позиция экструдера" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Y координата конечной позиции при отключении экструдера." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Продолжительность G-кода запуска экструдера" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Время, необходимое для выполнения стартового g-кода при переключении на этот экструдер." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Абсолютная стартовая позиция экструдера" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." +msgctxt "material description" +msgid "Material" +msgstr "Материал" + +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Стартовая X позиция экструдера" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Стартовая Y позиция экструдера" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Y координата стартовой позиции при включении экструдера." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X смещение сопла" @@ -131,51 +196,3 @@ msgstr "Y смещение сопла" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Смещение сопла по оси Y." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -msgctxt "material label" -msgid "Material" -msgstr "Материал" - -msgctxt "material description" -msgid "Material" -msgstr "Материал" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Прилипание к столу" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 27ca84b058..a629762179 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Тип принтера" @@ -34,7 +42,8 @@ msgstr "Стартовый G-код" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n." +msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью " +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "Завершающий G-код" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n." +msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью " +"." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "Идентификатор материала, устанавливается автоматически." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Тип материала" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Тип используемого материала." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Марка материала" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Марка используемого материала." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Ожидать пока прогреется стол" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Смещение с экструдером" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Абсолютная позиция экструдера при старте" @@ -1558,7 +1616,8 @@ msgstr "Количество дополнительных стенок запо msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала.\nЭта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." +msgstr "Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала." +"Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +msgctxt "material description" +msgid "Material" +msgstr "Материал" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Температура сопла" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "Температура печати первого слоя" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." +msgid "The temperature used for printing the first layer." +msgstr "Температура, используемая для печати первого слоя." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Поток на самой внешней линии верхней поверхности" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Компенсация потока на самой внешней линии верхней поверхности." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Поток внутренней стены верхней поверхности" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Поток для верхних/нижних линий" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Скорость самых внешних стен верхней поверхности" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Скорость печати самых внешних стен верхней поверхности." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Скорость внутренней поверхности верхней стены" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Скорость верхней оболочки" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Ускорение, с которым происходит печать внутренних стенок." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Ускорение внешней поверхности верхней стены" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Ускорение внутренней поверхности верхней стены" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Ускорение верхней оболочки" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Рывок внутренних стен верхней поверхности" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Рывок внешних стен верхней поверхности" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Рывок верхней оболочки" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Зазор поддержки по оси Z" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Расстояние от верха/низа поддерживающей конструкции до печатаемого объекта. Этот зазор обеспечивает возможность удаления поддержек после печати модели. Верхний слой поддержки под моделью может быть долей обычного слоя." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Дистанция поддержки снизу" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Расстояние между печатаемой моделью и низом поддержки." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Расстояние от печатаемого объекта до нижней части поддержки. Обратите внимание, что это значение округляется в большую сторону до высоты следующего слоя." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Разрешение связующего слоя поддержек" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Плотность связующего слоя поддержки" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Прилипание к столу" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "Разрешить наполнение материалом" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Тип прилипания к столу" @@ -3818,7 +3965,8 @@ msgstr "Дистанция до юбки" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Горизонтальное расстояние между юбкой и первым слоем печати.\nМинимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." +msgstr "Горизонтальное расстояние между юбкой и первым слоем печати." +"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Кайма только снаружи" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Расположение кромки" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Напечата поля снаружи, внутри или на обеих сторонах модели. В зависимости от модели это помогает уменьшить количество козырьков, которые необходимо потом снять, обеспечивая при этом надлежащее прилегание к основе." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Только снаружи" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Только внутри" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Везде" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Кайма внутри зоны избегания" +msgid "Brim Avoid Margin" +msgstr "Поля для избегания кромки" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Кромка вокруг модели может касаться другой модели там, где это нежелательно. При этом у моделей без кромок удаляются все кромки на этом расстоянии." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Дополнительная базовая кромка фундамента" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если основание фундамента включено, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Средняя дополнительная кромка фундамента" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если включена средняя часть фундамента, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Дополнительная кромка фундамента сверху" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если фундамент сверху включен, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Удаление внутренних углов подложки" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Удаление основания фундамента внутри углов" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Удалите внутренние углы основания фундамента, в результате чего фундамент станет выпуклым." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Удалить среднюю часть фундамента в углах" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Удалите внутренние углы средней части фундамента, в результате чего фундамент станет выпуклым." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Удалить верхнюю часть фундамента внутри углов" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Удалите внутреннюю часть из верхней части фундамента, в результате чего фундамент станет выпуклым." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Сглаживание подложки" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Сглаживание основания фундамента" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы контура основания фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Сглаживание средней части фундамента" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы среднего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Сглаживание верхней части фуендамента" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы верхнего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Воздушный зазор подложки" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "Z наложение первого слоя" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Сделайте так, чтобы первый и второй слои модели перекрывались в направлении Z, чтобы компенсировать потерю нити в воздушном зазоре. Все модели выше первого слоя модели будут сдвинуты вниз на эту величину.\nМожно отметить, что иногда из-за этой настройки второй слой печатается ниже начального слоя. Это предполагаемое поведение" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Верхние слои подложки" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Толщина нижнего слоя подложки" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Толщина верхнего слоя подложки" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ширина линии нижнего слоя подложки" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Толщина верхних слоёв поддержки." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ширина линий верха подложки" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Дистанция между линиями нижнего слоя подложки" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Дистанция между линиями верха поддержки" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Толщина нижнего слоя подложки" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Верхние слои подложки" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ширина линии нижнего слоя подложки" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Толщина верхнего слоя подложки" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Толщина верхних слоёв поддержки." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Дистанция между линиями нижнего слоя подложки" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ширина линий верха подложки" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Дистанция между линиями верха поддержки" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Порядок монотонной верхней поверхности фундамента" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Печатайте линии верхней поверхности фундамента в таком порядке, чтобы они всегда перекрывались со смежными линиями в одном направлении. Печать займет немного больше времени, но поверхность будет выглядеть более единообразной, что также видно на нижней поверхности модели." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Количество стен на фундаменте" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка фундамента." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Счетчик стен основания подложки" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Количество промежуточных стен на фундаменте" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка в средних слоях фундамента." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Количество стен наверху фундамента " + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка в верхних слоях фундамента." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "Скорость, на которой печатается подложка." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Скорость печати верха подложки" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Скорость печати низа подложки" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Скорость печати низа подложки" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Скорость печати верха подложки" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "Ускорение, с которым печатается подложка." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Ускорение печати верха подложки" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Ускорение печати низа подложки" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Ускорение, с которым печатаются верхние слои подложки." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Ускорение, с которым печатаются нижние слои подложки." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "Ускорение, с которым печатаются средние слои подложки." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Ускорение печати низа подложки" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Ускорение печати верха подложки" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Ускорение, с которым печатаются нижние слои подложки." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Ускорение, с которым печатаются верхние слои подложки." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "Скорость изменения ускорений при печати подложки." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Рывок печати верха подложки" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Рывок печати низа подложки" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Рывок печати низа подложки" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Рывок печати верха подложки" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "Скорость вращения вентилятора при печати подложки." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Скорость вентилятора для верха подложки" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Скорость вентилятора для низа подложки" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Скорость вентилятора при печати верхних слоёв подложки." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Скорость вентилятора при печати нижнего слоя подложки." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "Скорость вентилятора при печати средних слоёв подложки." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Скорость вентилятора для низа подложки" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Скорость вентилятора для верха подложки" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Скорость вентилятора при печати нижнего слоя подложки." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Скорость вентилятора при печати верхних слоёв подложки." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Тип основной башни" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Как создать основную башню:
    • Нормально: создайте корзину, в которую будут загружены вторичные материалы
    • С чередованием: создайте как можно более редкую основную башню. Это сэкономит время и нить, но это возможно только в том случае, если используемые материалы прилипают друг к другу
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Нормальная" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Чередующаяся" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Размер черновой башни" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Максимальное расстояние моста основной башни" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Максимальная длина ветвей, которые можно напечатать по воздуху." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "X позиция черновой башни" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Кайма черновой башни" +msgid "Prime Tower Base" +msgstr "Основание башни подготовки" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Размер основания башни подготовки" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Ширина бортика/основания башни подготовки. Большее основание улучшает адгезию к платформе для печати, но также уменьшает эффективную площадь печати." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Высота основания башни подготовки" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Высота основания башни подготовки. Увеличение этого значения приведет к созданию более устойчивой башни подготовки, так как основание будет шире. Если это значение слишком низкое, основание башни подготовки не будет достаточно устойчивым." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Наклон основания башни подготовки" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Множитель, используемый для наклона основания башни подготовки. Если увеличить это значение, основание станет более узким. Если уменьшить - основание станет толще." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Шаг линий рафта башни подготовки" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями рафта уникального слоя рафта башни подготовки. Большой шаг облегчает удаление рафта с платформы для печати." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "По отдельности" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Установить последовательность печати вручную" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Позволяет упорядочить список объектов, чтобы вручную установить последовательность печати. Первым будет напечатан первый объект из списка." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Заполнение объекта" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Удаление внутренних углов подложки" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Группировать внешние стены" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Счетчик стен основания подложки" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Печать отчетов о процессе" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Отчеты о событиях, выходящих за установленные пороговые значения" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Включить отчеты о процессе печати" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Включите отчеты о процессе печати для установки пороговых значений для возможного обнаружения дефектов." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Предупреждение о потоке" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Ограничение предупреждения о потоке для обнаружения." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Ограничение потока" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Ограничение аномалий потока для обнаружения." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Предупреждение о Температуре печати " + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Ограничение на предупреждение о температуре печати для обнаружения." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Ограничение температуры печати" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Ограничение на обнаружение аномалий температуры печати." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Предупреждение о температуре объема сборки " + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Ограничение предупреждения о температуре объема сборки для обнаружения." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Предел температуры объема сборки" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Ограничение на аномалию температуры объема сборки для обнаружения." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,191 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Постепенный поток включен" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Максимальное ускорение постепенного потока" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Максимальное ускорение для плавного изменения потока" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Максимальное ускорение потока начального слоя" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Размер шага дискретизации постепенного потока" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Продолжительность каждого этапа постепенного изменения потока" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Сбросить продолжительность потока" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" - - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." - -msgctxt "material description" -msgid "Material" -msgstr "Материал" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." - -msgctxt "material label" -msgid "Material" -msgstr "Материал" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Тип прилипания к столу" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Группировать внешние стены" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Поток на самой внешней линии верхней поверхности" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Компенсация потока на самой внешней линии верхней поверхности." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Поток внутренней стены верхней поверхности" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Скорость самых внешних стен верхней поверхности" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Скорость печати самых внешних стен верхней поверхности." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Скорость внутренней поверхности верхней стены" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Ускорение внешней поверхности верхней стены" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Ускорение внутренней поверхности верхней стены" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Рывок внутренних стен верхней поверхности" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Рывок внешних стен верхней поверхности" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..f4e98a6eba --- /dev/null +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Плавный поток включен" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Включите изменения плавного потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Максимальное ускорение плавного потока" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Максимальное ускорение для изменения плавного потока" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Максимальное ускорение потока начального слоя" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Минимальная скорость изменения плавного потока для первого слоя" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Размер шага дискретизации плавного потока" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Продолжительность каждого шага изменения плавного потока" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Сбросить продолжительность потока" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index f0a04f1b39..f2185d2100 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,6 +116,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "&Projeyi Kaydet..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "&Universal Cura Project'i Kaydet..." + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "&Ayarlar" @@ -138,7 +142,9 @@ msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatma msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" +msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin" +"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin" +"- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" msgctxt "@heading" msgid "-- incomplete --" @@ -198,15 +204,24 @@ msgstr "
  • OpenGL Sürümü: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

    \n

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

    \n " +msgstr "

    Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

    " +"

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

    " +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

    \n

    Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

    \n

    Yedekler yapılandırma klasöründe bulunabilir.

    \n

    Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

    \n " +msgstr "

    Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

    " +"

    Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

    " +"

    Yedekler yapılandırma klasöründe bulunabilir.

    " +"

    Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

    \n

    {model_names}

    \n

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    \n

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " +msgstr "

    Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

    " +"

    {model_names}

    " +"

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    " +"

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -218,6 +233,10 @@ msgid_plural "A cloud connection is not available for some printers" msgstr[0] "Yazıcı için kullanılabilir bulut bağlantısı yok" msgstr[1] "Bazı yazıcılar için kullanılabilir bulut bağlantısı yok" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "Oldukça yoğun ve güçlü bir parça ama daha yavaş bir yazdırma süresine sahip. Fonksiyonel parçalar için idealdir." + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." @@ -390,6 +409,14 @@ msgctxt "@button" msgid "Agree" msgstr "Kabul ediyorum" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tüm Dosyalar (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tüm desteklenen türler ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Anonim veri gönderilmesine izin ver" @@ -430,10 +457,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "Anonim" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "Anonim çökme raporları" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "Uygulama çerçevesi" +msgctxt "@title:column" +msgid "Applies on" +msgstr "Geçerli:" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "Ekstrüder ofsetlerini GCode'a uygula" @@ -474,6 +509,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" @@ -486,6 +525,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Tüm Modelleri bir ızgarada düzenleyin" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Düzenleme Seçimi" + msgctxt "@label:button" msgid "Ask a question" msgstr "Soru gönder" @@ -546,6 +589,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Yedeklemeler" +msgctxt "@label" +msgid "Balanced" +msgstr "Dengeli" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Taban (mm)" @@ -602,6 +649,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "Hesaplanmış" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "Kamera navigasyonu:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "Kamera oluşturma:" @@ -634,6 +685,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFP dosyasına yazamıyor:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "İptal Et" + msgctxt "@button" msgid "Cancel" msgstr "İptal" @@ -810,6 +865,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Çap Değişikliğini Onayla" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Kaldırmayı Onayla" + msgctxt "@action:button" msgid "Connect" msgstr "Bağlan" @@ -894,6 +953,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Sunucunun yanıtı yorumlanamadı." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "GCodeWriter eklentisi yüklenemedi. Eklentiyi yeniden etkinleştirmeyi deneyin." + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Pazar Yerine ulaşılamadı." @@ -906,6 +969,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0} dosyasına kaydedilemedi: {1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" @@ -916,15 +983,18 @@ msgstr "Veri yazıcıya yüklenemedi." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}\nİşlem yürütme izni yok." +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" +"İşlem yürütme izni yok." msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}\nİşletim sistemi tarafından engelleniyor (antivirüs?)" +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" +"İşletim sistemi tarafından engelleniyor (antivirüs?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}\nKaynak geçici olarak kullanılamıyor" +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" +"Kaynak geçici olarak kullanılamıyor" msgctxt "@title:window" msgid "Crash Report" @@ -1000,7 +1070,8 @@ msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profil msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir.\nCura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" +msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir." +"Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" msgctxt "@label" msgid "Cura language" @@ -1090,10 +1161,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Varsayılan" -msgctxt "@label" -msgid "Default" -msgstr "Varsayılan" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: " @@ -1242,6 +1309,10 @@ msgctxt "@label" msgid "Draft" msgstr "Taslak" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "Tüm Modelleri baskı tablasına bırak" + msgctxt "@action:button" msgid "Duplicate" msgstr "Çoğalt" @@ -1322,6 +1393,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Yazıcınızın IP adresini girin." +msgctxt "@info:title" +msgid "Error" +msgstr "Hata" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hata geri izleme" @@ -1358,6 +1433,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "Seçimi Dışa Aktar..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "Universal Cura Project'i Dışa Aktar" + msgctxt "@button" msgid "Export material archive" msgstr "Malzeme arşivini dışa aktar" @@ -1386,10 +1465,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Ekstruder G-Code'u Sonlandırma" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "Ekstruder Bitiş G kodu süresi" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Ekstruder G-Code'u Başlatma" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "Ekstruder Başlangıç G kodu süresi" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "Ekstruder {0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" @@ -1450,6 +1541,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Malzeme arşivi kaydedilemedi" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "Belirli bir bulut yazıcısına yazma işlemi başarısız oldu: {0} uzak saklama biriminde değil." + msgctxt "@label:category menu label" msgid "Favorites" msgstr "Favoriler" @@ -1466,6 +1561,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "Filaman ağırlığı" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Dosya Zaten Mevcut" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Dosya Kaydedildi" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Dosya {0} geçerli bir profil içermemekte." @@ -1574,6 +1677,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "Katman görünümünü uyumluluk moduna zorla (yeniden başlatma gerekir)" +msgid "FreeCAD trackpad" +msgstr "FreeCAD dokunmatik fare" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Önden Görünüm" @@ -1626,6 +1732,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Portal Yüksekliği" +msgctxt "@title:tab" +msgid "General" +msgstr "Genel" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Modelde çıkıntılı olan kısımlarını desteklemek için yapılar oluşturun. Bu yapılar olmadan, bu parçalar baskı sırasında çökecektir." @@ -1646,6 +1756,10 @@ msgctxt "@action" msgid "Get started" msgstr "Başlayın" +msgctxt "@label" +msgid "Global" +msgstr "Küresel" + msgctxt "@title:tab" msgid "Global Settings" msgstr "Küresel Ayarlar" @@ -1694,6 +1808,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "Bağlı tüm yazıcıları gizle" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "Ayarları gizle" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "Bu ayarı gizle" @@ -1766,6 +1884,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "Paketi kullanmak için Cura'yı yeniden başlatmanız gerekecek" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "UltiMaker hesap adını ekle" + msgctxt "@label" msgid "Infill" msgstr "Dolgu" @@ -1978,6 +2100,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Daha fazla bilgi edinin" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + msgctxt "@button" msgid "Learn more" msgstr "Daha fazla bilgi edinin" @@ -2106,6 +2232,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot Baskı Dosyası" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter belirlenen yola kaydedemedi." + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter metin modunu desteklemiyor." + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Malzemeleri Yönet..." @@ -2410,6 +2548,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "Mevcut filtreyle başka sonuç bulunmadı" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "Belirli bir değer ayarlanmadı" + msgctxt "@label" msgid "No time estimation available" msgstr "Süre tahmini yok" @@ -2482,6 +2624,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Ekstrüder Sayısı" +msgctxt "@action:button" +msgid "OK" +msgstr "Tamam" + msgctxt "@label" msgid "OS language" msgstr "İşletim sistemi dili" @@ -2506,6 +2652,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "Hata! Dilimleme işleminiz sırasında beklenmeyen bir hatayla karşılaştık. Tercihlerinizde veri paylaşımını devre dışı bırakmadıysanız, analiz için çökme kayıtlarını otomatik olarak aldığımıza emin olabilirsiniz. Bize daha fazla yardımcı olmak için proje ayrıntılarınızı sorun takipçimizde paylaşmayı düşünebilirsiniz." + msgctxt "@action:button" msgid "Open" msgstr "Aç" @@ -2534,10 +2684,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "Proje Dosyası Aç" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "Universal Cura Project (UCP)'i aç" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "Universal Cura Project (UCP) dosyasını aç" + msgctxt "@action:label" msgid "Open With" msgstr "Birlikte Aç" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "UCP olarak aç" + msgctxt "@action:button" msgid "Open as project" msgstr "Proje olarak aç" @@ -2635,7 +2797,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Panodan yapıştır" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Duraklat" @@ -2697,7 +2858,10 @@ msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:\n- Yazıcının açık olup olmadığını kontrol edin.\n- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." +msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:" +"- Yazıcının açık olup olmadığını kontrol edin." +"- Yazıcının ağa bağlı olup olmadığını kontrol edin." +"- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +2875,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Bu profil için lütfen bir ad girin." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Lütfen yeni bir isim belirtin." + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Eklenti lisansını okuyun ve kabul edin." @@ -2721,7 +2889,10 @@ msgstr "Lütfen yazıcıyı çıkarın" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n- Yapı hacmine sığma\n- Etkin bir ekstrüdere atanma\n- Değiştirici kafesler olarak ayarlanmama" +msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:" +"- Yapı hacmine sığma" +"- Etkin bir ekstrüdere atanma" +"- Değiştirici kafesler olarak ayarlanmama" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2731,6 +2902,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "UltiMaker Cura Enterprise için onaylı eklenti ve malzemeleri almak için lütfen oturum açın" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "Anonim olmayan verilerin gönderilmesine izin vermek için lütfen UltiMaker hesabınızda oturum açın." + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "Lütfen baskıya başlamadan önce malzeme profillerini yazıcılarınızla senkronize edin." @@ -2815,6 +2990,14 @@ msgctxt "@action:button" msgid "Print" msgstr "Yazdır" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "Sonra Yazdır" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "Önce Yazdır" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2935,6 +3118,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Yazıcı ayarları, projeyle birlikte kaydedilen ayarlarla eşleşecek şekilde güncellenir." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Yazıcılar" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factory'den eklenen yazıcılar:" @@ -3143,6 +3330,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Yeniden adlandır" +msgctxt "@title:window" +msgid "Rename" +msgstr "Yeniden Adlandır" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Profili Yeniden Adlandır" @@ -3244,8 +3435,12 @@ msgid "Save Cura project" msgstr "Cura projesini kaydet" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Cura projesini kaydet ve dosyayı yazdır" +msgid "Save Cura project and .makerbot print file" +msgstr "Cura projesini ve .makerbot yazdırma dosyasını kaydet" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "Cura projesini ve .ufp yazdırma dosyasını kaydet" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3271,6 +3466,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "Yeni profil kaydet" +msgctxt "@action:button" +msgid "Save project" +msgstr "Projeyi kaydet" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr ".umm dosyasını bir USB çubuğa kaydedin." @@ -3287,6 +3486,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" +msgctxt "@info:title" +msgid "Saving" +msgstr "Kaydediliyor" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" @@ -3367,6 +3570,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "Çökme raporunu UltiMaker’a gönder" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "Kayıtlı UltiMaker hesap adınız ve proje adınızla birlikte çökme raporlarını UltiMaker Sentry'ye gönderin. Hiçbir gerçek model verisi gönderilmez." + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "Çökme raporlarını kişisel olarak tanımlanabilecek herhangi bir bilgi veya model verisi olmadan UltiMaker'a gönderin." + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "Motor çökmesi raporlarını gönder" + msgctxt "@action:button" msgid "Send report" msgstr "Rapor gönder" @@ -3411,6 +3626,14 @@ msgctxt "@label" msgid "Settings" msgstr "Ayarlar" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ayarlar" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "UCP dosyasından yüklenen ayarlar" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:" @@ -3479,6 +3702,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "Masaüstünden veya harici uygulamalardan açılan dosyalar aynı Cura örneğinde mi açılacak?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "Dilimleme çökmeleri otomatik olarak Ultimaker'a bildirilmeli mi? Açıkça izin vermediğiniz sürece hiçbir modelin, IP adresinin veya diğer kişisel bilgilerin gönderilmediğini veya saklanmadığını unutmayın." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Cura'nın tek örneğinde yeni bir model yüklenmeden önce yapı plakası temizlensin mi?" @@ -3535,6 +3762,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Ayrıntılı çökme raporu göster" +msgctxt "@action:button" +msgid "Show settings" +msgstr "Ayarları göster" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "Projeyi kaydederken özet iletişim kutusunu göster" @@ -3603,10 +3834,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "Dilimleme başarısız" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "Dilimleme işlemi beklenmeyen bir hatayla başarısız oldu. Lütfen sorun izleyicimizde hata bildirmeyi düşünün." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "Dilimleniyor..." @@ -3615,13 +3842,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Düzeltme" +msgctxt "@label" +msgid "Solid" +msgstr "Katı" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Gerçek görünüm" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n\nBu ayarları görmek için tıklayın." +msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır." +"Bu ayarları görmek için tıklayın." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3637,7 +3869,8 @@ msgstr "1 kapsamında tanımlanan bazı ayar değerleri geçersiz kılın msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n\nProfil yöneticisini açmak için tıklayın." +msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır." +"Profil yöneticisini açmak için tıklayın." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +3896,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Cura'ya Sponsor Olun" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Cura'ya Sponsor Olun" @@ -3721,10 +3952,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "Önerilen Malzeme ayarları" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "Önerilen Profil ayarları" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "Özet - Cura Projesi" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "Özet - Universal Cura Project (UCP)'i aç" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "Özet - Universal Cura Project" + msgctxt "@label" msgid "Support" msgstr "Destek" @@ -3843,6 +4090,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Yedekleme maksimum dosya boyutunu aşıyor." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Dengeli profil, verimlilik, yüzey kalitesi, mekanik özellikler ve boyutsal doğruluk arasında bir denge kurmayı amaçlar." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." @@ -3899,6 +4150,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir." @@ -3959,7 +4214,10 @@ msgstr "Bu ekstrudere takılan nozül." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Baskı dolgu malzemesinin deseni:\n\nİşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin.\n\nÇok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz.\n\nBirden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." +msgstr "Baskı dolgu malzemesinin deseni:" +"İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin." +"Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz." +"Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4077,6 +4335,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Bu bir Cura Universal proje dosyasıdır. Cura projesi veya Cura Universal Project olarak mı açmak istiyorsunuz yoksa içindeki modelleri mi aktarmak istiyorsunuz?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "Bu bir Cura proje dosyasıdır. Bir proje olarak açmak mı yoksa içindeki modelleri içe aktarmak mı istiyorsunuz?" @@ -4125,7 +4387,8 @@ msgstr "Bu proje şu anda Cura'da yüklü olmayan materyal veya eklentiler içer msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Bu ayarın değeri profilden farklıdır.\n\nProfil değerini yenilemek için tıklayın." +msgstr "Bu ayarın değeri profilden farklıdır." +"Profil değerini yenilemek için tıklayın." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4143,7 +4406,8 @@ msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan d msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n\nHesaplanan değeri yenilemek için tıklayın." +msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var." +"Hesaplanan değeri yenilemek için tıklayın." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4153,6 +4417,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "Bu ayar, çakışan ekstrüdere özgü değerlerden çözümlenir:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "Bu ayar, Universal Cura Project'e aktarım sırasında iyi performans göstermeyebilir. Kullanıcıların bu ayarı riski kendilerine ait olmak üzere eklemeleri istenir." + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "Bu ayar Universal Cura Project'e aktarım sırasında iyi performans göstermeyebilir. Kullanıcılardan riski kendilerine ait olmak üzere eklemeleri istenir." + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "Bu sürüm üretimde kullanıma yönelik değildir. Herhangi bir sorunla karşılaşırsanız, lütfen tam sürümü {self.getVersion()} belirterek GitHub sayfamıza bildirin." @@ -4245,6 +4517,10 @@ msgctxt "@action:label" msgid "Type" msgstr "Tür" +msgctxt "@label" +msgid "Type" +msgstr "Tür" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB yazdırma" @@ -4299,7 +4575,8 @@ msgstr "{self._plugin_id} için yürütülebilir yerel EnginePlugin sunucusu bul msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}\nErişim reddedildi." +msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}" +"Erişim reddedildi." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4341,6 +4618,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin." +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "Dosyaya yazılamıyor: {0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "Mevcut değil" @@ -4361,6 +4642,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Birim" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Project" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Universal Cura Project dosyaları, konumsal veriler ve seçilen ayarlar korunarak farklı 3D yazıcılarda yazdırılabilir. Dışa aktarıldığı zaman baskı tablasından bulunan tüm modeller mevcut konumları, yönelimleri ve ölçekleriyle birlikte dahil edilecektir. Düzgün yazdırmayı sağlamak için hangi ekstruder başına veya model başına ayarların dahil olması gerektiğini de seçebilirsiniz." + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "Evrensel yapı sistemi yapılandırması" @@ -4477,6 +4766,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil" +msgctxt "@title:column" +msgid "Value" +msgstr "Değer" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Yazıcıları Digital Factory’de görüntüleyin" @@ -4525,6 +4818,10 @@ msgctxt "@button" msgid "Want more?" msgstr "Daha fazla seçenek görüntülemek ister misiniz?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Uyarı" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın." @@ -4549,6 +4846,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "Hangi yazıcıyı kurmak istersiniz?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "Ne tür kamera navigasyonu kullanılmalı?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "Ne tür bir kamera oluşturma işlemi kullanılmalıdır?" @@ -4627,7 +4928,8 @@ msgstr "Evet" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" +msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz." +"Devam etmek istediğinizden emin misiniz?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4649,7 +4951,9 @@ msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğm msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Bazı profil ayarlarını özelleştirdiniz.\nProfiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\nAlternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." +msgstr "Bazı profil ayarlarını özelleştirdiniz." +"Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?" +"Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4681,7 +4985,8 @@ msgstr "Yeni yazıcınız Cura’da otomatik olarak görünecektir" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı.\n Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" +msgstr "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı." +" Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" msgctxt "@label" msgid "Z" @@ -4727,6 +5032,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "bugün" @@ -4747,491 +5056,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} eklenti indirilemedi" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarımı için destek sağlar." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profili Yazıcı" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." - -msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Eski Cura Profil Okuyucu" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Okuyucu" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UPF Yazıcı" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5’ten 4.0’a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7'den 4.8'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9'dan 4.10'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2'dan 3.3'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7’den 3.0’a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11'den 4.12'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8'den 4.9'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3'ten 4.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3'dan 3.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4'ten 4.5'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1’den 2.2’ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2'den 4.3'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2'dan 5.3'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0’dan 4.1’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2’den 2.4’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4’ten 3.5’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13'ten 5.0'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4'ten 5.5'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0'dan 3.1'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3'ten 5.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" - -msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura Profil Okuyucu" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Model Başına Ayarları sağlar." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Model Başına Ayarlar Aracı" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura’da ön izleme aşaması sunar." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Öz İzleme Aşaması" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Destek Silici" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code Okuyucu" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ultimaker makine eylemleri" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen Görüntüsü sağlar." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen Görüntüsü" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker ağındaki yazıcılar için ağ bağlantılarını yönetir." +msgstr "UltiMaker ağ bağlantılı yazıcılara olan ağ bağlantılarını yönetir." msgctxt "name" msgid "UltiMaker Network Connection" msgstr "Ultimaker Ağ Bağlantısı" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Makine Ayarları eylemi" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Model dosyalarını okuma desteği sağlar." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Okuyucu" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." - -msgctxt "name" -msgid "Marketplace" -msgstr "Mağaza" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." - -msgctxt "name" -msgid "Image Reader" -msgstr "Resim Okuyucu" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aygıt Yazılımı Güncelleyici" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Arka Uç" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura’da hazırlık aşaması sunar." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Hazırlık Aşaması" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Bellenim güncellemelerini denetler." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Bellenim Güncelleme Denetleyicisi" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-code’u bir dosyaya yazar." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code Yazıcı" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." - -msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF Okuyucu" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." - -msgctxt "name" -msgid "USB printing" -msgstr "USB yazdırma" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Okuyucu" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." @@ -5248,6 +5080,374 @@ msgctxt "name" msgid "Solid View" msgstr "Gerçek Görünüm" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF dosyalarının okunması için destek sağlar." + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF Okuyucu" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." + +msgctxt "name" +msgid "USB printing" +msgstr "USB yazdırma" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Bellenim güncellemelerini denetler." + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Bellenim Güncelleme Denetleyicisi" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." + +msgctxt "name" +msgid "Marketplace" +msgstr "Mağaza" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Makine Ayarları eylemi" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7'den 4.8'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4'ten 4.5'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0'dan 3.1'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11'den 4.12'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3'dan 3.4'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8'den 4.9'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2'den 4.3'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2'dan 3.3'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3'ten 4.4'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Yapılandırmaları, Cura 5.6'dan Cura 5.7'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6'dan 5.7'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1’den 2.2’ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3'ten 5.4'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9'dan 4.10'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7’den 3.0’a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5’ten 4.0’a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2'dan 5.3'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0’dan 4.1’e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13'ten 5.0'a Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4’ten 3.5’e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2’den 2.4’e Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4'ten 5.5'e Sürüm Yükseltme" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code Okuyucu" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." + +msgctxt "name" +msgid "Slice info" +msgstr "Dilim bilgisi" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Destek Silici" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." + +msgctxt "name" +msgid "Model Checker" +msgstr "Model Kontrol Edici" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura’da hazırlık aşaması sunar." + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Hazırlık Aşaması" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." + +msgctxt "name" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF dosyalarının okunması için destek sağlar." + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Okuyucu" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen Görüntüsü sağlar." + +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen Görüntüsü" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Eski Cura Profil Okuyucu" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" + +msgctxt "name" +msgid "Post Processing" +msgstr "Son İşleme" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" @@ -5257,12 +5457,20 @@ msgid "Sentry Logger" msgstr "Nöbetçi Günlükçü" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBot Format Paketleri yazmayı destekler." msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot Baskı Dosyası Yazarı" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura profillerinin içe aktarılması için destek sağlar." + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura Profil Okuyucu" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5273,12 +5481,20 @@ msgid "UFP Reader" msgstr "UFP Okuyucu" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF dosyalarının yazılması için destek sağlar." +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" +msgid "Image Reader" +msgstr "Resim Okuyucu" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Arka Uç" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5288,89 +5504,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "Sıkıştırılmış G-code Yazıcısı" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ultimaker makine eylemleri" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura’da ön izleme aşaması sunar." + +msgctxt "name" +msgid "Preview Stage" +msgstr "Öz İzleme Aşaması" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Cura profillerinin dışa aktarılması için destek sağlar." -msgctxt "@info:title" -msgid "Error" -msgstr "Hata" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profili Yazıcı" -msgctxt "@action:button" -msgid "Cancel" -msgstr "İptal Et" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D dosyalarının okunması için destek sağlar." -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ayarlar" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D Okuyucu" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Model dosyalarını okuma desteği sağlar." -msgctxt "@action:button" -msgid "Learn more" -msgstr "Daha fazla bilgi edinin" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Okuyucu" -msgctxt "@title:tab" -msgid "General" -msgstr "Genel" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura’da görüntüleme aşaması sunar." -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Görüntüleme Aşaması" -msgctxt "@label" -msgid "Type" -msgstr "Tür" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Model Başına Ayarları sağlar." -msgctxt "@info:title" -msgid "Saving" -msgstr "Kaydediliyor" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Model Başına Ayarlar Aracı" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Dosya Zaten Mevcut" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tüm desteklenen türler ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "Malzeme Profilleri" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0} dosyasına kaydedilemedi: {1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MF ve UCP dosyalarının yazılması için destek sağlar." -msgctxt "@action:button" -msgid "OK" -msgstr "Tamam" +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Yazıcı" -msgctxt "@info:title" -msgid "Warning" -msgstr "Uyarı" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." -msgctxt "@title:tab" -msgid "Printers" -msgstr "Yazıcılar" +msgctxt "name" +msgid "UFP Writer" +msgstr "UPF Yazıcı" -msgctxt "@info:title" -msgid "File Saved" -msgstr "Dosya Kaydedildi" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-code’u bir dosyaya yazar." -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Kaldırmayı Onayla" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tüm Dosyalar (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Dengeli" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Dengeli profil, verimlilik, yüzey kalitesi, mekanik özellikler ve boyutsal doğruluk arasında bir denge kurmayı amaçlar." +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code Yazıcı" diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 5377de408c..737842eac8 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "Ekstruder Bitiş G Kodu Süresi" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Bu ekstruderden ayrılırken son g kodunun uygulanması için gereken süre." + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Ekstruderin Mutlak Bitiş Konumu" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Ekstruderin Y Bitiş Konumu" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "Ekstruder Başlangıç ​​G Kodu Süresi" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Bu ekstrudere geçiş sırasında başlangıç ​​g kodunun uygulanması için gereken süre." + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Ekstruderin Mutlak Başlangıç Konumu" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Ekstruder X Başlangıç Konumu" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Ekstruder Y Başlangıç Konumu" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Nozül NX Ofseti" @@ -131,51 +196,3 @@ msgstr "Nozül Y Ofseti" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Nozül ofsetinin y koordinatı." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." - -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" - -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 8499d1a8c7..b7d6b866f2 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + msgctxt "machine_name label" msgid "Machine Type" msgstr "Makine Türü" @@ -34,7 +42,8 @@ msgstr "G-code’u Başlat" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları\n." +msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları" +"." msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "G-code’u Sonlandır" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "En son çalıştırılacak G-code komutları (\n ile ayrılır)." +msgstr "En son çalıştırılacak G-code komutları (" +" ile ayrılır)." msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." +msgctxt "material_type label" +msgid "Material Type" +msgstr "Malzeme Türü" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Kullanılan malzemenin türü." + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Malzeme Markası" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Kullanılan malzemenin markası." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "Yapı Levhasının Isınmasını Bekle" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Ekstruder Ofseti" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "Mutlak Ekstruder İlk Konumu" @@ -1558,7 +1616,8 @@ msgstr "Ekstra Dolgu Duvar Sayısı" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz.\nBu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." +msgstr "Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz." +"Bu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Varsayılan Yazdırma Sıcaklığı" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "İlk Katman Yazdırma Sıcaklığı" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." +msgid "The temperature used for printing the first layer." +msgstr "İlk katmanın basımında kullanılan sıcaklık." msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Üst Yüzeyin En Dış Duvar Akışı" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Üst Yüzey İç Duvar Akışı" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "Üst/Alt Akış" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Üst Yüzeyin En Dış Duvar Hızı" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Üst Yüzey İç Duvar Hızı" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "Üst Yüzey Hızı" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "İç duvarların yazdırıldığı ivme." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Üst Yüzey Dış Duvar Hızlanması" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Üst Yüzey İç Duvar Hızlanması" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Üst Yüzey İvmesi" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Üst Yüzeyin İç Duvar Darbesi" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Üst Yüzeyin En Dış Duvar Darbesi" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "Üst Yüzey İvmesi Değişimi" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "Destek Z Mesafesi" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Desteğin üstü/altı ile baskı arasındaki mesafe. Bu boşluk, model basıldıktan sonra desteklerin kolayca çıkarılabilmesini sağlar. Modelin altındaki en üst destek katmanı, düzenli katmanların bir kısmı olabilir." msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "Destek Alt Mesafesi" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Baskıdan desteğin altına olan mesafe." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Baskıdan desteğin altına kadar olan mesafe. Bunun bir sonraki katman yüksekliğine yuvarlandığını unutmayın." msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Destek Arayüz Çözünürlüğü" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "Destek Arayüzü Yoğunluğu" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "İlk Damlayı Etkinleştir" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "Yapı Levhası Türü" @@ -3818,7 +3965,8 @@ msgstr "Etek Mesafesi" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\nMinimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." +msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe." +"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Sadece Dış Kısımdaki Kenar" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Brim Konumu" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Modelin dışına, içine veya her ikisine de bir brim yazdırın. Modele bağlı olarak bu, daha sonra çıkarmanız gereken brim miktarının azaltılmasına yardımcı olurken yatağın düzgünce yapışmasını sağlar." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Yalnızca Dışarıda" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Yalnızca İçeride" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Her Yerde" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Kenar İçi Kaçınma Payı" +msgid "Brim Avoid Margin" +msgstr "Brim Engelleme Toleransı" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Bir modelin etrafındaki brim, istemediğiniz yerden başka bir modele değebilir. Bu, brim olmayan modellerde bu mesafedeki tüm brimleri ortadan kaldırır." msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Raft Tabanı Ekstra Tolerans" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft tabanı etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Raft Ortası Ekstra Tolerans" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft ortası etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Raft Üstü Ekstra Tolerans" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft üstü etkinleştirilmişse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Radye İç Köşelerini Kaldır" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Raft Tabanını İç Köşelerini Kaldır" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın tabanındaki iç köşeleri çıkarır." + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Raft Ortası İç Köşelerini Kaldır" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın orta kısmındaki iç köşeleri çıkarır." + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Raft Üstü İç Köşelerini Çıkar" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın üst kısmındaki iç köşeleri çıkarır." + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Radye Düzeltme" @@ -3900,6 +4116,30 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Raft Tabanı Düzeltme" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft tabanı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Raft Orta Düzeltme" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft orta kısmı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Raft Üst Düzeltme" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft üstü taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Radye Hava Boşluğu" @@ -3913,40 +4153,32 @@ msgid "Initial Layer Z Overlap" msgstr "İlk Katman Z Çakışması" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Hava boşluğundaki filament kaybını telafi etmek için modelin birinci ve ikinci katmanını Z yönünde üst üste getirir. İlk model katmanının üzerindeki tüm modeller bu miktarda aşağı kaydırılacaktır.\nBu ayar nedeniyle bazen ikinci katmanın ilk katmanın altına yazdırıldığı belirtilebilir. Bu istenilen davranıştır" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Radyenin Üst Katmanları" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Radye Taban Kalınlığı" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Radyenin Üst Katman Kalınlığı" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Radyenin Taban Hat Genişliği" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Üst radye katmanlarının katman kalınlığı." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Radyenin Üst Hat Genişliği" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Radye Taban Hat Genişliği" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Radyenin Üst Boşluğu" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4212,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Radye Taban Kalınlığı" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Radyenin Üst Katmanları" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Radyenin Taban Hat Genişliği" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Radyenin Üst Katman Kalınlığı" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Üst radye katmanlarının katman kalınlığı." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Radye Taban Hat Genişliği" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Radyenin Üst Hat Genişliği" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Radyenin Üst Boşluğu" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotonik Raft Üst Yüzey Düzeni" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Raftın üst yüzey çizgilerini, her zaman bitişik çizgilerle tek bir yönde üst üste binmelerine neden olacak bir sırayla yazdırır. Bu, yazdırmanın biraz daha fazla zaman almasını sağlar ama yüzeyin daha tutarlı görünmesini sağlar, bu da modelin alt yüzeyinde de görülebilir." + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Raft Duvar Sayısı" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Raft doğrusal modelinin etrafına yazdırılacak konturların sayısı." + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Radye Tabanı Duvar Sayısı" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Raft Orta Duvar Sayısı" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Raftın orta katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Raft Üstü Duvar Sayısı" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Raftın üst katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4292,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "Radyenin yazdırıldığı hız." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Radye Üst Yazdırma Hızı" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Radyenin Taban Yazdırma Hızı" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4308,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Radyenin Taban Yazdırma Hızı" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Radye Üst Yazdırma Hızı" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4324,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "Radyenin yazdırıldığı ivme." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Radye Üst Yazdırma İvmesi" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Radyenin Taban Yazdırma İvmesi" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı ivme." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivme." msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4340,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "Orta radye katmanının yazdırıldığı ivme." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Radyenin Taban Yazdırma İvmesi" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Radye Üst Yazdırma İvmesi" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivme." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı ivme." msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4356,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "Radyenin yazdırıldığı salınım." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Radye Üst Yazdırma Salınımı" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Radyenin Taban Yazdırma Salınımı" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı salınım." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4372,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "Orta radye katmanının yazdırıldığı salınım." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Radyenin Taban Yazdırma Salınımı" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Radye Üst Yazdırma Salınımı" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı salınım." msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4388,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "Radye için fan hızı." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Radye Üst Fan Hızı" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Radyenin Taban Fan Hızı" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Üst radye katmanları için fan hızı." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Radyenin taban katmanı için fan hızı." msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4404,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "Radyenin orta katmanı için fan hızı." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Radyenin Taban Fan Hızı" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Radye Üst Fan Hızı" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Radyenin taban katmanı için fan hızı." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Üst radye katmanları için fan hızı." msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4428,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Asal Kule Türü" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Asal kule nasıl oluşturulur:
    • Normal: İkincil malzemelerin astarlandığı bir kova oluşturur.
    • Aralıklı: Olabildiğince seyrek bir asal kule oluşturur. Bu, zamandan ve filamentten tasarruf sağlayacaktır ama bu yalnızca kullanılan malzemelerin birbirine yapışması durumunda mümkündür.
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Aralıklı" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "İlk Direk Boyutu" @@ -4164,6 +4460,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Asal Kule Maksimum Köprüleme Mesafesi" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Havadan basılabilecek dalların maksimum uzunluğu." + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "İlk Direk X Konumu" @@ -4189,12 +4493,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Astarlama Direği Kenarı" +msgid "Prime Tower Base" +msgstr "Başlangıç Kulesi Tabanı" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Başlangıç Kulesi Taban Boyutu" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Prime tower brim/tabanının genişliği. Daha büyük bir taban yapışmayı artırır, ancak etkili baskı alanını da azaltır." + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Başlangıç Kulesi Taban Yüksekliği" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Prime tower tabanının yüksekliği. Bu değeri artırmak, taban daha geniş olacağı için daha sağlam bir prime tower oluşturur. Eğer bu ayar çok düşükse, prime tower sağlam bir tabana sahip olmayacaktır." + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Prime Tower Taban Eğimi" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Prime tower tabanının eğiminde kullanılan büyüklük faktörü. Bu değeri artırırsanız, taban daha ince hale gelir. Azaltırsanız, taban daha kalın olur." + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Başlangıç Kulesi Salı İzi Aralığı" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Tek başlangıç kulesi sal katmanı için sal izleri arasındaki mesafe. Geniş aralıklar, salın yapıştırma tablasından kolay çıkarılmasını sağlar." msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4756,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Birer Birer" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Baskı Sırasını Manuel Olarak Ayarla" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "Yazdırma sırasını manuel olarak ayarlamak için nesne listesini sıralamanızı sağlar. Listedeki ilk nesne ilk olarak yazdırılacaktır." + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Dolgu Ağı" @@ -5228,21 +5572,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Radye İç Köşelerini Kaldır" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Dış Duvarları Grupla" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Radye Tabanı Duvar Sayısı" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Yazdırma Süreci Raporlaması" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Belirlenen eşiklerin dışına çıkan etkinliklerin raporlanması" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Yazdırma İşlemi Raporlamasını Etkinleştir" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Olası hata tespitine yönelik eşik değerlerini ayarlamak için yazdırma işlemi raporlamasını etkinleştirin." + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Akış Uyarısı" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Tespit için akış uyarısı sınırı." + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Akış Sınırı" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Tespit için akış anormalliği sınırı." + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Yazdırma sıcaklığı Uyarısı" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Tespit için Yazdırma sıcaklığı uyarısı sınır." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Yazdırma sıcaklığı Sınırı" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Tespit için Yazdırma Sıcaklığı anormalliği sınırı." + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Yapı Hacmi sıcaklığı Uyarısı" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Tespit için Yapı Hacmi Sıcaklığı Sınırı uyarısı." + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "Yapı Hacmi Sıcaklık Sınırı" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Tespit için Yapı Hacmi Sıcaklığı Anormallik Sınırı." msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,190 +5692,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi." -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Kademeli akış etkin" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Kademeli akış maksimum ivme" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Kademeli akış değişiklikleri için maksimum ivme" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "İlk katman maksimum akış ivmesi" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Kademeli akış ayrıştırma adım boyutu" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Kademeli akış değişimindeki her adımın süresi" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Akış süresini sıfırla" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." - -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." - -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Dış Duvarları Grupla" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Üst Yüzeyin En Dış Duvar Akışı" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Üst Yüzey İç Duvar Akışı" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Üst Yüzeyin En Dış Duvar Hızı" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Üst Yüzey İç Duvar Hızı" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Üst Yüzey Dış Duvar Hızlanması" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Üst Yüzey İç Duvar Hızlanması" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Üst Yüzeyin İç Duvar Darbesi" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Üst Yüzeyin En Dış Duvar Darbesi" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..025c28a10f --- /dev/null +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Kademeli akış etkinleştirildi" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Kademeli akış değişikliklerini etkinleştirin. Etkinleştirildiğinde akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, akışın ekstrüder motoru çalıştığında/durduğunda hemen değişmediği bowden tüplü yazıcılar için kullanışlıdır." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Kademeli akış maksimum ivme" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Kademeli akış değişiklikleri için maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "İlk katman maksimum akış ivmesi" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "İlk katman için kademeli akış değişiklikleri için minimum hız" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Kademeli akış ayrıklaştırma adım boyutu" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Kademeli akış değişimindeki her adımın süresi" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Akış süresini sıfırla" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bu değerden daha uzun herhangi bir seyahat hareketi için malzeme akışı, hedef akış yollarına sıfırlanır" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 7a2268de52..8f1bffe45d 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -114,6 +114,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "保存项目(&S)..." +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "& 保存 Universal Cura Project……" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "设置(&S)" @@ -136,7 +140,9 @@ msgstr "*需重新启动该应用程序,这些更改才能生效。" msgctxt "@text" msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- 从 Marketplace 添加材料配置文件和插件\n- 备份和同步材料配置文件和插件\n- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" +msgstr "- 从 Marketplace 添加材料配置文件和插件" +"- 备份和同步材料配置文件和插件" +"- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" msgctxt "@heading" msgid "-- incomplete --" @@ -196,15 +202,25 @@ msgstr "
  • OpenGL 版本: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    \n

    请使用“发送报告”按钮将错误报告自动发布到我们的服务器

    \n " +msgstr "" +"

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    \n" +"

    请使用“发送报告”按钮将错误报告自动发送到我们的服务器

    \n" +" " msgctxt "@label crash message" msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    糟糕,Ultimaker Cura 似乎遇到了问题。

    \n

    在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

    \n

    您可在配置文件夹中找到备份。

    \n

    请向我们发送此错误报告,以便解决问题。

    \n " +msgstr "

    糟糕,Ultimaker Cura 似乎遇到了问题。

    " +"

    在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

    " +"

    您可在配置文件夹中找到备份。

    " +"

    请向我们发送此错误报告,以便解决问题。

    " +" " msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    \n

    {model_names}

    \n

    找出如何确保最好的打印质量和可靠性.

    \n

    查看打印质量指南

    " +msgstr "

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    " +"

    {model_names}

    " +"

    找到确保最好的打印质量与可靠性的方法.

    \n" +"

    查看打印质量指南

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -215,6 +231,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "某些打印机无云连接可用" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "高密度和高强度的部件,但打印时间较慢。非常适合用于功能部件。" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" @@ -387,6 +407,14 @@ msgctxt "@button" msgid "Agree" msgstr "同意" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "所有文件 (*)" + +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "所有支持的文件类型 ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "允许发送匿名数据" @@ -427,10 +455,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "匿名" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "匿名崩溃报告" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "应用框架" +msgctxt "@title:column" +msgid "Applies on" +msgstr "适用于" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "将挤出器偏移量应用于 GCode" @@ -471,6 +507,10 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。" +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "您确认要删除 %1?该操作无法恢复!" + msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "是否确实要删除 {0}?此操作无法撤消!" @@ -483,6 +523,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "排列网格中的所有模型" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "排列选择" + msgctxt "@label:button" msgid "Ask a question" msgstr "提问" @@ -543,6 +587,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "备份" +msgctxt "@label" +msgid "Balanced" +msgstr "平衡" + msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" @@ -599,6 +647,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "已计算" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "导航相机:" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "摄像头渲染:" @@ -631,6 +683,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "无法写入到 UFP 文件:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + msgctxt "@button" msgid "Cancel" msgstr "取消" @@ -807,6 +863,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "确认直径更改" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "确认删除" + msgctxt "@action:button" msgid "Connect" msgstr "连接" @@ -891,6 +951,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "无法解释服务器的响应。" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "无法加载 GCodeWriter 插件。尝试重新启用插件。" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "无法连接到市场。" @@ -903,6 +967,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "未能将材料存档保存到 {}:" +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "无法保存到 {0}{1}" + msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "无法保存到可移动磁盘 {0}:{1}" @@ -913,15 +981,18 @@ msgstr "无法将数据上传到打印机。" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "无法启用 EnginePlugin:{self._plugin_id}\n没有执行进程的权限。" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" +"没有执行进程的权限。" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "无法启用 EnginePlugin:{self._plugin_id}\n操作系统正在阻止它(杀毒软件?)" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" +"操作系统正在阻止它(杀毒软件?)" msgctxt "@info:plugin_failed" msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "无法启用 EnginePlugin:{self._plugin_id}\n资源暂时不可用" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" +"资源暂时不可用" msgctxt "@title:window" msgid "Crash Report" @@ -997,7 +1068,8 @@ msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机 msgctxt "@info:credit" msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。\nCura 使用以下开源项目:" +msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。" +"Cura 使用以下开源项目:" msgctxt "@label" msgid "Cura language" @@ -1087,10 +1159,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "默认" -msgctxt "@label" -msgid "Default" -msgstr "默认" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "切换到不同配置文件时对设置值更改的默认操作: " @@ -1239,6 +1307,10 @@ msgctxt "@label" msgid "Draft" msgstr "草稿" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "将所有模型拖放到构建板" + msgctxt "@action:button" msgid "Duplicate" msgstr "复制" @@ -1319,6 +1391,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "输入您打印机的 IP 地址。" +msgctxt "@info:title" +msgid "Error" +msgstr "错误" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "错误追溯" @@ -1355,6 +1431,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "导出选择..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "导出 Universal Cura Project" + msgctxt "@button" msgid "Export material archive" msgstr "导出材料存档" @@ -1383,10 +1463,22 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "挤出机的结束 G-code" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "推料器结束 G 代码持续时间" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "挤出机的开始 G-code" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "推料器开始 G 代码持续时间" + +msgctxt "@label" +msgid "Extruder {0}" +msgstr "推料器{0}" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "挤出机已禁用" @@ -1447,6 +1539,10 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "未能保存材料存档" +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "无法写入特定云打印机:{0} 不在远程集群中。" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "收藏" @@ -1463,6 +1559,14 @@ msgctxt "@label" msgid "Filament weight" msgstr "耗材重量" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "文件已存在" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "文件已保存" + msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" @@ -1571,6 +1675,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "强制层视图兼容模式(需要重新启动)" +msgid "FreeCAD trackpad" +msgstr "FreeCAD 触控板" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "正视图" @@ -1623,6 +1730,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "十字轴高度" +msgctxt "@title:tab" +msgid "General" +msgstr "基本" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" @@ -1643,6 +1754,10 @@ msgctxt "@action" msgid "Get started" msgstr "开始" +msgctxt "@label" +msgid "Global" +msgstr "全球" + msgctxt "@title:tab" msgid "Global Settings" msgstr "全局设置" @@ -1673,7 +1788,7 @@ msgstr "热床(官方版本或自制)" msgctxt "@label" msgid "Heated bed" -msgstr "加热床" +msgstr "热床" msgctxt "@label" msgid "Heated build volume" @@ -1691,6 +1806,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "隐藏所有连接的打印机" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "隐藏设置" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "隐藏此设置" @@ -1763,6 +1882,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "要使用该包,您需要重新启动 Cura" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "包含 UltiMaker 账户名" + msgctxt "@label" msgid "Infill" msgstr "填充" @@ -1975,6 +2098,10 @@ msgctxt "@action" msgid "Learn more" msgstr "了解详情" +msgctxt "@action:button" +msgid "Learn more" +msgstr "详细了解" + msgctxt "@button" msgid "Learn more" msgstr "详细了解" @@ -2103,6 +2230,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "Makerbot 打印文件" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "MakerbotWriter 无法保存至指定路径。" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "MakerbotWriter 不支持文本模式。" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理材料..." @@ -2314,7 +2453,7 @@ msgstr "网络错误" msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" -msgstr "新 %s 稳定固件可用" +msgstr "新 %s 稳定版固件可用" msgctxt "@textfield:placeholder" msgid "New Custom Profile" @@ -2405,6 +2544,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "当前筛选没有任何结果" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "未设置具体值" + msgctxt "@label" msgid "No time estimation available" msgstr "无可用时间估计" @@ -2423,7 +2566,7 @@ msgstr "正常模式" msgctxt "@info:title" msgid "Not a group host" -msgstr "非组中的主机" +msgstr "非位于组中的主机" msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" @@ -2477,6 +2620,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "挤出机数目" +msgctxt "@action:button" +msgid "OK" +msgstr "确定" + msgctxt "@label" msgid "OS language" msgstr "操作系统语言" @@ -2501,6 +2648,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "哎呀!在您的切片过程中我们遇到了意外错误。请放心,如果您没有在首选项中禁用数据共享,我们已自动收集崩溃日志进行分析。为给我们提供进一步帮助,请考虑在我们的问题跟踪器上分享您的项目详细信息。" + msgctxt "@action:button" msgid "Open" msgstr "打开" @@ -2529,10 +2680,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "打开项目文件" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "打开 Universal Cura Project(UCP)" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "打开 Universal Cura Project(UCP)文件" + msgctxt "@action:label" msgid "Open With" msgstr "打开方式" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "以 UCP 打开" + msgctxt "@action:button" msgid "Open as project" msgstr "作为项目打开" @@ -2629,7 +2792,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "从剪贴板粘贴" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "暂停" @@ -2691,7 +2853,10 @@ msgstr "在授权此应用程序时,须提供所需权限。" msgctxt "@info" msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "请确保您的打印机已连接:\n- 检查打印机是否已启动。\n- 检查打印机是否连接至网络。\n- 检查您是否已登录查找云连接的打印机。" +msgstr "请确保您的打印机已连接:" +"- 检查打印机是否已启动。" +"- 检查打印机是否连接至网络。" +"- 检查您是否已登录查找云连接的打印机。" msgctxt "@text" msgid "Please name your printer" @@ -2705,6 +2870,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "请为此配置文件提供名称。" +msgctxt "@info" +msgid "Please provide a new name." +msgstr "请提供一个新名称。" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "请阅读并同意插件许可。" @@ -2715,7 +2884,10 @@ msgstr "请取出打印件" msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "请检查设置并检查您的模型是否:\n- 适合构建体积\n- 分配给了已启用的挤出器\n- 尚未全部设置为修改器网格" +msgstr "请检查设置并检查您的模型是否:" +"- 适合构建体积" +"- 分配给了已启用的挤出器" +"- 尚未全部设置为修改器网格" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2725,6 +2897,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "请登录以获取经验证适用于 UltiMaker Cura Enterprise 的插件和材料" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "请登录您的 UltiMaker 账户以允许发送非匿名数据。" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "请在开始打印之前将材料配置文件与您的打印机同步。" @@ -2809,6 +2985,14 @@ msgctxt "@action:button" msgid "Print" msgstr "打印" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "打印后" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "打印前" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -2927,6 +3111,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "打印机设置将更新,以便与项目一起保存的设置相一致。" +msgctxt "@title:tab" +msgid "Printers" +msgstr "打印机" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "从 Digital Factory 添加的打印机:" @@ -3135,6 +3323,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "重命名" +msgctxt "@title:window" +msgid "Rename" +msgstr "重命名" + msgctxt "@title:window" msgid "Rename Profile" msgstr "重命名配置文件" @@ -3236,8 +3428,12 @@ msgid "Save Cura project" msgstr "保存 Cura 项目" msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "保存 Cura 项目并打印文件" +msgid "Save Cura project and .makerbot print file" +msgstr "保存 Cura 项目和 .makerbot 打印文件" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" +msgstr "保存 Cura 项目和 .ufp 打印文件" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3263,6 +3459,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "保存新配置文件" +msgctxt "@action:button" +msgid "Save project" +msgstr "保存项目" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "将 .umm文件保存到 U 盘。" @@ -3279,6 +3479,10 @@ msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "保存到可移动磁盘 {0} :{1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "正在保存" + msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "保存到可移动磁盘 {0} " @@ -3359,6 +3563,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "向 UltiMaker 发送错误报告" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "将包含您注册的 UltiMaker 账户名和项目名称的崩溃报告发送到 UltiMaker Sentry。发送内容不包括实际模型数据。" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "将不带任何个人身份信息或模型数据的崩溃报告发送至 UltiMaker。" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "发送引擎崩溃报告" + msgctxt "@action:button" msgid "Send report" msgstr "发送报告" @@ -3403,6 +3619,14 @@ msgctxt "@label" msgid "Settings" msgstr "设置" +msgctxt "@title:tab" +msgid "Settings" +msgstr "设置" + +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "从 UCP 文件加载的设置" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "已根据挤出机的当前可用性更改设置:" @@ -3471,6 +3695,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "切片崩溃是否会被自动报告给 Ultimaker?请注意,除非获得您的明确许可,否则我们不会发送或存储任何模型,IP 地址或其他个人身份信息。" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?" @@ -3527,6 +3755,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "显示详细的错误报告" +msgctxt "@action:button" +msgid "Show settings" +msgstr "显示设置" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "保存项目时显示摘要对话框" @@ -3595,10 +3827,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失败" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "发生意外错误,切片失败。请于问题跟踪器上报告错误。" - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." @@ -3607,13 +3835,18 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" +msgctxt "@label" +msgid "Solid" +msgstr "固体" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "实体视图" msgctxt "@label" msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "一些隐藏设置正在使用有别于一般设置的计算值。\n\n单击以使这些设置可见。" +msgstr "一些隐藏设置正在使用有别于一般设置的计算值。" +"单击以使这些设置可见。" msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3629,7 +3862,8 @@ msgstr "在 %1 中定义的一些设置值已被覆盖。" msgctxt "@tooltip" msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "某些设置/重写值与存储在配置文件中的值不同。\n\n点击打开配置文件管理器。" +msgstr "某些设置/重写值与存储在配置文件中的值不同。" +"点击打开配置文件管理器。" msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3655,8 +3889,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "赞助 Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "赞助 Cura" @@ -3713,10 +3945,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "推荐的材料设置" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "推荐的配置文件设置" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 项目" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "概要—打开 Universal Cura Project(UCP)" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "概要—Universal Cura Project" + msgctxt "@label" msgid "Support" msgstr "支持" @@ -3834,6 +4082,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "备份超过了最大文件大小。" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "平衡配置旨在在生产力、表面质量、机械性能和尺寸精度之間取得平衡。" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "距离打印平台的底板高度,以毫米为单位。" @@ -3890,6 +4142,10 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "用于打印支撑的挤出机组。 用于多重挤出。" +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "文件 {0} 已存在。您确定要覆盖它吗?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" @@ -3949,7 +4205,10 @@ msgstr "该挤出机所使用的喷嘴。" msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "打印的填充材料的图案:\n\n对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 \n\n对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。\n\n对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" +msgstr "打印的填充材料的图案:" +"对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 " +"对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。" +"对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4067,6 +4326,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "这是 Cura Universal 项目文件。您想将其作为 Cura 项目或 Cura Universal Project 打开还是从中导入模型?" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "这是一个 Cura 项目文件。您想将其作为一个项目打开还是从中导入模型?" @@ -4114,7 +4377,8 @@ msgstr "此项目包含 Cura 目前未安装的材料或插件。
    请安装 msgctxt "@label" msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "此设置的值与配置文件不同。\n\n单击以恢复配置文件的值。" +msgstr "此设置的值与配置文件不同。" +"单击以恢复配置文件的值。" msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4131,7 +4395,8 @@ msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改 msgctxt "@label" msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "此设置通常可被自动计算,但其当前已被绝对定义。\n\n单击以恢复自动计算的值。" +msgstr "此设置通常可被自动计算,但其当前已被绝对定义。" +"单击以恢复自动计算的值。" msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4141,6 +4406,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此设置与挤出器特定值不同:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "导出为 Universal Cura Project 项目时,此设置可能无法正常运行,请用户自行承担添加此设置的风险。" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "导出为 Universal Cura Project 项目时,此设置可能无法正常运行。请用户自行承担添加此设置的风险。" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "此版本不用作生产用途。如果您遇到任何问题,请在我们的 GitHub 页面报告,并注明完整版本 {self.getVersion()}" @@ -4211,11 +4484,11 @@ msgstr "空驶" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "尝试恢复的 Cura 备份版本高于当前版本。" +msgstr "尝试从高于当前版本的 Cura 备份恢复。" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" +msgstr "尝试在没有适当数据或元数据的情况下恢复Cura备份。" msgctxt "@button" msgid "Troubleshooting" @@ -4233,6 +4506,10 @@ msgctxt "@action:label" msgid "Type" msgstr "类型" +msgctxt "@label" +msgid "Type" +msgstr "类型" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 联机打印" @@ -4287,7 +4564,8 @@ msgstr "无法为以下对象找到本地 EnginePlugin 服务器可执行文件 msgctxt "@info:plugin_failed" msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}\n访问被拒。" +msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}" +"访问被拒。" msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4329,6 +4607,10 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。" +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "无法写入文件:{0}" + msgctxt "@label:status" msgid "Unavailable" msgstr "不可用" @@ -4349,6 +4631,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "单位" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "Universal Cura Project" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "Universal Cura Project 文件可以在不同的 3D 打印机上打印,同时保留位置数据和选定的设置。导出时,构建板上显示的所有模型都将包含其当前位置,方向和比例。您还可以选择需要保留哪个推料器预设置或模型预设置,以确保正确打印。" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "通用构建系统配置" @@ -4465,6 +4755,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "实用程序库,包括 Voronoi 图生成" +msgctxt "@title:column" +msgid "Value" +msgstr "值" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "在 Digital Factory 中查看打印机" @@ -4513,6 +4807,10 @@ msgctxt "@button" msgid "Want more?" msgstr "想要更多?" +msgctxt "@info:title" +msgid "Warning" +msgstr "警告" + msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。" @@ -4527,7 +4825,7 @@ msgstr "我们已经在您所选择的文件中找到一个或多个项目文件 msgctxt "@info" msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头馈送。请单击“管理打印机”以访问 Ultimaker Digital Factory 并查看此网络摄像头。" +msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头的反馈数据。请单击“管理打印机”以访问 UltiMaker Digital Factory 并查看此网络摄像头。" msgctxt "@button" msgid "Website" @@ -4537,6 +4835,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "您要设置什么打印机?" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "应使用什么类型的导航相机?" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "应使用哪种类型的摄像头进行渲染?" @@ -4615,7 +4917,8 @@ msgstr "是" msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。\n是否确定继续?" +msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。" +"是否确定继续?" msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -4636,7 +4939,9 @@ msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "您已经自定义了若干配置文件设置。\n是否要在切换配置文件后保留这些更改的设置?\n或者,也可舍弃更改以从“%1”加载默认值。" +msgstr "您已经自定义了若干配置文件设置。" +"是否要在切换配置文件后保留这些更改的设置?" +"或者,也可舍弃更改以从“%1”加载默认值。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4668,7 +4973,8 @@ msgstr "新打印机将自动出现在 Cura 中" msgctxt "@info:status" msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "未能通过云连接您的打印机 {printer_name}。\n只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" +msgstr "未能通过云连接您的打印机 {printer_name}。" +"只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" msgctxt "@label" msgid "Z" @@ -4714,6 +5020,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "s" + msgctxt "@info:status" msgid "today" msgstr "今天" @@ -4734,491 +5044,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} 个插件下载失败" -msgid "Provides support for exporting Cura profiles." -msgstr "为导出 Cura 配置文件提供支持。" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 配置文件写入器" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" - -msgctxt "name" -msgid "Slice info" -msgstr "切片信息" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "支持从 Cura 旧版本导入配置文件。" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "旧版 Cura 配置文件读取器" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "为写入 Ultimaker 格式包提供支持。" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 写入器" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "版本自 3.5 升级到 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "版本自 4.1 升级到 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "将版本从 4.7 升级到 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "版本从 4.9 升级到 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "版本自 3.2 升级到 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "版本自 2.7 升级到 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "版本从 4.11 升级到 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "版本自 2.6 升级到 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "版本从 4.8 升级到 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "版本自 4.3 升级至 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "从Cura 3.3升级到Cura 3.4。" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "版本升级3.3到3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "版本从 4.4 升级至 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "版本自 2.5 升级到 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "版本自 2.1 升级到 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "版本自 4.2 升级至 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "版本自 5.2 升级到 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "版本自 4.0 升级到 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "版本自 2.2 升级到 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "版本自 3.4 升级到 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "版本从 4.13 升级到 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "版本 5.4 升级到 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "版本自 3.0 升级到 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "版本从 4.6.2 升级到 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "版本 5.3 升级到 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" - -msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "提供切片层数据的预览。" - -msgctxt "name" -msgid "Simulation View" -msgstr "仿真视图" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供了对导入 Cura 配置文件的支持。" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 配置文件读取器" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供对每个模型的单独设置。" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "单一模型设置工具" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" - -msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" - -msgctxt "name" -msgid "Support Eraser" -msgstr "支持橡皮擦" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允许加载和显示 G-code 文件。" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 读取器" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 备份" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供可移动磁盘热插拔和写入文件的支持。" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "可移动磁盘输出设备插件" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" - -msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 车床操作" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" - -msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" - msgctxt "description" msgid "Manages network connections to UltiMaker networked printers." -msgstr "管理 UltiMaker 联网打印机的网络连接。" +msgstr "管理与 UltiMaker 网络打印机的网络连接。" msgctxt "name" msgid "UltiMaker Network Connection" msgstr "UltiMaker 网络连接" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "打印机设置操作" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供对读取模型文件的支持。" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 阅读器" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" - -msgctxt "name" -msgid "Marketplace" -msgstr "市场" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" - -msgctxt "name" -msgid "Image Reader" -msgstr "图像读取器" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "固件更新程序" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供 CuraEngine 切片后端的路径。" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 后端" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "检查以进行固件更新。" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "固件更新检查程序" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "将 G-code 写入至文件。" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 写入器" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" - -msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供对读取 3MF 格式文件的支持。" - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 读取器" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" - -msgctxt "name" -msgid "USB printing" -msgstr "USB 联机打印" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供对读取 AMF 文件的支持。" - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 读取器" - msgctxt "description" msgid "Provides support for importing profiles from g-code files." msgstr "提供了从 GCode 文件中导入配置文件的支持。" @@ -5235,6 +5068,374 @@ msgctxt "name" msgid "Solid View" msgstr "实体视图" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供对读取 3MF 格式文件的支持。" + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 读取器" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" + +msgctxt "name" +msgid "USB printing" +msgstr "USB 联机打印" + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "检查以进行固件更新。" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "固件更新检查程序" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" + +msgctxt "name" +msgid "Marketplace" +msgstr "市场" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 备份" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "打印机设置操作" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "版本自 2.5 升级到 2.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "将版本从 4.7 升级到 4.8" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "版本从 4.4 升级至 4.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "版本自 3.0 升级到 3.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "版本从 4.11 升级到 4.12" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "版本自 4.1 升级到 4.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "版本自 2.6 升级到 2.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "版本从 4.6.0 升级到 4.6.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "从Cura 3.3升级到Cura 3.4。" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "版本升级3.3到3.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "版本从 4.8 升级到 4.9" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "版本从 4.5 升级至 4.6" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "版本自 4.2 升级至 4.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "版本自 3.2 升级到 3.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "版本自 4.3 升级至 4.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "将配置从 Cura 5.6 升级到 Cura 5.7。" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "升级版本 5.6 至 5.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "版本自 2.1 升级到 2.2" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "版本 5.3 升级到 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "版本从 4.9 升级到 4.10" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "版本自 2.7 升级到 3.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "版本自 3.5 升级到 4.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "版本自 5.2 升级到 5.3" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "版本自 4.0 升级到 4.1" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "版本从 4.13 升级到 5.0" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "版本自 3.4 升级到 3.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "版本自 2.2 升级到 2.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "版本从 4.6.2 升级到 4.7" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "版本 5.4 升级到 5.5" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "允许加载和显示 G-code 文件。" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code 读取器" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" + +msgctxt "name" +msgid "Slice info" +msgstr "切片信息" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供可移动磁盘热插拔和写入文件的支持。" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "可移动磁盘输出设备插件" + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" + +msgctxt "name" +msgid "Support Eraser" +msgstr "支持橡皮擦" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" + +msgctxt "name" +msgid "Model Checker" +msgstr "模型检查器" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "在 Cura 中提供准备阶段。" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "准备阶段" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "提供切片层数据的预览。" + +msgctxt "name" +msgid "Simulation View" +msgstr "仿真视图" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供对读取 AMF 文件的支持。" + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 读取器" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透视视图。" + +msgctxt "name" +msgid "X-Ray View" +msgstr "透视视图" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "固件更新程序" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "支持从 Cura 旧版本导入配置文件。" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "旧版 Cura 配置文件读取器" + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "扩展程序(允许用户创建脚本进行后期处理)" + +msgctxt "name" +msgid "Post Processing" +msgstr "后期处理" + msgctxt "description" msgid "Logs certain events so that they can be used by the crash reporter" msgstr "记录某些事件,以使其可供崩溃报告器使用" @@ -5244,12 +5445,20 @@ msgid "Sentry Logger" msgstr "Sentry 日志记录" msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "提供对写入 MakerBot 格式包的支持。" msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot 打印文件编写器" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "提供了对导入 Cura 配置文件的支持。" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 配置文件读取器" msgctxt "description" msgid "Provides support for reading Ultimaker Format Packages." @@ -5260,12 +5469,20 @@ msgid "UFP Reader" msgstr "UFP 读取器" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供对写入 3MF 文件的支持。" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" +msgid "Image Reader" +msgstr "图像读取器" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 后端" msgctxt "description" msgid "Writes g-code to a compressed archive." @@ -5275,89 +5492,106 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "压缩 G-code 写入器" +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 车床操作" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 中提供预览阶段。" + +msgctxt "name" +msgid "Preview Stage" +msgstr "预览阶段" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "提供了对导出 Cura 配置文件的支持。" -msgctxt "@info:title" -msgid "Error" -msgstr "错误" +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 配置文件写入器" -msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "支持读取 X3D 文件。" -msgctxt "@title:tab" -msgid "Settings" -msgstr "设置" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 读取器" -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "文件 {0} 已存在。您确定要覆盖它吗?" +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供对读取模型文件的支持。" -msgctxt "@action:button" -msgid "Learn more" -msgstr "详细了解" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 阅读器" -msgctxt "@title:tab" -msgid "General" -msgstr "基本" +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 Cura 中提供监视阶段。" -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "您确认要删除 %1?该操作无法恢复!" +msgctxt "name" +msgid "Monitor Stage" +msgstr "监视阶段" -msgctxt "@label" -msgid "Type" -msgstr "类型" +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "提供对每个模型的单独设置。" -msgctxt "@info:title" -msgid "Saving" -msgstr "正在保存" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "单一模型设置工具" -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "文件已存在" +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "所有支持的文件类型 ({0})" +msgctxt "name" +msgid "Material Profiles" +msgstr "材料配置文件" -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "无法保存到 {0}{1}" +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "支持写为 3MF 和 UCP 文件。" -msgctxt "@action:button" -msgid "OK" -msgstr "确定" +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 写入器" -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "为写入 Ultimaker 格式包提供支持。" -msgctxt "@title:tab" -msgid "Printers" -msgstr "打印机" +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 写入器" -msgctxt "@info:title" -msgid "File Saved" -msgstr "文件已保存" +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "将 G-code 写入至文件。" -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "确认删除" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "所有文件 (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "平衡" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "平衡配置旨在在生产力、表面质量、机械性能和尺寸精度之間取得平衡。" +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 写入器" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 84f2f59e15..0b372bfc90 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,13 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" msgctxt "extruder_nr label" msgid "Extruder" @@ -28,13 +37,13 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "用于打印的挤出机,在多挤出机情况下适用。" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" @@ -52,6 +61,14 @@ msgctxt "machine_extruder_end_code description" msgid "End g-code to execute when switching away from this extruder." msgstr "在切离此挤出机时执行的结束 G-code。" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "推料器结束 G 代码持续时间" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "当切走该推料器时,执行最后的 G 代码所需的时间。" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "挤出机终点绝对位置" @@ -72,6 +89,18 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "挤出机终点位置 Y 坐标" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "关闭挤出机时的终止位置的 Y 坐标。" @@ -84,6 +113,26 @@ msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "在切换到此挤出机时执行的开始 G-code。" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "推料器开始 G 代码持续时间" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "当切换到该推料器时,执行起始 G 代码所需的时间。" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "挤出机起点绝对位置" @@ -92,6 +141,22 @@ msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" +msgctxt "material description" +msgid "Material" +msgstr "材料" + +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" + msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "挤出机起始位置 X 坐标" @@ -104,18 +169,18 @@ msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "挤出机起始位置 Y 坐标" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "打开挤压机时的起始位置 Y 坐标。" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "喷嘴 X 轴偏移量" @@ -131,123 +196,3 @@ msgstr "喷嘴 Y 轴偏移量" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "喷嘴 Y 轴坐标偏移。" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -msgctxt "material label" -msgid "Material" -msgstr "材料" - -msgctxt "material description" -msgid "Material" -msgstr "材料" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" - -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "群組外牆" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "在相同層中,不同島嶼的外牆按順序印製。啟用時,減少流量變化的量,因為牆壁一次印刷一種類型;停用時,減少島嶼之間的行程數,因為相同島嶼的牆壁被分組。" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "頂部最外牆流" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "頂部最外牆流量補償" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "頂部內壁流" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "所有牆線,除了最外面的牆線,頂部牆線的流動補償" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "頂部外牆速度" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "頂部最外牆印製時的速度" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "頂部內壁速度" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "頂部內壁印製時的速度" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "頂部外牆加速度" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "頂部最外牆的印刷加速度" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "頂部內壁加速度" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "頂部內壁印製時的加速度" - -msgctxt "jerk_wall_0_roofing label" -msgid "頂部內壁突變" -msgstr "Saccade de la paroi externe de la surface supérieure" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "印刷頂部內壁的最大瞬時速度變化。" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "頂部最外牆突變" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "印刷頂部最外牆的最大瞬時速度變化。" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index bc387cc497..80d5169847 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + msgctxt "machine_name label" msgid "Machine Type" msgstr "机器类型" @@ -34,7 +42,8 @@ msgstr "开始 G-code" msgctxt "machine_start_gcode description" msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "在开始时执行的 G-code 命令 - 以 \n 分行。" +msgstr "在开始时执行的 G-code 命令 - 以 " +" 分行。" msgctxt "machine_end_gcode label" msgid "End G-code" @@ -42,7 +51,8 @@ msgstr "结束 G-code" msgctxt "machine_end_gcode description" msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "在结束前执行的 G-code 命令 - 以 \n 分行。" +msgstr "在结束前执行的 G-code 命令 - 以 " +" 分行。" msgctxt "material_guid label" msgid "Material GUID" @@ -52,6 +62,30 @@ msgctxt "material_guid description" msgid "GUID of the material. This is set automatically." msgstr "材料 GUID,此项为自动设置。" +msgctxt "material_type label" +msgid "Material Type" +msgstr "材料种类" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "所用的材料类型。" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "材料品牌" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "所用材料的品牌。" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" + msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "等待打印平台加热" @@ -360,6 +394,22 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "挤出机偏移量" @@ -368,6 +418,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" msgstr "绝对挤出机主要位置" @@ -1558,7 +1616,8 @@ msgstr "额外填充壁计数" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。\n在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" +msgstr "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。" +"在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" @@ -1696,6 +1755,14 @@ msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "material description" +msgid "Material" +msgstr "材料" + msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "默认打印温度" @@ -1725,8 +1792,8 @@ msgid "Printing Temperature Initial Layer" msgstr "打印温度起始层" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" +msgid "The temperature used for printing the first layer." +msgstr "打印第一层时使用的温度。" msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1968,6 +2035,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "顶面外壁挤出量" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "在顶面最外墙线挤出量补偿。" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "顶面内壁挤出量" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "除最外层墙线之外,在所有墙线的顶面墙线挤出量补偿。" + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "顶部/底部流量" @@ -2136,6 +2219,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "顶面外壁速度" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "顶面最外壁打印完成后的速度" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "顶面内壁速度" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "顶面内壁打印完成后的速度" + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "顶部表面皮肤速度" @@ -2320,6 +2419,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "打印所有内壁的加速度。" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "顶面外壁加速度" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "顶面最外壁打印完成后的加速度" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "顶面内壁加速度" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "顶面内壁打印完成后的加速度" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "顶部表面皮肤加速度" @@ -2480,6 +2595,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "打印所有内壁时的最大瞬时速度变化。" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "顶面外壁冲击力" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "打印顶面最外壁时的最大瞬时速度变化。" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "顶面内壁冲击力" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "打印顶面内壁时的最大瞬时速度变化。" + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "顶部表面皮肤抖动速度" @@ -3257,8 +3388,8 @@ msgid "Support Z Distance" msgstr "支撑 Z 距离" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。" msgctxt "support_top_distance label" msgid "Support Top Distance" @@ -3273,8 +3404,8 @@ msgid "Support Bottom Distance" msgstr "支撑底部距离" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "从打印品到支撑底部的距离。" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。" msgctxt "support_xy_distance label" msgid "Support X/Y Distance" @@ -3428,14 +3559,6 @@ msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撑接触面分辨率" - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" - msgctxt "support_interface_density label" msgid "Support Interface Density" msgstr "支撑接触面密度" @@ -3724,6 +3847,14 @@ msgctxt "support_meshes_present description" msgid "There are support meshes present in the scene. This setting is controlled by Cura." msgstr "场景中存在支撑网格。此设置受 Cura 控制。" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" + msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "启用装填光点" @@ -3732,6 +3863,22 @@ msgctxt "prime_blob_enable description" msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + msgctxt "adhesion_type label" msgid "Build Plate Adhesion Type" msgstr "打印平台附着类型" @@ -3818,7 +3965,8 @@ msgstr "Skirt 距离" msgctxt "skirt_gap description" msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "skirt 和打印第一层之间的水平距离。\n这是最小距离。多个 skirt 走线将从此距离向外延伸。" +msgstr "skirt 和打印第一层之间的水平距离。" +"这是最小距离。多个 skirt 走线将从此距离向外延伸。" msgctxt "skirt_brim_minimal_length label" msgid "Skirt/Brim Minimum Length" @@ -3860,21 +4008,33 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "仅在外部打印 Brim" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "裙边位置" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "在模型的外侧,内侧或两侧同时打印裙边。根据模型的不同,这有助于减少随后需要去除的裙边量,同时保证所需的底座附着力。" + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "仅外侧" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "仅内侧" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "各处" msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "修剪内部对象避免留白" +msgid "Brim Avoid Margin" +msgstr "裙边邻避边距" msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "模型周围的裙边可能会触及您不希望接触到的其他模型。此操作会将与其他无裙边的模型小于特定距离的裙边打印区域删除。" msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3892,6 +4052,62 @@ msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "筏层基段额外边距" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层基段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "筏层中段额外边距" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层中段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "筏层顶段额外边距" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层顶段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "移除 Raft 内侧角" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "移除筏层基段内角" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "移除筏层基段的内角,会使筏层凸起" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "移除中段内角" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "移除筏层中段的内角,会使筏层凸起。" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "移除筏层顶段内角" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "移除筏层顶段的内角,会使筏层凸起。" + msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Raft 平滑度" @@ -3900,6 +4116,33 @@ msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "平滑筏层基段" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层基段轮廓线内角的倒圆角大小。" +"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "平滑筏层中段" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层中段轮廓线内角的倒圆角大小。" +"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "平滑筏层顶段" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层顶段轮廓线内角的倒圆角大小。" +"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" + msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "Raft 空隙" @@ -3913,40 +4156,32 @@ msgid "Initial Layer Z Overlap" msgstr "起始层 Z 重叠" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "使模型打印的第一层和第二层在 Z 方向上重叠,以补偿气隙中损失的丝材。模型的第一层上方的所有部分都将向下移动此量。\n您可能会发现,进行此设置后,有时第二层会打印在初始层下方。这是正常的" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Raft 顶层" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Raft 基础厚度" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Raft 顶层厚度" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Raft 基础走线宽度" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "顶部 Raft 层的层厚度。" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Raft 顶线宽度" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Raft 基础走线间距" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Raft 顶部间距" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" @@ -3980,29 +4215,77 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Raft 基础厚度" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Raft 顶层" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Raft 基础走线宽度" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Raft 顶层厚度" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "顶部 Raft 层的层厚度。" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Raft 基础走线间距" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Raft 顶线宽度" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Raft 顶部间距" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "单调递增的筏顶面顺序" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "按顺序打印筏层顶段表面线,使它们始终与单个方向上的相邻线重叠。这会花费稍微长一点的打印时间,但会使表面看起来更加一致,在模型底面上可以看出。" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "筏层壁圈数" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "围绕筏层的线性图案打印的轮廓圈数。" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Raft 底板壁数" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "筏层中段壁圈数" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "围绕筏层中段的线性图案打印的轮廓圈数。" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "筏层顶段壁圈数" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "围绕筏层顶段的线性图案打印的轮廓圈数。" msgctxt "raft_speed label" msgid "Raft Print Speed" @@ -4012,13 +4295,13 @@ msgctxt "raft_speed description" msgid "The speed at which the raft is printed." msgstr "打印 Raft 的速度。" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Raft 顶部打印速度" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Raft 基础打印速度" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" @@ -4028,13 +4311,13 @@ msgctxt "raft_interface_speed description" msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Raft 基础打印速度" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Raft 顶部打印速度" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -4044,13 +4327,13 @@ msgctxt "raft_acceleration description" msgid "The acceleration with which the raft is printed." msgstr "打印 Raft 的加速度。" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Raft 顶部打印加速度" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Raft 基础打印加速度" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的加速度。" +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "打印基础 Raft 层的加速度。" msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -4060,13 +4343,13 @@ msgctxt "raft_interface_acceleration description" msgid "The acceleration with which the middle raft layer is printed." msgstr "打印中间 Raft 层的加速度。" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Raft 基础打印加速度" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Raft 顶部打印加速度" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "打印基础 Raft 层的加速度。" +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的加速度。" msgctxt "raft_jerk label" msgid "Raft Print Jerk" @@ -4076,13 +4359,13 @@ msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." msgstr "打印 Raft 的抖动速度。" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Raft 顶部打印抖动速度" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Raft 基础打印抖动速度" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的抖动速度。" +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "打印基础 Raft 层的抖动速度。" msgctxt "raft_interface_jerk label" msgid "Raft Middle Print Jerk" @@ -4092,13 +4375,13 @@ msgctxt "raft_interface_jerk description" msgid "The jerk with which the middle raft layer is printed." msgstr "打印中间 Raft 层的抖动速度。" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Raft 基础打印抖动速度" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Raft 顶部打印抖动速度" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "打印基础 Raft 层的抖动速度。" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的抖动速度。" msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" @@ -4108,13 +4391,13 @@ msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." msgstr "Raft 的风扇速度。" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Raft 顶部风扇速度" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Raft 基础风扇速度" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "顶部 Raft 层的风扇速度。" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "基础 Raft 层的风扇速度。" msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -4124,13 +4407,13 @@ msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." msgstr "中间 Raft 层的风扇速度。" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Raft 基础风扇速度" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Raft 顶部风扇速度" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "基础 Raft 层的风扇速度。" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "顶部 Raft 层的风扇速度。" msgctxt "dual label" msgid "Dual Extrusion" @@ -4148,6 +4431,22 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "主塔类型" + +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "如何空心主塔:
    • 通常的:创建一个桶状结构,在其中填充辅助材料
    • 交错的: 创建一个尽可能稀疏的主塔。这将节省时间和丝材,但只有当所用材料粘附在每个部件上时才有可能
    " + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "通常的" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "交错的" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "装填塔尺寸" @@ -4164,6 +4463,14 @@ msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "为了清除足够的材料,装填塔每层的最小体积。" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "主塔最大桥接距离" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "可以跨空打印分支的最大长度。" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "装填塔 X 位置" @@ -4189,12 +4496,44 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "装填塔 Brim" +msgid "Prime Tower Base" +msgstr "底漆塔座" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "底漆塔座尺寸" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "底漆塔座高度" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Prime Tower 底座斜度" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "底漆塔筏线间距" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。" msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -4420,6 +4759,14 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "排队打印" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手动设置打印顺序" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "允许您对对象列表进行排序以手动设置打印顺序。列表中的第一个对象将首先打印。" + msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "填充网格" @@ -5228,21 +5575,77 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "移除 Raft 内侧角" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外墙编组" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同一层不同组件的外墙依次进行打印。当启用此功能时,由于每次只打印一种类型的外壁,挤出量变化的数量受到限制;当禁用时,由于同一组件内的外壁被分组,组件之间的行进次数会减少。" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Raft 底板壁数" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "打印过程报告" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "报告超出设定阈值的事件" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "启用打印过程报告" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "启用打印过程报告以设置可能的故障检测的阈值。" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "挤出量警告" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "检测的挤出量警告限制。" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "挤出量限制" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "检测的挤出量异常限制。" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "打印温度警告" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "检测的打印温度警告限制。" + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "打印温度限制" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "检测的打印温度异常限制。" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "打印体积温度警告" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "检测的打印体积温度警告限制。" + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "打印体积温度限制" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "检测的打印体积温度异常限制。" msgctxt "command_line_settings label" msgid "Command Line Settings" @@ -5292,118 +5695,6 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "渐变流量已启用" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "渐变流量最大加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "渐变流量的最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初始层最大流量加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第一层渐变流量的最小速度" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "渐变流量离散步长" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "渐变流量每一步的持续时间" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "重置流量持续时间" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" - msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" - -msgctxt "material description" -msgid "Material" -msgstr "材料" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" - -msgctxt "material label" -msgid "Material" -msgstr "材料" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..fa2197b3a1 --- /dev/null +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -0,0 +1,53 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "启用渐变流量" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "启用渐变流量变化。启用之后,流量将会逐渐增加/减少到目标流量。这对于带有波登管的打印机非常有用,因为当挤出机电机启动/停止时,流量并不会立即改变。" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "渐变流量最大加速度" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "渐变流量变化的最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初始层最大流量加速" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第一层渐变流量变化的最小速度" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "渐变流量离散化步长" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "渐变流量变化中每个步骤的持续时间" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "重置流量持续时间" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "对于任何长于此值的移动,材料流量将被重置为路径的目标流量" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 7f5cb3bb56..241a1f1f5d 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -121,6 +121,10 @@ msgctxt "@title:menu menubar:file" msgid "&Save Project..." msgstr "儲存專案...(&S)" +msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" +msgid "&Save Universal Cura Project..." +msgstr "" + msgctxt "@title:menu menubar:toplevel" msgid "&Settings" msgstr "設定(&S)" @@ -264,6 +268,10 @@ msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" msgstr[0] "印表機無法使用雲端連接" +msgctxt "@text" +msgid "A highly dense and strong part but at a slower print time. Great for functional parts." +msgstr "" + msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." msgstr "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" @@ -498,10 +506,18 @@ msgctxt "@label" msgid "Anonymous" msgstr "匿名" +msgctxt "@option:radio" +msgid "Anonymous crash reports" +msgstr "" + msgctxt "@label Description for application component" msgid "Application framework" msgstr "應用框架" +msgctxt "@title:column" +msgid "Applies on" +msgstr "" + msgctxt "@label" msgid "Apply Extruder offsets to GCode" msgstr "將擠出機偏移設定至Gcode" @@ -560,6 +576,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "排列所選模型" + msgctxt "@label:button" msgid "Ask a question" msgstr "提出問題" @@ -624,6 +644,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "備份" +msgctxt "@label" +msgid "Balanced" +msgstr "" + msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" @@ -680,6 +704,10 @@ msgctxt "@info:status" msgid "Calculated" msgstr "已計算" +msgctxt "@window:text" +msgid "Camera navigation:" +msgstr "" + msgctxt "@window:text" msgid "Camera rendering:" msgstr "攝影機渲染:" @@ -1008,6 +1036,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1252,10 +1284,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "預設值" -msgctxt "@label" -msgid "Default" -msgstr "預設值" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: " @@ -1404,6 +1432,10 @@ msgctxt "@label" msgid "Draft" msgstr "草稿" +msgctxt "@action:inmenu menubar:edit" +msgid "Drop All Models to buildplate" +msgstr "" + msgctxt "@action:button" msgid "Duplicate" msgstr "複製" @@ -1530,6 +1562,10 @@ msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." msgstr "匯出選擇..." +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Export Universal Cura Project" +msgstr "" + msgctxt "@button" msgid "Export material archive" msgstr "輸出線材設定存檔" @@ -1563,10 +1599,23 @@ msgctxt "@title:label" msgid "Extruder End G-code" msgstr "擠出機結束 G-code" +msgctxt "@label" +msgid "Extruder End G-code duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "擠出機起始 G-code" +msgctxt "@label" +msgid "Extruder Start G-code duration" +msgstr "" + +#, python-brace-format +msgctxt "@label" +msgid "Extruder {0}" +msgstr "" + msgctxt "@info:title" msgid "Extruder(s) Disabled" msgstr "擠出機已停用" @@ -1633,6 +1682,11 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "線材資料儲存失敗" +#, python-brace-format +msgctxt "@info:status" +msgid "Failed writing to specific cloud printer: {0} not in remote clusters." +msgstr "" + msgctxt "@label:category menu label" msgid "Favorites" msgstr "常用" @@ -1774,6 +1828,9 @@ msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" msgstr "強制分層檢視相容模式(需要重新啟動)" +msgid "FreeCAD trackpad" +msgstr "" + msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "前視圖" @@ -1862,6 +1919,10 @@ msgctxt "@action" msgid "Get started" msgstr "開始" +msgctxt "@label" +msgid "Global" +msgstr "" + msgctxt "@title:tab" msgid "Global Settings" msgstr "全局設定" @@ -1911,6 +1972,10 @@ msgctxt "@label" msgid "Hide all connected printers" msgstr "" +msgctxt "@action:button" +msgid "Hide settings" +msgstr "" + msgctxt "@action:menu" msgid "Hide this setting" msgstr "隱藏此設定" @@ -1987,6 +2052,10 @@ msgctxt "@button" msgid "In order to use the package you will need to restart Cura" msgstr "" +msgctxt "@option:radio" +msgid "Include UltiMaker account name" +msgstr "" + msgctxt "@label" msgid "Infill" msgstr "填充" @@ -2344,6 +2413,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理線材..." @@ -2673,6 +2758,10 @@ msgctxt "@message" msgid "No results found with current filter" msgstr "" +msgctxt "@label" +msgid "No specific value has been set" +msgstr "" + msgctxt "@label" msgid "No time estimation available" msgstr "沒有時間估計" @@ -2774,6 +2863,10 @@ msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一次只能載入一個 G-code 檔案。{0} 已跳過匯入" +msgctxt "@message" +msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." +msgstr "" + msgctxt "@action:button" msgid "Open" msgstr "開啟" @@ -2802,10 +2895,22 @@ msgctxt "@info:title" msgid "Open Project File" msgstr "開啟專案檔案" +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@title:window Don't translate 'Universal Cura Project'" +msgid "Open Universal Cura Project (UCP) file" +msgstr "" + msgctxt "@action:label" msgid "Open With" msgstr "" +msgctxt "@action:button" +msgid "Open as UCP" +msgstr "" + msgctxt "@action:button" msgid "Open as project" msgstr "作為專案開啟" @@ -3021,6 +3126,10 @@ msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" msgstr "請登入以取得 UltiMaker Cura Enterprise 驗証的外掛及線材" +msgctxt "@info:tooltip" +msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." +msgstr "" + msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." msgstr "再列印前請先同步線材資料." @@ -3117,6 +3226,14 @@ msgctxt "@action:button" msgid "Print" msgstr "列印" +msgctxt "@action:inmenu menubar:edit" +msgid "Print After" +msgstr "列印後" + +msgctxt "@action:inmenu menubar:edit" +msgid "Print Before" +msgstr "列印前" + msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3421,8 +3538,12 @@ msgid "Provides support for reading model files." msgstr "提供讀取模型檔案的支援。" msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供寫入 3MF 檔案的支援。" +msgid "Provides support for writing 3MF and UCP files." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." @@ -3662,7 +3783,11 @@ msgid "Save Cura project" msgstr "" msgctxt "@option" -msgid "Save Cura project and print file" +msgid "Save Cura project and .makerbot print file" +msgstr "" + +msgctxt "@option" +msgid "Save Cura project and .ufp print file" msgstr "" msgctxt "@title:window" @@ -3689,6 +3814,10 @@ msgctxt "@button" msgid "Save new profile" msgstr "" +msgctxt "@action:button" +msgid "Save project" +msgstr "" + msgctxt "@text" msgid "Save the .umm file on a USB stick." msgstr "將 .umm 的文件儲存至USB." @@ -3792,6 +3921,18 @@ msgctxt "@action:button" msgid "Send crash report to UltiMaker" msgstr "傳送錯誤報告給 UltiMaker" +msgctxt "@info:tooltip" +msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." +msgstr "" + +msgctxt "@info:tooltip" +msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." +msgstr "" + +msgctxt "@option:check" +msgid "Send engine crash reports" +msgstr "" + msgctxt "@action:button" msgid "Send report" msgstr "送出報告" @@ -3844,6 +3985,10 @@ msgctxt "@title:tab" msgid "Settings" msgstr "設定" +msgctxt "@action:label" +msgid "Settings Loaded from UCP file" +msgstr "" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "設定已被更改為符合目前擠出機:" @@ -3912,6 +4057,10 @@ msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?" +msgctxt "@info:tooltip" +msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "需要再載入新模型前清空視窗內之列印平台嗎?" @@ -3968,6 +4117,10 @@ msgctxt "@action:button" msgid "Show detailed crash report" msgstr "顯示詳細的錯誤報告" +msgctxt "@action:button" +msgid "Show settings" +msgstr "" + msgctxt "@option:check" msgid "Show summary dialog when saving project" msgstr "儲存專案時顯示摘要對話框" @@ -4044,10 +4197,6 @@ msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失敗" -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." - msgctxt "@label:PrintjobStatus" msgid "Slicing..." msgstr "正在切片..." @@ -4056,6 +4205,10 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" +msgctxt "@label" +msgid "Solid" +msgstr "" + msgctxt "name" msgid "Solid View" msgstr "實體檢視" @@ -4181,10 +4334,26 @@ msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功匯入列印參數 {0}。" +msgctxt "@action:label" +msgid "Suggested Material settings" +msgstr "" + +msgctxt "@action:label" +msgid "Suggested Profile settings" +msgstr "" + msgctxt "@action:title" msgid "Summary - Cura Project" msgstr "摘要 - Cura 專案" +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Open Universal Cura Project (UCP)" +msgstr "" + +msgctxt "@action:title Don't translate 'Universal Cura Project'" +msgid "Summary - Universal Cura Project" +msgstr "" + msgctxt "@label" msgid "Support" msgstr "支撐" @@ -4306,6 +4475,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "備份超過了最大檔案大小。" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "距離列印平台的底板高度,以毫米為單位。" @@ -4551,6 +4724,10 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "" + msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" msgstr "這是一個 Cura 專案檔案。你想將其作為一個專案開啟還是從中匯入模型?" @@ -4638,6 +4815,14 @@ msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "此設定是透過解決擠出機設定值衝突獲得:" +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." +msgstr "" + +msgctxt "@tooltip Don't translate 'Universal Cura Project'" +msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." +msgstr "" + msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" msgstr "" @@ -4867,6 +5052,11 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "無法開始新的登入程序。檢查是否有其他登入仍在進行中。" +#, python-brace-format +msgctxt "@info:error" +msgid "Unable to write to file: {0}" +msgstr "" + msgctxt "@label:status" msgid "Unavailable" msgstr "無法使用" @@ -4887,6 +5077,14 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + +msgctxt "@action:description Don't translate 'Universal Cura Project'" +msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." +msgstr "" + msgctxt "@label Description for development tool" msgid "Universal build system configuration" msgstr "" @@ -5076,6 +5274,10 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "上傳自訂韌體" @@ -5108,6 +5310,10 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "" +msgctxt "@title:column" +msgid "Value" +msgstr "" + msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" msgstr "升級版本 2.1 到 2.2" @@ -5212,6 +5418,10 @@ msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5289,6 +5499,10 @@ msgctxt "@label" msgid "What printer would you like to setup?" msgstr "" +msgctxt "@info:tooltip" +msgid "What type of camera navigation should be used?" +msgstr "" + msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" msgstr "使用哪種類型的攝影機渲染?" @@ -5499,6 +5713,10 @@ msgctxt "@label" msgid "mm" msgstr "mm" +msgctxt "@label" +msgid "s" +msgstr "" + msgctxt "@info:status" msgid "today" msgstr "今天" @@ -5894,10 +6112,6 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Arrange All Models To All Build Plates" #~ msgstr "將所有模型排列到所有列印平台上" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "排列所選模型" - #~ msgctxt "@action:button" #~ msgid "Arrange current build plate" #~ msgstr "擺放到目前的列印平台" @@ -6350,6 +6564,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Decline" #~ msgstr "拒絕" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "預設值" + #~ msgctxt "@title:column" #~ msgid "Default" #~ msgstr "預設" @@ -7588,6 +7806,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)" #~ msgstr "提供 UltiMaker 印表機專屬功能(如平台調平精靈、選擇升級等)" +#~ msgctxt "description" +#~ msgid "Provides support for writing 3MF files." +#~ msgstr "提供寫入 3MF 檔案的支援。" + #~ msgctxt "description" #~ msgid "Provides support for writing X3G files" #~ msgstr "提供寫入 X3G 檔案的支援" @@ -7874,6 +8096,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Slice current printjob" #~ msgstr "對目前列印工作進行切片" +#~ msgctxt "@message" +#~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +#~ msgstr "未知問題使切片失敗. 請考慮在我們的問題追蹤器內回報問題." + #~ msgctxt "@label:PrintjobStatus" #~ msgid "Slicing unavailable" #~ msgstr "切片無法使用" diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index cec44fd115..82d1aa5724 100644 --- a/resources/i18n/zh_TW/fdmextruder.def.json.po +++ b/resources/i18n/zh_TW/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-06-08 16:32+0000\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -45,6 +45,10 @@ msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "擠出機結束 Gcode" +msgctxt "machine_extruder_end_code_duration label" +msgid "Extruder End G-Code Duration" +msgstr "" + msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "擠出機終點絕對位置" @@ -77,6 +81,10 @@ msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "擠出機起始 G-code" +msgctxt "machine_extruder_start_code_duration label" +msgid "Extruder Start G-Code Duration" +msgstr "" + msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "擠出機起點絕對位置" @@ -161,6 +169,14 @@ msgctxt "machine_extruder_cooling_fan_number description" msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." msgstr "與此擠出機關聯的列印冷卻風扇的數量。只有當每個擠出機的列印冷卻風扇數量不同時,才需更改此值為正確數量,否則保持預設值 0 即可。" +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "" + msgctxt "machine_extruder_end_pos_x description" msgid "The x-coordinate of the ending position when turning the extruder off." msgstr "關閉擠出機時的終止位置的 X 座標。" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index bff087e082..347b24aacc 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2024-03-12 15:10+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -17,6 +17,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "" + +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "" + msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "與模型邊緣保持的距離。一直燙平至網格的邊緣可能導致列印品出現鋸齒狀邊緣。" @@ -61,10 +69,6 @@ msgctxt "machine_disallowed_areas description" msgid "A list of polygons with areas the print head is not allowed to enter." msgstr "禁止列印頭進入區域的多邊形清單。" -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "" - msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " msgstr "" @@ -157,6 +161,10 @@ msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "影響列印解析度的所有設定。這些設定會對品質(和列印時間)產生顯著影響" +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "" + msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" msgstr "交錯額外牆壁" @@ -405,21 +413,21 @@ msgctxt "adhesion_type option brim" msgid "Brim" msgstr "邊緣" +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "" + msgctxt "brim_gap label" msgid "Brim Distance" msgstr "邊緣間距" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "" - msgctxt "brim_line_count label" msgid "Brim Line Count" msgstr "邊緣線條數量" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "僅在外部列印邊緣" +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "" msgctxt "brim_replaces_support label" msgid "Brim Replaces Support" @@ -461,6 +469,18 @@ msgctxt "build_volume_temperature label" msgid "Build Volume Temperature" msgstr "列印空間溫度" +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "" + msgctxt "center_object label" msgid "Center Object" msgstr "物件置中" @@ -746,16 +766,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "支撐結構線條之間的距離。該設定通過支撐密度計算。" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "從列印品到支撐底部的距離。" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "從支撐頂部到列印品的距離。" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "支撐結構距離模型頂部/底部的距離。這一個小的差距使得它更容易被去除,這個數值會被無條件進位到層高的倍數。" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -869,6 +889,10 @@ msgctxt "cool_fan_enabled label" msgid "Enable Print Cooling" msgstr "開啟列印冷卻" +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "" + msgctxt "retraction_enable label" msgid "Enable Retraction" msgstr "啟用回抽" @@ -901,6 +925,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "啟用外部擦拭牆。這將在模型周圍創建一個外殼,如果與第一個噴頭處於相同的高度,則可能會擦拭第二個噴頭。" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "" + msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." msgstr "" @@ -933,6 +961,10 @@ msgctxt "brim_replaces_support description" msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." msgstr "強制在模型周圍列印邊緣,即使該空間已被支撐佔用。在第一層的部份區域會以邊綠取代支撐。" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "" + msgctxt "support_type option everywhere" msgid "Everywhere" msgstr "每個地方" @@ -1037,6 +1069,10 @@ msgctxt "speed_equalize_flow_width_factor label" msgid "Flow Equalization Ratio" msgstr "" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "" + msgctxt "flow_rate_extrusion_offset_factor label" msgid "Flow Rate Compensation Factor" msgstr "流速補償係數" @@ -1049,6 +1085,10 @@ msgctxt "material_flow_temp_graph label" msgid "Flow Temperature Graph" msgstr "流量溫度圖" +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "" + msgctxt "material_flow_layer_0 description" msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." msgstr "第一層的流量補償:在起始層上擠出的線材量會乘以此值。" @@ -1097,6 +1137,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "外壁線條的流量補償。" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "頂部/底部線條的流量補償。" @@ -1285,6 +1333,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "螺旋形" @@ -1429,10 +1481,22 @@ msgctxt "wall_transition_filter_distance description" msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." msgstr "" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." msgstr "如果啟用了木筏,在模型周圍也會增加額外邊緣。增大這個邊緣將產生更強的木筏,不過也會使用更多的線材,並減少印表機的可列印面積。" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "" + msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." msgstr "忽略因網格內部重疊產生的幾何空間,並將多個重疊體積作為一個列印。這可能會導致意外的內部孔洞消失。" @@ -1661,6 +1725,10 @@ msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." msgstr "內嵌是套用在外壁路徑上的功能。如果外壁小於噴頭,並且在內壁之後列印,則此偏移量將使噴頭孔內移與內壁重疊而不是行走在模型外部。" +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "" + msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" @@ -1673,6 +1741,10 @@ msgctxt "support_interface_priority option interface_area_overwrite_support_area msgid "Interface preferred" msgstr "" +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "" + msgctxt "interlocking_beam_layer_count label" msgid "Interlocking Beam Layer Count" msgstr "" @@ -1813,6 +1885,30 @@ msgctxt "support_tree_limit_branch_reach description" msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" msgstr "" +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "" + msgctxt "cutting_mesh description" msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." msgstr "將此網格的體積限制在其他網格內。你可以使用它來制作採用不同的設定以及完全不同的擠出機的網格列印的特定區域。" @@ -1910,8 +2006,10 @@ msgid "Make the extruder prime position absolute rather than relative to the las msgstr "擠出機的控制參數使用絕對位置,而不是與前次位置的相對位移。" msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" msgctxt "meshfix description" msgid "Make the meshes more suited for 3D printing." @@ -1937,10 +2035,18 @@ msgctxt "material label" msgid "Material" msgstr "線材" +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "" + msgctxt "material_guid label" msgid "Material GUID" msgstr "線材 GUID" +msgctxt "material_type label" +msgid "Material Type" +msgstr "" + msgctxt "max_extrusion_before_wipe label" msgid "Material Volume Between Wipes" msgstr "擦拭線材體積" @@ -2217,6 +2323,10 @@ msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "單一化燙平順序" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "" + msgctxt "roofing_monotonic label" msgid "Monotonic Top Surface Order" msgstr "頂層表面單一化列印順序" @@ -2257,6 +2367,10 @@ msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "正常" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "" + msgctxt "support_structure option normal" msgid "Normal" msgstr "正常" @@ -2389,10 +2503,6 @@ msgctxt "ironing_only_highest_layer description" msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." msgstr "只在網格的最後一層進行燙平處理。 如果下層不需要光滑的表面,可啟用此選項以節省時間。" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" - msgctxt "ooze_shield_angle label" msgid "Ooze Shield Angle" msgstr "擦拭牆角度" @@ -2449,6 +2559,14 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "外壁擦拭噴頭長度" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "" + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2502,8 +2620,20 @@ msgid "Prime Tower Acceleration" msgstr "換料塔加速度" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "換料塔邊緣" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2517,10 +2647,18 @@ msgctxt "prime_tower_line_width label" msgid "Prime Tower Line Width" msgstr "換料塔線寬" +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "換料塔最小體積" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "換料塔尺寸" @@ -2529,6 +2667,10 @@ msgctxt "speed_prime_tower label" msgid "Prime Tower Speed" msgstr "換料塔速度" +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "換料塔 X 位置" @@ -2537,10 +2679,6 @@ msgctxt "prime_tower_position_y label" msgid "Prime Tower Y Position" msgstr "換料塔 Y 位置" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "即使模型沒有開啟邊緣功能,裝填塔也列印邊緣以提供額外的附著力。目前無法與「木筏」的平台附著類型同時使用。" - msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "列印加速度" @@ -2549,6 +2687,10 @@ msgctxt "jerk_print label" msgid "Print Jerk" msgstr "列印加加速度" +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "" + msgctxt "print_sequence label" msgid "Print Sequence" msgstr "列印順序" @@ -2561,6 +2703,10 @@ msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" msgstr "列印薄壁" +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "" + msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "在列印件旁邊印一個塔,用在每次切換噴頭後填充線材。" @@ -2581,6 +2727,10 @@ msgctxt "fill_outline_gaps description" msgid "Print pieces of the model which are horizontally thinner than the nozzle size." msgstr "列印在水平面上比噴頭尺寸更薄的模型部件。" +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "" + msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." msgstr "列印橋樑表層區域第二層時的速度。" @@ -2589,6 +2739,14 @@ msgctxt "bridge_skin_speed_3 description" msgid "Print speed to use when printing the third bridge skin layer." msgstr "列印橋樑表層區域第三層時的速度。" +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "" + msgctxt "infill_before_walls description" msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." msgstr "列印牆壁前先列印填充。先列印牆壁可以產生更精確的牆壁,但突出部分列印品質會較差。先列印填充會產生更牢固的牆壁,但有時候填充的列印樣式會透過表面顯現出來。" @@ -2633,6 +2791,10 @@ msgctxt "raft_airgap label" msgid "Raft Air Gap" msgstr "木筏間隙" +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "" + msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" msgstr "" @@ -2661,6 +2823,10 @@ msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" msgstr "木筏底部列印速度" +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "" + msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" msgstr "木筏底部厚度" @@ -2677,6 +2843,10 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "木筏風扇轉速" +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "" + msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" msgstr "" @@ -2705,6 +2875,10 @@ msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" msgstr "木筏中層列印速度" +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "" + msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" msgstr "木筏中層間距" @@ -2713,6 +2887,10 @@ msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" msgstr "木筏中層厚度" +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "" + msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" msgstr "木筏列印加速度" @@ -2729,6 +2907,10 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "木筏平滑處理" +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "" + msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" msgstr "" @@ -2761,10 +2943,22 @@ msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" msgstr "木筏頂部列印速度" +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "" + msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" msgstr "木筏頂部間距" +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "" + msgctxt "z_seam_type option random" msgid "Random" msgstr "隨機" @@ -2817,10 +3011,22 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "刪除網格交集部分" +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "" + msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" msgstr "" +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "" + msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." msgstr "刪除多個網格彼此重疊的區域。如果合併的雙重線材對象彼此重疊,則可以使用此選項。" @@ -2829,6 +3035,18 @@ msgctxt "remove_empty_first_layers description" msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." msgstr "如果可列印的第一層下方有空的層,將其移除。假如「切片公差」設定為「排除」或「中間」,關閉此設定可能會導致空的第一層。" +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "" + msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." msgstr "" @@ -2849,6 +3067,10 @@ msgctxt "skin_outline_count description" msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." msgstr "用多個同心線代替頂部/底部列印樣式的最外面部分。使用一條或兩條線可以改善列印在填充上的頂板。" +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -2921,6 +3143,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "接縫偏好設定" +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動設置列印順序" + msgctxt "draft_shield_height_limitation description" msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." msgstr "設定防風罩的高度。選擇防風罩與模型同高或只列印到限制的高度。" @@ -3321,10 +3547,6 @@ msgctxt "support_interface_priority label" msgid "Support Interface Priority" msgstr "" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撐介面解析度" - msgctxt "speed_support_interface label" msgid "Support Interface Speed" msgstr "支撐介面速度" @@ -3609,6 +3831,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "列印木筏頂部的加速度。" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "列印牆壁的加速度。" @@ -3669,6 +3899,10 @@ msgctxt "magic_fuzzy_skin_point_dist description" msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." msgstr "在每個線條部分改變的隨機點之間的平均距離。注意,多邊形的原始點會被捨棄,因此高平滑度導致解析度降低。該值必須大於絨毛皮膚厚度的一半。" +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "" + msgctxt "machine_acceleration description" msgid "The default acceleration of print head movement." msgstr "列印頭移動的預設加速度。" @@ -3749,6 +3983,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "木筏頂部線條之間的距離。間距應等於線寬,以便打造堅固表面。" +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3945,6 +4183,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "起始層高(以毫米為單位)。起始層越厚,與列印平台的附著越輕鬆。" +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "模型上的支撐階梯狀底部的階梯高度。較低的值會使支撐更難於移除,但過高的值可能導致不穩定的支撐結構。設為零可以關閉階梯狀行為。" @@ -4017,6 +4259,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "回抽移動期間回抽的線材長度。" +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "印表機上列印平台的材質。" @@ -4109,6 +4355,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "列印支撐結構時的最大瞬時速度變化。" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "列印牆壁時的最大瞬時速度變化。" @@ -4125,6 +4379,10 @@ msgctxt "jerk_travel description" msgid "The maximum instantaneous velocity change with which travel moves are made." msgstr "進行空跑時的最大瞬時速度變化。" +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "" + msgctxt "machine_max_feedrate_x description" msgid "The maximum speed for the motor of the X-direction." msgstr "X 軸方向馬達的最大速度。" @@ -4237,6 +4495,18 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "" + msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "支撐表層邊緣的額外填充的層數。" @@ -4493,6 +4763,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "列印木筏頂部的速度。這些層應以稍慢的速度列印,以便噴頭緩慢地整平臨近的表面線條。" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "Z 抬升時 Z 軸垂直移動的速度。這通常低於列印速度,因為列印平台或機器的吊車較難移動。" @@ -4554,8 +4832,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "列印結束前開始冷卻的溫度。" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "用於列印第一層的溫度。設為 0 即關閉對起始層的特别處理。" +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4617,6 +4895,10 @@ msgctxt "machine_gcode_flavor description" msgid "The type of g-code to be generated." msgstr "產生 G-code 的類型。" +msgctxt "material_type description" +msgid "The type of material used." +msgstr "" + msgctxt "coasting_volume description" msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." msgstr "不進行滑行時,會滲出的體積。該值一般應接近噴頭直徑的立方。" @@ -4633,6 +4915,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "換料塔的寬度。" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "換料塔的寬度。" @@ -4661,10 +4947,22 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "這可以控制擠出機在開始列印橋樑牆壁前滑行的距離。在橋樑開始之前進行滑行可以減小噴頭中的壓力並可能產生更平坦的橋樑。" +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "此設定控制木筏輪廓凹角導圓角的量。向內的轉角會被導為圓弧,其半徑等於此設定值。此設定同時可以移除木筏輪廓中半徑小於此設定值的圓孔。" +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件線材上重複回抽,從而導致線材變扁並引起磨損問題。" @@ -4701,6 +4999,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "頂部表層移除寬度" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "頂部表層加速度" @@ -4993,10 +5323,6 @@ msgctxt "wall_overhang_angle description" msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。被支撐的突出牆壁也將不不會被當作突出牆壁。" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" - msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." msgstr "" @@ -5389,1107 +5715,26 @@ msgctxt "travel description" msgid "travel" msgstr "空跑" +#~ msgctxt "user_defined_print_order_enabled description" +#~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first." +#~ msgstr "允許手動設置物件列表以設定列印順序。列表中的第一個物件將首先被列印。" +#~ msgctxt "brim_outside_only label" +#~ msgid "Brim Only on Outside" +#~ msgstr "僅在外部列印邊緣" -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. +#~ msgctxt "layer_0_z_overlap description" +#~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +#~ msgstr "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" +#~ msgctxt "brim_outside_only description" +#~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +#~ msgstr "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +#~ msgctxt "support_interface_skip_height label" +#~ msgid "Support Interface Resolution" +#~ msgstr "支撐介面解析度" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - -#~ msgctxt "machine_head_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps excluded)." -#~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。" - -#~ msgctxt "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "列印頭 2D 輪廓圖(包含風扇蓋)。" - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "一個用於調整每次進行義大利麵式填充時擠出總量的修正項。" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "適應性層高門檻值" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "適應層高最大變化量" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "適應層高門檻值" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "適應層高變化幅度" - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "調整義大利麵式填充的密度。注意,填充密度僅控制填充列印樣式的線條間距,而不是義大利麵式填充的擠出量。" - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "切換擠出機後,在列印的第一個物件上擦拭噴頭上的滲出耗材。這會在滲出耗材對列印品表面品質造成最小損害的位置進行緩慢安全的擦拭動作。" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "交錯立體十字形氣囊" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "交替表層旋轉" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "交替列印頂部/底部層的方向。通常它們只進行對角線列印。此設定添加純 X 和純 Y 方向。" - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "在換料塔上進行擦拭時要清洗的耗材量。清洗可用於補償在噴頭不活動期間由於滲出而損失的耗材。" - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "套用到每一層孔洞的偏移量。正值增加孔洞的大小,負值減小孔洞的大小。" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "將擠出機偏移量套用到座標軸系統。" - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "自動溫度" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "最大橋樑牆壁突出" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "模型置中" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "根據每一層的平均流速自動更改每層的溫度。" - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "圓型換料塔" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "梳理模式讓噴頭空跑時保持在已列印的區域內。這導致較長的空跑距離但減少回抽的需求。如果關閉梳理模式,噴頭將會回抽耗材,直線移動到下一點。梳理模式可以避開頂部/底部表層,也可以只用在內部填充。注意「內部填充」選項的行為與舊版 Cura 的「表層以外區域」選項是完全相同的。" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "梳理可在空跑時讓噴頭保持在已列印區域內。這會使空跑距離稍微延長,但可減少回抽需求。如果關閉梳理,則耗材將回抽,且噴頭沿著直線移動到下一個點。也可以通過僅在填充內進行梳理避免梳理頂部/底部表層區域。" - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "補償" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "補償內壁重疊" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "補償外壁重疊" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "補償牆壁重疊" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "彌補牆壁重疊部分的流量。" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "列印內壁時如果該位置已經有牆壁存在,所進行的的流量補償。" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "列印外壁時如果該位置已經有牆壁存在,所進行的的流量補償。" - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "立體同心圓" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "同心 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "立體同心圓" - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "將頂部/底部表層路徑相鄰的位置連接。同心模式時開啟此設定,可以大大地減少空跑時間。但因連接可能發生在填充途中,所以此功能可能降低頂部表層的品質。" - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "控制接縫是否受模型輪廓上的角影響。'無'表示轉角不影響接縫位置。'隱藏接縫'表示使用盡可能使用凹角做為接縫位置。'暴露接縫'表示盡可能使用凸角做為接縫位置。'隱藏或暴露接縫'則同時使用凹角和凸角做為接縫位置。" - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "冷卻速度" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "在上行線條的頂部創建一個小紐結,使連續的水平層有更好的機會與其連接。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "向下移動後的延遲時間。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "向上移動後的延遲時間,以便上行線條硬化。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "兩個水平部分之間的延遲時間。引入這樣的延遲可以在連接點處與先前的層產生更好的附著,而太長的延遲會引起下垂。僅套用於鐵絲網列印。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "決定當多個網格重疊時此網格的優先等級。在多個網格重疊的區域中,將採用處理等級值最小的網格設定。高順位的填充網格將覆蓋掉低順位和普通順位網格的填充設定。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "決定當空間重疊時此網格的優先等級。在多個網格重疊的區域中,處理等級值較低的網格將優先處理。高順位的填充網格將修改低順位和普通順位網格的填充。" - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "確定哪個填充網格在另一個填充網格的填充內。順序較高的填充網格將修改順序較低的填充網格以及普通網格的填充。" - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "不允許區域" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "噴頭和水平下行線之間的距離。較大的間隙會讓斜下行線角度較平緩,進而使第二層的上行連接較少。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "以半速擠出的上行移動的距離。\n" -#~ "這會與之前的層產生更好的附著,而不會將這些層中的線材過度加熱。僅套用於鐵絲網列印。" - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "支撐結構在 X/Y 方向與突出部分的間距。 " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "線材在向上擠出後倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "向上擠出線材與斜向下擠出一起拖動的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "結束 G-code" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "線材末端沖洗長度" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "線材末端沖洗速度" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "均衡線材流量" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "全部填充" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "將底部表層延伸到填充中" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "將表層延伸到填充中" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "將頂部表層延伸到填充中" - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "延伸平面頂部和/或底部表層的區域。預設情况下,表層會在環繞填充的壁線下方停止,但如果填充密度較低,則可能導致出現孔洞。該設定將表層延展到壁線以外,因此下一層的填充會座落在表層上。" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "延伸底部表層區域(下方有空氣的區域),讓它們由上下的填充層錨定。" - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "延伸頂部表層區域(上方有空氣的區域),讓它們支撐上方的填充。" - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "實驗性功能: 讓底部的支撐區域小於突出部分的支撐區域。" - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "耗材停放距離" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "填充牆壁之間空隙" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "填充牆壁之間空隙。" - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "濾除微小間隙" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "濾除微小間隙以減少模型外側的斑點 。" - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "第一層速度" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "向上或向下時的流量補償。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "列印平面線條時的流量補償。僅套用於鐵絲網列印。" - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "流量補償:擠出的耗材量乘以此值。" - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "流量補償:擠出的線材量乘以此值。僅套用於鐵絲網列印。" - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "流量補償因子" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "流量補償的最大擠出偏移量" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "耗材 GUID,此項為自動設定。 " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "吊車高度" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "在結束前執行的 G-code 命令 - 以 \n" -#~ " 分行。" - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "在開始後執行的 G-code 命令 - 以 \n" -#~ " 分行。" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "G-code 類型" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "產生帶有樹枝樹狀支撐結構支撐你的模型。這可能可以減少耗材的使用和列印的時間,但會大大的增加切片時間。" - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "再一次經過頂部表面,但不擠出耗材。這是為了進一步融化頂部的塑料,打造更平滑的表面。" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "加熱速度" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "加熱區長度" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "挖空模型" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "樹支與模型接觸的點與點之間的間隔距離。較小的距離會讓支撐和模型有較多的接觸點,會有較佳的突出部分但支撐也較難移除。" - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。" - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "如何使用傾斜的外表切片。可以使用層高的中間與外表相交產生的截面(中間)。也可以使用該層高完全不超出模型體積的區域(排除),或是該層高的模型投影區域(包含)。「排除」保留最多的細節,「包含」有最符合的外形,而「中間」花最少的運算時間。" - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "當此功能開啟時,對於低於最小流量門檻值的牆壁,使用回抽取代而非梳理模式空跑。" - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "忽略 Z 方向的小間隙" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "每一層都在相同點附近開始列印,這樣在列印新的一層時,就不需要列印前一層結束時的那一小段區域。在突出部分和小零件有良好的效果,但會增加列印時間。" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "填充網格順序" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "紐結" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "限制支撐回抽" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "機器頭多邊形" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "機器頭和風扇多邊形" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "機器頭多邊形" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "將換料塔印成圓型。" - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "耗材站內部值" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "最大進料速率" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "流量均衡的最大速度" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "最大 Z 軸速度" - -#~ msgctxt "max_extrusion_before_wipe description" -#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated." -#~ msgstr "在另一次擦拭噴頭前可擠出的最大耗材量。" - -#~ msgctxt "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "調整列印速度以便均衡流量時的最大列印速度。" - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "網格位置 x" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "網格位置 y" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "網格位置 z" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "最小直徑" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "最小牆壁流量" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "牆壁允許的最小流量百分比。當在已列印的牆壁旁列印牆壁時,「補償牆壁重疊」會減少線材流量。小於此設定流量的牆壁會被空跑取代。當啟用此設定時,必需啟用「補償牆壁重疊」並設定先列印外壁再列印內壁。" - -#~ msgctxt "minimum_interface_area description" -#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "支撐介面區域的最小面積大小。面積小於此值的區域將不會產生支撐介面。" - -#~ msgctxt "minimum_bottom_area description" -#~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "支撐底板區域的最小面積大小。面積小於此值的區域將不會產生支撐底板。" - -#~ msgctxt "minimum_roof_area description" -#~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated." -#~ msgstr "支撐頂板區域的最小面積大小。面積小於此值的區域將不會產生支撐頂板。" - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "小區域中支撐塔的 X/Y 軸方向最小直徑。" - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "表層除外" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "一般情况下,Cura 會嘗試縫合網格中的小孔,並移除有大孔的部分層。啟用此選項將保留那些無法縫合的部分。當其他所有方法都無法產生正確的 GCode 時,該選項應該被用作最後手段。" - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "都不填充" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "噴頭角度" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "噴頭長度" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "已啟用擠出機的數量" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "擠出機偏移量" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure." -#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" - -#~ msgctxt "limit_support_retractions description" -#~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure." -#~ msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "在立體十字形樣式中,只在半數樣式閉合的中央十字交叉處使用氣囊,並在高度上交錯排列。" - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "最佳化牆壁列印順序以減少回抽的次數和空跑的距離。啟用此功能對大多數是有益的,但有的可能會花更多的時間。所以請比較有無最佳化的估算時間進行確認。" - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "支撐填充樣式的方向。 支撐填充樣式的旋轉方向是在水平面上旋轉。" - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "先印外壁後印內壁" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "噴頭外徑" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "水平線條部分所覆蓋的斜下行線條的百分比。這可以防止上行線最頂端點下垂。僅套用於鐵絲網列印。" - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "回抽優先" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "換料塔清洗量" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "換料塔厚度" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "只列印一個具有稀疏網狀結構的外表面,在“稀疏的空中”列印。這是在给定的 Z 軸間隔內,通過上行線和下行斜線連接,橫向列印模型的輪廓來實現的。" - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "經常列印填充,使得耗材在模型內部混亂地捲曲。這會縮短列印時間,但行為會難以預測。" - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "以較快的速度列印比正常線條更細的線條,使每秒擠出的線材量保持相同。模型中較薄的部分可能需要以低於設定中所提供寬度的線寬來列印線條。該設定控制這些線條的速度變化。" - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "啟用時以從外向內的順序列印牆壁。當使用高黏度塑料如 ABS 時,這有助於提高 X 和 Y 的尺寸精度;但是,它可能會降低表面列印品質,尤其是在突出部分。" - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "木筏底部間距" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "移除所有填充並讓模型內部可以進行支撐。" - -#~ msgctxt "support_tree_collision_resolution description" -#~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically." -#~ msgstr "計算避免碰撞模型的計算精度。設定較低的值可產生較精確的樹狀支撐,這樣的支撐問題較少但會嚴重的增加切片所需的時間。" - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "回抽" - -#~ msgctxt "retraction_enable description" -#~ msgid "Retract the filament when the nozzle is moving over a non-printed area. " -#~ msgstr "當噴頭移動到非列印區域上方時回抽耗材。 " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "擦拭回抽裝填速度" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "外殼" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "收縮率" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "收縮率百分比。" - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "跳過部分鋸齒狀連接" - -#~ msgctxt "small_feature_speed_factor_0 description" -#~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "細部模式第一層將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#~ msgctxt "small_feature_speed_factor description" -#~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy." -#~ msgstr "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "平滑螺旋輪廓可以減少 Z 縫的出現(Z 縫應在列印品上幾乎看不到,但在分層檢視中仍然可見)。請注意,平滑操作將傾向於模糊精細的表面細節。" - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "義大利麵式填充流量" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "義大利麵式填充" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "義大利麵式填充額外體積" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "義大利麵式填充 - 最大填充高度" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "義大利麵式逐步填充" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "義大利麵式填充內嵌" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "義大利麵式填充 - 最大填充角度" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "擠出線材時噴頭移動的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "列印下行斜線的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "在“稀疏的空中”向上列印線條的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "列印第一層的速度,該層是唯一接觸列印平台的層。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "列印模型水平輪廓的速度。僅套用於鐵絲網列印。" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "起始 G-code" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "在相同的位置列印新層" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "用於確定兩個連續層在每個連接點連接的策略。回抽可讓上行線條在正確的位置硬化,但可能導致線材磨損。紐結可以在上行線條的尾端進行打結以便提高與其連接的幾率,並讓線條冷卻;但這會需要較慢的列印速度。另一種策略是補償上行線條頂部的下垂;然而,線條不會總是如預期的那樣下降。" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "正四面體" - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "填充和牆壁之間的重疊量。稍微重疊可讓各個牆壁與填充牢固連接。" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "表層和牆壁之間的重疊量,以線寬百分比表示。稍微重疊可讓各個牆壁與表層牢固連接。這是表層平均線寬和最內壁的百分比。" - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "表層與牆壁的重疊量佔表層線寬的百分比。輕微的重疊能讓填充與表層牢固地連接。這是表層線寬和最內層牆壁線寬平均的百分比。" - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "表層和牆壁之間的重疊量。稍微重疊可讓各個牆壁與表層牢固連接。" - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone." -#~ msgstr "回抽量:設為 0,不進行任何回抽。該值通常應與加熱區的長度相同。" - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "樹枝的角度。使用較小的角度讓樹枝較垂直且較平穩。使用較大的角度則可以支撐較大的範圍。" - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "閃電形填充層與其附著物間的生成角度." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "設定閃電形填充層間垂直堆疊角度,調整樹狀堆疊的平滑度." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "在從頂板輪廓向內進行連接時所覆蓋的距離。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "向內線的末端在返回至頂板外部輪廓時被拖行的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "列印時,在“稀疏的空中”列印的水平頂板線條倒塌的距離。將對此距離進行補償。僅套用於鐵絲網列印。" - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "擠出機在第一層從正常高度偏移了此設定量。它可以是正值(上升)或負值(下降)。某些耗材類型在擠出機稍微上升情況下,會更好地附著在列印平台上。" - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "兩個水平部分之間上行線和下行斜線的高度。這决定網狀結構的整體密度。僅套用於鐵絲網列印。" - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "填充樣式在 X 軸方向偏移此距離。" - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "填充樣式在 Y 軸方向偏移此距離。" - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "允許與層高基礎值相差的最大值(以毫米為單位)。" - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "使用一般設定列印牆壁線條允許最大的突出寬度。以牆壁線寬的百分比表示。當間隙比此寬時,使用橋樑設定列印牆壁線條。否則就使用一般設定列印牆壁線條。數值越低,越有可能使用橋樑設定列印牆壁線條。" - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "允許延後填充義大利麵式填充的最大角度,取列印物內側與 Z 軸的夾角。降低此值會導致模型中的更多有角度部位在各層填充。" - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "「最高解析度」設定在降低解析度時允許的最大偏差。如果增加此值,列印精度會較差但 G-code 會較小。" - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "支撐結構間在 X/Y 方向的最大距離。當分離結構之間的距離小於此值時,這些結構將合併為一個。" - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "最大補償距離(以毫米為單位)。" - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "可以從頂部組合和填充的內部空間的最大高度。" - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "列印平台移動的最大速度。將該值設為零會使列印為最大 Z 速度採用韌體預設值。" - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "模具外側和模型外側之間的最小距離。" - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "流量倍率 -> 移動距離。" - -#~ msgctxt "support_tree_wall_count description" -#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "樹狀支撐樹枝牆壁的圈數。較厚的牆壁需要花較長的時間列印,但較不易倒下。" - -#~ msgctxt "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "列印義大利麵式填充開始位置與牆壁的偏移量。" - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "填充耗材的樣式。線條和鋸齒狀填充輪流在每一層交換方向,以降低耗材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "選擇填充線材的樣式。直線和鋸齒狀填充輪流在每一層交換方向,以降低線材成本。網格、三角形、三-六邊形、立方體、八面體、四分立方體、十字形和同心的列印樣式在每層完整列印。螺旋形、立方體、四分立方體和八面體填充隨每層變化,以在各個方向提供更均衡的强度分布。" - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "列印填充樣式;直線型與鋸齒狀填充於層間交替方向,減少線材消耗;網格型、三角形、三角-六邊形混和、立方體、八面體、四分立方體、十字形、同心於每層間皆完整列印;螺旋形、立方體、四分立方體及八面體填充於每層一間進行改變,確保每個方向都有相同的強度分配,閃電形填充透過只支撐物件內層頂部來最小化填充,因此填充百分比只對於下一層才有效果." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "起始層的速度。建議採用較低的值以便改善與列印平台的附著。" - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "設定列印空間的溫度。如果設定為 0,就不會加熱列印空間。" - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "用於第一層加熱列印平台的溫度。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "設定列印平台的溫度。如果設定為 0,就不會加熱列印平台。" - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "用於加熱列印平台的溫度。如果列印平台溫度為 0,則熱床將不會為此次列印加熱。" - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "空心換料塔的厚度。如果厚度大於換料塔最小體積的一半,則將形成一個密集的換料塔。" - -#~ msgctxt "support_tree_wall_thickness description" -#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily." -#~ msgstr "樹狀支撐樹枝的牆壁厚度。較厚的牆壁需要花較長的時間列印,但較不易倒下。" - -#~ msgctxt "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "需要產生的 G-code 類型。" - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "決定是否使用較小層高的門檻值。此值會與一層中最陡坡度的 tan 值做比較。" - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "在成為頂板的孔的外圍花費的時間。較長的時間可確保更好的連接。僅套用於鐵絲網列印。" - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "如果模型的頂部和/或底部表面的角度大於此設定,則不要延伸其頂部/底部表層。這會避免延伸作用在模型表面有接近垂直的斜面時所形成的狹窄表層區域。0° 的角為水平,90° 的角為垂直。" - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "樹狀支撐" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "樹狀支撐樹枝角度" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "樹狀支撐樹枝直徑" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "樹狀支撐樹枝外徑角度" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "樹狀支撐樹枝距離" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "樹狀支撐碰撞計算精度" - -#~ msgctxt "support_tree_wall_count label" -#~ msgid "Tree Support Wall Line Count" -#~ msgstr "樹狀支撐牆壁線條數量" - -#~ msgctxt "support_tree_wall_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "樹狀支撐牆厚" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "使用適應層高" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "擠出控制使用相對模式而非絕對模式。使用相對的 E 步數使 G-code 在後處理上更為簡便。然而並非所有印表機都支援此模式,而且和絕對的 E 步數相比,它可能在沉積耗材的使用量上產生輕微的偏差。無論此設定為何,在輸出任何 G-code 腳本之前,擠出模式將始終設定為絕對模式。" - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "WP 底部延遲" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "WP 底部列印速度" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "WP 連接流量" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "WP 連接高度" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "WP 下降列印速度" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "WP 拖行" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "WP 輕鬆上行" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "WP 倒塌" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "WP 平面延遲" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "WP 平面流量" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "WP 列印流量" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "WP 水平列印速度" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "WP 紐結大小" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "WP 噴頭間隙" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "WP 頂板拖行" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "WP 頂板倒塌" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "WP 頂板嵌入距離" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "WP 頂板外部延遲" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "WP 速度" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "WP 拉直下行線條" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "WP 使用策略" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "WP 頂部延遲" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "WP 上升列印速度" - -#~ msgctxt "wall_overhang_angle description" -#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging." -#~ msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。" - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "當此值不為 0 時,在梳理模式空跑超過此距離時,會啟用回抽。" - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "當此值不為 0 時,Z 軸偏移量在經過此層數時逐漸降為 0。此值設為 0 表示所有列印層的 Z 軸偏移量保持為固定值。" - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "當模型具有微小的垂直間隙時,為了在這些間隙上產生頂部、底部等表面,會花費大約5%的額外的計算時間。勾選這個項目可以節省時間,但是間隙會消失,若要保留這些間隙,不要勾選這個項目。" - -#~ msgctxt "wipe_hop_enable description" -#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -#~ msgstr "每當回抽完成時,列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" - -#~ msgctxt "clean_between_layers description" -#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -#~ msgstr "是否在層與層之間加入擦拭噴頭的 G-code。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制擦拭時的回抽量。" - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -#~ msgstr "選擇一次列印一層中的所有模型或等待一個模型完成後再轉到下一個模型。排隊模式只有在所有模型以一種整個列印頭可以在各個模型之間移動的方式分隔開,且所有模型都低於噴頭和 X / Y 軸之間距離的情况下可用。" - -#~ msgctxt "print_sequence description" -#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. " -#~ msgstr "選擇一次列印一層中的所有模型或等待一個模型完成後再轉到下一個模型。只有在 a) 只使用一個擠出機而且 b) 所有模型以整個列印頭可以在各個模型之間移動的方式分隔開,且所有模型都低於噴頭和 X / Y 軸之間距離的情况下,排隊列印才可使用。 " - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "是否逐步列印義大利麵式填充或在列印結束時一次擠出所有填充耗材。" - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "切換後擦拭噴頭" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "擦拭回抽後 Z 抬升" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "鐵絲網列印(以下簡稱 WP)" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Z 軸偏移漸減層數" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "鋸齒狀連接跳過計數" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "黑魔法" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "修復" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "實驗性!" +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..2529ed73e4 --- /dev/null +++ b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" diff --git a/resources/images/MakerbotMethod.png b/resources/images/MakerbotMethod.png new file mode 100644 index 0000000000..4406a6175b Binary files /dev/null and b/resources/images/MakerbotMethod.png differ diff --git a/resources/images/MakerbotSketch.png b/resources/images/MakerbotSketch.png new file mode 100644 index 0000000000..e615dc6ed1 Binary files /dev/null and b/resources/images/MakerbotSketch.png differ diff --git a/resources/images/UltimakerFactor4Backplate.png b/resources/images/UltimakerFactor4Backplate.png new file mode 100644 index 0000000000..c22d887766 Binary files /dev/null and b/resources/images/UltimakerFactor4Backplate.png differ diff --git a/resources/images/ankermake_m5c.png b/resources/images/ankermake_m5c.png new file mode 100644 index 0000000000..603a0abfb9 Binary files /dev/null and b/resources/images/ankermake_m5c.png differ diff --git a/resources/images/cura-share.png b/resources/images/cura-share.png new file mode 100644 index 0000000000..60de85194c Binary files /dev/null and b/resources/images/cura-share.png differ diff --git a/resources/images/dagoma_sigma_pro.png b/resources/images/dagoma_sigma_pro.png new file mode 100644 index 0000000000..26481a3505 Binary files /dev/null and b/resources/images/dagoma_sigma_pro.png differ diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index d6629aeb1c..fc0708041a 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 9dcbbf4f5f..4d0e53deea 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 4f12d0c670..919e49294e 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 54a76b8192..30e95a48d9 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index 173d99acbc..b2351a8a80 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index a5d3f342ea..a52ff65580 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index d30d8f67b8..07d62c2915 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index cdce34e01a..4f0fbf74a2 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 00363e3dba..39becd3cd0 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index cf4c937e75..3c4df2d111 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index 9cf8e2a47b..f3eba51e98 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index a7c6e21278..4e3ca82795 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index c1f4f49b6d..20dcc02fdf 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index ac2faaf589..c7470b8c25 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index ac2faaf589..c7470b8c25 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index 40cbc081d0..130b5d2a27 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index 6b76d5b201..8ced281396 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index af6eafd5fd..514973ccef 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index ae9ae28b76..c9366697a8 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a668f69265..a7fef7976d 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index a077cd2ced..56b2e6ff8d 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index fde9381855..57e8f521da 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 496c28b43e..382b2e8af3 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index 05a545e4dc..5cb4664213 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index b07338020d..f1035271b0 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index d9271d1082..2f92c3ccef 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index 0e014c6e04..ffb00077c7 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 94df4366f9..4afa610eb1 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index 54bdb53002..bceefcec97 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index c163d8f630..b3dd716c0f 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index 31f6a9a62d..3d95d1b19d 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index 4cc2f49777..e87daed110 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = intent variant = FBE 0.40mm diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg index e82884e3fb..4df23b911b 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg index bdbeef66b4..1a5695f490 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg index 9d8758f605..4bb742ae0e 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg index de7bdc5730..349dbc5919 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg index d89f8510ec..21241f2bb4 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg index c1fd50eab3..578fba233f 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg index 9dc2c50697..f00efd1355 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg new file mode 100644 index 0000000000..081446828b --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_neptune_4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = Elegoo_layer_005 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +skin_line_width = 0.4 +speed_print = 150 +top_bottom_thickness = 1.05 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..60f6c9965a --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_neptune_4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_pla +quality_type = Elegoo_layer_015 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +speed_infill = =speed_print +speed_print = 150 +speed_topbottom = =speed_print * 2 / 3 +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print +speed_wall = =speed_print * 2 / 3 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg new file mode 100644 index 0000000000..86b1b505f7 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_neptune_4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = Elegoo_layer_015 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +skin_line_width = 0.4 +speed_print = 150 +top_bottom_thickness = 1.05 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg new file mode 100644 index 0000000000..c2bbab0d5d --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_neptune_4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_pla +quality_type = Elegoo_layer_010 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +speed_infill = =speed_print +speed_print = 150 +speed_topbottom = =speed_print * 2 / 3 +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print +speed_wall = =speed_print * 2 / 3 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..48452cc240 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = elegoo_neptune_4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = Elegoo_layer_010 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +skin_line_width = 0.4 +speed_print = 150 +top_bottom_thickness = 1 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..19f3592c4a --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_neptune_4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_pla +quality_type = Elegoo_layer_020 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +speed_infill = =speed_print +speed_print = 150 +speed_topbottom = =speed_print * 2 / 3 +speed_travel = =min(speed_print * 4 / 3, 250) if speed_print <= 250 else speed_print +speed_wall = =speed_print * 2 / 3 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg new file mode 100644 index 0000000000..195edc6b3c --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_neptune_4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_pla +quality_type = Elegoo_layer_020 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_sparse_density = 15 +speed_infill = =speed_print +speed_print = 300 +speed_topbottom = =speed_print +speed_travel = 400 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = 0.6 + diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg new file mode 100644 index 0000000000..a16e673072 --- /dev/null +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = elegoo_neptune_4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_pla +quality_type = Elegoo_layer_030 +setting_version = 23 +type = intent +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_sparse_density = 10 +speed_infill = =speed_print +speed_print = 300 +speed_topbottom = =speed_print +speed_travel = 400 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = 0.6 + diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 402359dd84..8b63f5bc66 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 3f334fdf2d..6904c4079f 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index 8c8a23e85e..d0487bfe7a 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index 9405c8b295..8ebe0c0c46 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index c23a110e09..19c41a3388 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index 61db293004..c66d224a1f 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 5c8d8dcab5..02acaefd55 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index 7e957a6401..4997ebbad3 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 58b46b6a59..5c4b525c15 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index 236f1dee61..a5070b131b 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 0b3060b0ac..8620632bed 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index 13ac4647ff..a8ceaaf218 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index 6a19492587..f769152ea4 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index 0aaf41e0be..c26d8e408e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 481634d7ba..85e6aaec5e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 2e418c390f..9f916946d7 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index 068d775fc4..ed8001b296 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 9f91179da0..4dc720417a 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index 1773ad0189..9f2b7ab77d 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index ee4a315c20..b05a492e39 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index dfe92c8089..4bd00759a3 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index ead3f9f64d..cf65345e34 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index 7455753997..f46cb21d87 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index b5789fe9e9..ecf1b624c0 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = VO 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..b2d41796b3 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_petg +quality_type = normal +setting_version = 23 +type = intent +variant = AA 0.25 + +[values] +acceleration_wall = 1000 +bottom_thickness = 0.6 +jerk_wall = 20 +speed_print = 50 +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..f568a9271a --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = normal +setting_version = 23 +type = intent +variant = AA 0.25 + +[values] +acceleration_wall = 1000 +bottom_thickness = 0.6 +jerk_wall = 20 +speed_print = 50 +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..1df3c3fc40 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_tough_pla +quality_type = normal +setting_version = 23 +type = intent +variant = AA 0.25 + +[values] +acceleration_wall = 1000 +bottom_thickness = 0.6 +jerk_wall = 20 +speed_print = 50 +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..f362a6bb1b --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_abs +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..ae936e8e4a --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe_plus +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..c841c9be5c --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..a2b530b691 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_nylon +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 100.9 +support_enable = True +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..4d19a1d9ac --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..4c7f43f235 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pc +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..873a03fd2c --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_petg +quality_type = normal +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_wall = 1000 +bottom_thickness = 0.6 +jerk_wall = 20 +speed_print = 50 +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..26a2635187 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petg +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg new file mode 100644 index 0000000000..a328c13970 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_petg +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 100 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg new file mode 100644 index 0000000000..547fcdea7f --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_petg +quality_type = verydraft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 100 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..de1399a910 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = normal +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_wall = 1000 +bottom_thickness = 0.6 +jerk_wall = 20 +speed_print = 50 +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..95ff756d29 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pla +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +build_volume_temperature = 35 +jerk_print = 30 +material_bed_temperature = =default_material_bed_temperature + 5 +material_print_temperature = =default_material_print_temperature + 15 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg new file mode 100644 index 0000000000..b0e88ae260 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +material_print_temperature = =default_material_print_temperature + 30 +speed_print = 100 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg new file mode 100644 index 0000000000..ffd5d39cc2 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_pla +quality_type = verydraft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 100 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg new file mode 100644 index 0000000000..04efc12fb6 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_tough_pla +quality_type = normal +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_wall = 1000 +bottom_thickness = 0.6 +jerk_wall = 20 +speed_print = 50 +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..9dd0190dbc --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_tough_pla +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +build_volume_temperature = 35 +jerk_print = 30 +material_bed_temperature = =default_material_bed_temperature + 5 +material_print_temperature = =default_material_print_temperature + 15 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg new file mode 100644 index 0000000000..2aa9458458 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +is_experimental = True +material = generic_tough_pla +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +material_print_temperature = =default_material_print_temperature + 30 +speed_print = 100 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg new file mode 100644 index 0000000000..ad3f5c5657 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_tough_pla +quality_type = verydraft +setting_version = 23 +type = intent +variant = AA 0.4 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 100 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..c564c85c88 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_nylon +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 100.9 +support_enable = True +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..848304f64c --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +jerk_print = 30 +speed_print = 30 +speed_wall = =speed_print +speed_wall_0 = =speed_wall + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..3700b586ab --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petg +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +jerk_print = 30 +speed_print = 30 +speed_wall = =speed_print +speed_wall_0 = =speed_wall + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg new file mode 100644 index 0000000000..05532266d7 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_petg +quality_type = superdraft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 50 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = =wall_line_width_0 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..0ef5547a5a --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pla +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +jerk_print = 30 +speed_print = 30 +speed_wall = =speed_print +speed_wall_0 = =speed_wall + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg new file mode 100644 index 0000000000..0e5d4b3d26 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_pla +quality_type = superdraft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 50 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = =wall_line_width_0 + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..324faf3f1d --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_tough_pla +quality_type = draft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +jerk_print = 30 +speed_print = 30 +speed_wall = =speed_print +speed_wall_0 = =speed_wall + diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg new file mode 100644 index 0000000000..cdd1dff22e --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_factor4 +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = generic_tough_pla +quality_type = superdraft +setting_version = 23 +type = intent +variant = AA 0.8 + +[values] +acceleration_print = 3000 +bottom_thickness = 0.6 +jerk_print = 30 +speed_print = 50 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +top_thickness = 0.8 +wall_thickness = =wall_line_width_0 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..217ff0c6f6 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cffpa +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..02189eec47 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_gffpa +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..6664e7fe74 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 100.9 +speed_print = 20 +support_enable = True +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..156f50241c --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..439e6eb3f1 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cffpa +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..161ff37ea1 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_gffpa +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..3975917d3e --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 100.9 +speed_print = 25 +support_enable = True +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..4ad4e42fb1 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 23 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..daa39ff833 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_cffpps +quality_type = draft +setting_version = 23 +type = intent +variant = HT 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 100.9 +speed_print = 25 +support_enable = True +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..615ef5e91c --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cffpps +quality_type = draft +setting_version = 23 +type = intent +variant = HT 0.6 + +[values] +jerk_print = 30 +speed_print = 70 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..a9f35bdb61 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 23 +type = intent +variant = HT 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 100.9 +speed_print = 25 +support_enable = True +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..c4f6ec3fe0 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 23 +type = intent +variant = HT 0.6 + +[values] +jerk_print = 30 +speed_print = 70 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..697aa8842e --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..8826f7e7d4 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..aa04992d12 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..364eea5b52 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..c426a99499 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1XA + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..7d1ead2caf --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1XA + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..3d8106d85e --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..ec07c4b98a --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..9020c8fdcc --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..3a5e5e4491 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..5714a796b3 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..603a19fa4f --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..e5ad1ab92c --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..4594c37f50 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1C + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..470f5547c1 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1XA + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..5dd7ea0eb8 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = intent +variant = 1XA + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..21e54ab083 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..f1058ebdeb --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..3655b78cf1 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..0ae080086d --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = intent +variant = LABS + +[values] +infill_pattern = lines +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index 850ab8b213..d12071d3a5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg index c1ade2391e..4ae011e692 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index 95644621ad..8207705b54 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg index c9e5804306..546d21fe4b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index 57df5208d6..09e842f502 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index c50a4c6331..e73af4a87e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index 4e53829056..b190eefc57 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 9513f56dfe..54e2e78789 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg index 66196a4215..6956d40573 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 295e4681f5..599affff45 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index 5c95a8bb6b..e8cee0ef32 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index 0143426335..87bf4f93d2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index 5deb69e5ab..7120a9d6b7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index 8c1a60b5b4..83ad4584de 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index 50011a3188..b32d9fc149 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 8e1cbd003b..9ea1d2b08f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index f3cd83f0fb..9304974dc9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index 853db370a7..deaf4b77e6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 6f3a0aa8d9..07bf6028e9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index ed0c770c33..4714e516c7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index 3aec759ed8..ff6c3cc6b5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg index 7db781a22e..a521f1f019 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index f5bcf98ba2..634efc45e5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index ce4c717c54..fb349859b0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index 01d2128f62..a75aa86806 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 83f9024c20..4113a9fe8e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index ead230ea21..0be0b9d398 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index bad763a0ae..faa1084c27 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 7ce3655a1f..377b5d122c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index e359e6d1ab..66b03e33b6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index fb88768bb6..8fa7230f62 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index e06ccbc3c6..162e979a83 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index d0d5bf5c2e..c14e2d0c24 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 967051c6b6..de545bf35e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index c08c5e37c1..7e4a2be518 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index e5c66d6b88..d7a8e06998 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index d51b925c24..0efe56e0dc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index 98840cccdc..e6a3c4c30f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index a3533c805d..1155247785 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index 6cb091dafb..392be6c548 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 0b2c1c3a96..205b8f4d51 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index a5e918bf82..f6cbbba69d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 9bf56f69a2..09d2f2ba99 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index 0cb3fae8f0..6e60a687fa 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 698fa97fc8..286a6b0e07 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index fddbf1a350..6254e3b68f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index 144994eb9b..a8ebd1b54c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 638560ae82..09673e6098 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 63e20e56bd..7cf830c833 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 031ab34fa2..9454381e88 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 32fb3da04b..25c24997cd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index b65a22fbdc..77c867c2ad 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index a90a1b971d..170dfd90ea 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 1cd8170e8f..14f9aa110c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 3810165c12..0889942919 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 8f242b8bf3..5d1ef78b71 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index c301cb76b8..6371e933dc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index e2997ae696..ac5904d91f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index f5f5a33ca7..bb457acb89 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 7b0e9ff88b..2d6592179a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index a57cbf0af0..7b66700a7d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 48ce65c800..2e254c0db0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 2c2efb74ac..24c1c424b8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index cea390491d..b1abec1364 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index d206bcffb9..06957baa1f 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 85bc2ebf77..61b6704313 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 60413405bb..c1db44dcc4 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 8557038cdf..1d6c709517 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 8480dd96fe..6c58b08d10 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index b6175f198a..6552e6e66a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 3058369081..9ed04a2141 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 5db19be11f..b961efe0eb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index 0d34733f07..1f65b1be8a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 354e2e980a..9253f808f9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 6dc6a30856..339f02e070 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index 13f9d21fac..f1aa58b68e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 5361dfeb62..1a94de81f8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index 1a8f8c0d0f..7769b3ed66 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index f7e5233aa3..7d18b5d3bf 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index b4b346a730..1e55929f44 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index b98d27da01..531ffab063 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index c4cad5993d..5d470eabca 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 83f9d417b3..010abc2354 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 3bb47b25d7..a01998fc4d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 1ffe95220b..f8d86eb50a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 11c28e9be1..365fea42ab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index e042d43090..c07b72ee47 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg index 2edf56f19b..a213579793 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index 8d8ec0f3fd..e19ed4a7b1 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 20 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg index 7204c13c5e..3ee351e6d8 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 90f8fb6c16..05c22d3323 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg index f8a4feb35e..51a584d038 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 392f21098a..3c2efc99eb 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg index 4ff1aa7403..f7c9f26617 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index 01af38e710..1088ed3384 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg index 015f9de741..e4195e37a3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index 767644af8f..67d74786ea 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg index 8912a439f5..f3da8e539c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index 9fbe2d656b..41062bcddf 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index a06a805684..e69b9dd030 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index 6310212dad..e5a59502a5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 4737b633fc..78b888abb0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg index 7225bab936..682bfe2f97 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg index eefe637954..ab8338bc9e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg index 63207f8f14..825220e353 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg index d20118ef97..727fdc935b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg index 296959f646..2f21d6eff9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg index 13369f1eab..6c29211dc0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg index b952bc3f2b..5bd7bea421 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg index c8a9e7ec65..64e81fbf1d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index 5fdb90d5e5..f0b2230088 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg index 9bb289a3b1..e32dbabeb6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 6fa63725c5..50d90a00eb 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg index ad06050ef1..a3197dd697 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index e2b41d7445..23eb85c335 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 3428f1fdda..2352570231 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 899fa76b61..571a3aa68f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index ce5961883a..18bdf42758 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index d71cea9bdc..a7cbafcc0e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 31aaa88fc1..d4562bf3a2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index 84c8068563..af9c92d891 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index c9455300ec..99ff066ecc 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index b657f45d71..9ea2f46ec1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index f4e1bab762..fc200dd76c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index 3866a4593a..dc4a8e8734 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 908186790e..e74ed67f23 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index 6f90ea70ac..e20abaae69 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index b5834b5757..17a78ae0f4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 63b0273ba5..1738a2a7d4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index c8ead2040c..20d5b34c30 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index c77fa51e12..663980f2e9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index a0d9fb34e5..75aab7d69f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index eab329b62b..db1684399e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index de4a5cf6d2..6613e5fa4b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index b0057d80ed..e03d98bbd8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index 142c9960d1..cbb246eda0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 00c264aa32..056ecd4177 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index f918839805..2bd5ad82d5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index da575d938f..ac93bc17d5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index c4b84e2053..a6d971eb51 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index b12ea3e1e6..a2f07990b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index f7a0557a60..be73a3ad1b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 0bb1797b46..9764374cd2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 446f68db01..9f15ad8ed6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index cd8490c504..4736d18dae 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 0ab18817e0..7b2b42ae0b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index f6b7800386..4eb56441b3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 248fee213c..ce5666e06a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index d3c5a2cb0d..de02366f81 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index ea2b547829..bd2f1f1b9c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 1a3db01b5e..15891975a3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index b4516e44dd..ef32bc56db 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index dd54779d5d..6ef21ed75f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index ac3173d5c2..34b0afb5b1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 5c78ea044d..0f4db503b2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,14 +7,18 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 20 jerk_print = 30 speed_infill = =speed_print -speed_print = 30 +speed_print = 35 +speed_roofing = =speed_topbottom speed_topbottom = =speed_print speed_wall = =speed_print speed_wall_0 = =speed_wall diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 5f73432e1c..70f539cfe8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,11 +7,19 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 [values] -speed_infill = 50 -top_bottom_thickness = 1.05 +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index aea6b01bff..eedc26a947 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 1419528372..3831ec4895 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 4a1ab82c04..9f4de00ec6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index f066438a25..0eef7bf1ed 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index 8281aefcf0..ded0f97db3 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 15804a0821..7881350346 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 0c5210e5b2..10e967fc41 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index 4c1898658b..f6defe9a0c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index f69ca74915..cf05092f62 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index ed5a152040..83c84bf162 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index d723ee511f..5990c5cb2b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index 8959431e83..01fa9a6e91 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 623ae45d75..5584c5e00a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index 994f21610e..eba95b253b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 9e15b423a2..5688775572 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index c0bdc89f87..efbe56dee7 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index a3dce2468c..95716c5d9f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index 3d04b22ffa..c32dce45b5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 8976d8902c..8f24be0b25 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index bf180f24e3..cc382d57f5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index e53ae6a7dc..b270814153 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index 9471e49714..ddb8021eba 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index 912a50d05c..c844739f28 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index c6e45c7f89..1e60bc8806 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index 923467092e..f4a6913edc 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg index 502547c056..ba99c57749 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index 8a09c840a1..e6b4075cd8 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 @@ -15,7 +15,7 @@ variant = CC 0.4 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 20 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg index 796c2b39c2..10127fb3fc 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 069c039879..48b90a7c69 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg index 99778037cb..877143419b 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index 55faf12587..ad94617c15 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 @@ -15,7 +15,7 @@ variant = CC 0.6 infill_sparse_density = 100 jerk_print = 30 material_shrinkage_percentage_xy = 100.3 -material_shrinkage_percentage_z = 102.0 +material_shrinkage_percentage_z = 100.9 speed_infill = =speed_print speed_layer_0 = 20 speed_print = 25 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg index ec3ae4c8ac..6bc6a2725e 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = intent variant = CC 0.6 diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 2f4ea429a7..d22f44e19e 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 59e028f9d9..d7e03a5348 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 8de69b4d8d..e663e68a4c 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 4dd79af2b2..0d854c132e 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index ea85344a43..a297d02799 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 8d85083a2b..047208076f 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 7dad65fadc..9c58a24882 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 3d3ea1858a..f008edb43d 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index d132622930..658b6ac44b 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index fdb0f4c443..19c36c46e8 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 266774c67f..44284f4642 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d8544e80ae..6d208856f2 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 4883a59ca8..f967de3d14 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 45c5f8efb7..c838f0874d 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 1766ed7762..fc18580ee5 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index e3effc7247..bd7f577015 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 4b26c6f8d2..a93308863b 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 03ead6e755..65253671d6 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 4ec6a43fc3..8ceb763be8 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 380b25ec39..d73f209556 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index de4a124a63..c3e9e2aba3 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 9406777b94..d885c8a731 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 295313baf9..9a7d9be488 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index bf3880d4a5..0165ae7ad8 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 1b5440da22..162e4441a3 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7eedd16f1d..07719831a3 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index b3249837d4..93e329110e 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 133b2403b0..a3f1130928 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 7fd74b45e0..18f7ee286c 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 1c36175ac5..1c1c9aa789 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index d683c6f889..a853d12a34 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 590790f820..9414a12447 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 1bcc1d1ef3..3b8ddec810 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 7e8356dab7..14100af127 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 09326033b7..54aec6ef6f 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 8ddf724274..ce797bd5a3 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 11a5cf6bf4..8429f26ad5 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 576892e25f..8db18e5445 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index e9ecec5b4b..5b83e0f77b 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index de644ce01b..1ca0f4c2a7 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index ca21b4caba..33d6a1c897 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 34edf422d1..8de74ecd6c 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 1113fd75a7..411b4d5b39 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 277d0a1649..2bc167470c 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index 7f7e8ca157..3eea60ab40 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 63e2723f41..ae86f86f11 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index c64f4660dd..4fed70ca47 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index eedf055bb8..3261669acd 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/meshes/ankermake_m5c_platform.obj b/resources/meshes/ankermake_m5c_platform.obj new file mode 100644 index 0000000000..d84dccafd6 --- /dev/null +++ b/resources/meshes/ankermake_m5c_platform.obj @@ -0,0 +1,745 @@ +# Exported from 3D Builder +mtllib D:\Documents\Projects\AnkerMake-M5-Profile\5.1\images\AM-M5-bed.mtl + +o Object.1 +v 121.092972 123.154205 -0.102764 +v 119.840958 123.932068 -0.102778 +v 119.840958 123.932068 0.097220 +v 121.092972 123.154205 0.097234 +v 78.657051 -126.525543 0.102253 +v 78.012062 -126.955132 0.102262 +v 78.012062 -126.955139 -0.097736 +v 78.657051 -126.525551 -0.097745 +v -75.704933 -141.014282 -0.097276 +v -75.352928 -141.851379 -0.097260 +v -75.352928 -141.851364 0.102738 +v -75.704933 -141.014282 0.102722 +v -74.881927 -142.616196 -0.097246 +v -74.881927 -142.616180 0.102752 +v 116.994965 124.874573 -0.102794 +v 118.468956 124.512222 -0.102788 +v 115.440956 125.000031 -0.102794 +v 122.205963 122.196655 -0.102746 +v 123.159973 121.079498 -0.102725 +v 123.935974 119.821854 -0.102701 +v 124.513977 118.444763 -0.102674 +v 124.874969 116.966278 -0.102645 +v 124.999969 115.405518 -0.102615 +v 79.364059 -126.202339 0.102246 +v 79.364059 -126.202347 -0.097752 +v -76.946938 -128.027161 0.102464 +v -76.946938 -128.027161 -0.097534 +v -76.547928 -128.674576 -0.097521 +v -76.547928 -128.674561 0.102477 +v 80.123062 -125.999588 0.102241 +v 80.123062 -125.999596 -0.097757 +v 80.924057 -125.929337 -0.097759 +v 80.924057 -125.929329 0.102239 +v 125.000061 -116.334778 -0.098002 +v 124.875061 -117.895561 -0.097971 +v -115.441032 124.999939 -0.102525 +v 75.924065 -140.114868 -0.097471 +v 75.924065 -140.114868 0.102527 +v 75.705070 -141.014221 0.102545 +v 75.705070 -141.014221 -0.097453 +v 74.301064 -143.294632 -0.097406 +v 74.301064 -143.294632 0.102592 +v 73.625069 -143.876816 -0.097394 +v 118.468956 124.512222 0.097210 +v 74.881050 -142.616135 -0.097420 +v 74.881050 -142.616135 0.102578 +v 116.994965 124.874573 0.097204 +v 75.353065 -141.851318 -0.097436 +v 75.353065 -141.851318 0.102562 +v 115.440956 125.000031 0.097204 +v 115.441055 -125.929314 0.102198 +v 115.441055 -125.929321 -0.097800 +v 116.995064 -125.803848 -0.097804 +v 116.995064 -125.803841 0.102194 +v 118.469055 -125.441521 -0.097813 +v 118.469055 -125.441513 0.102185 +v -124.999947 -116.334877 -0.097710 +v -125.000031 115.405426 0.097675 +v -125.000031 115.405418 -0.102323 +v 119.841057 -124.861359 -0.097826 +v 119.841057 -124.861351 0.102172 +v 121.093071 -124.082481 -0.097843 +v 121.093071 -124.082474 0.102155 +v -124.874954 -117.895653 0.102319 +v -124.513947 -119.374130 0.102348 +v -124.999947 -116.334869 0.102288 +v 124.514069 -119.374039 -0.097941 +v 123.936066 -120.751137 -0.097913 +v 123.160065 -122.008789 -0.097887 +v 122.206055 -123.124947 -0.097863 +v 122.206055 -123.124939 0.102135 +v 74.000061 -122.918182 -0.097811 +v -72.999939 -122.918236 -0.097640 +v 123.160065 -122.008789 0.102111 +v 123.936066 -120.751137 0.102085 +v -116.996040 124.874481 0.097477 +v -116.996040 124.874481 -0.102521 +v -118.469032 124.512131 -0.102512 +v -118.469032 124.512131 0.097486 +v 124.514069 -119.374039 0.102057 +v -119.841042 123.931976 -0.102499 +v -119.841042 123.931976 0.097499 +v 124.875061 -117.895561 0.102027 +v -121.094032 123.154114 -0.102482 +v -121.094032 123.154114 0.097516 +v 125.000061 -116.334778 0.101996 +v -122.207047 122.196564 -0.102462 +v -122.207047 122.196564 0.097537 +v -123.161026 121.079407 -0.102438 +v -123.161026 121.079407 0.097560 +v -123.936020 119.821762 -0.102412 +v -123.936020 119.821762 0.097586 +v 76.250061 -129.496536 -0.097683 +v 76.548050 -128.762833 -0.097698 +v 76.948059 -128.086334 -0.097712 +v -124.514038 118.444664 -0.102384 +v -124.514038 118.444672 0.097614 +v -124.875038 116.966179 -0.102354 +v -124.875038 116.966187 0.097644 +v 77.439056 -127.480080 -0.097724 +v 76.000069 -139.166367 0.102508 +v 76.000069 -139.166367 -0.097490 +v -115.441032 124.999939 0.097473 +v 76.000061 -131.083420 0.102347 +v 76.000061 -131.083420 -0.097651 +v -80.121941 -126.071922 0.102429 +v -80.922943 -126.007690 0.102429 +v -80.922943 -126.007698 -0.097569 +v -80.121941 -126.071930 -0.097569 +v 124.874969 116.966278 0.097353 +v 124.999969 115.405518 0.097383 +v 76.064056 -130.274429 0.102331 +v 76.064056 -130.274445 -0.097667 +v 124.513977 118.444763 0.097324 +v -79.363937 -126.258606 0.102432 +v -79.363937 -126.258614 -0.097566 +v 74.000069 -142.992523 -0.097412 +v 123.935974 119.821869 0.097297 +v 76.250061 -129.496536 0.102315 +v -78.656929 -126.557716 0.102437 +v -78.656929 -126.557724 -0.097561 +v 123.159973 121.079514 0.097273 +v 76.548050 -128.762817 0.102300 +v 122.205963 122.196655 0.097252 +v -78.011940 -126.959198 0.102444 +v -78.011940 -126.959206 -0.097554 +v 76.948059 -128.086319 0.102286 +v -77.438934 -127.452026 0.102454 +v -77.438934 -127.452034 -0.097544 +v 77.439056 -127.480072 0.102274 +v -74.301933 -143.294693 -0.097233 +v -74.301933 -143.294678 0.102765 +v -73.624931 -143.876877 -0.097222 +v -73.624931 -143.876862 0.102776 +v -88.022942 -125.929398 -0.097562 +v -121.093933 -124.082565 0.102437 +v -76.249939 -129.384201 -0.097507 +v -88.022942 -126.007698 -0.097561 +v -76.063942 -130.146011 -0.097492 +v -75.999939 -130.948990 -0.097476 +v -72.999931 -142.992584 -0.097240 +v 71.133072 -144.923676 -0.097370 +v 72.029060 -144.703873 -0.097375 +v 70.188072 -144.999969 -0.097367 +v 72.863068 -144.350555 -0.097383 +v -70.187927 -145.000031 -0.097204 +v -72.028931 -144.703934 -0.097207 +v -71.133934 -144.923737 -0.097204 +v -72.863922 -144.350616 -0.097213 +v -75.999931 -139.166428 -0.097313 +v -75.923935 -140.114929 -0.097294 +v 70.188072 -144.999969 0.102631 +v -70.187927 -145.000015 0.102794 +v 71.133072 -144.923676 0.102628 +v 72.029060 -144.703873 0.102623 +v 72.863068 -144.350555 0.102615 +v 73.625069 -143.876816 0.102604 +v -72.863922 -144.350601 0.102785 +v -72.028931 -144.703918 0.102791 +v -71.133934 -144.923721 0.102794 +v -115.440933 -125.929413 -0.097530 +v -116.995941 -125.803940 -0.097531 +v -118.468933 -125.441612 -0.097537 +v -119.840942 -124.861450 -0.097547 +v -121.093933 -124.082573 -0.097561 +v -122.206947 -123.125038 -0.097578 +v -123.160934 -122.008888 -0.097599 +v -123.935928 -120.751236 -0.097624 +v -124.513947 -119.374138 -0.097650 +v -124.874954 -117.895660 -0.097679 +v -76.249939 -129.384186 0.102491 +v -76.063942 -130.145996 0.102506 +v -75.999939 -130.948975 0.102522 +v -75.999931 -139.166428 0.102685 +v -88.022942 -125.929398 0.102436 +v -88.022942 -126.007698 0.102437 +v -123.935928 -120.751228 0.102374 +v -123.160934 -122.008881 0.102399 +v -122.206947 -123.125031 0.102420 +v -119.840942 -124.861443 0.102451 +v -118.468933 -125.441605 0.102461 +v -116.995941 -125.803932 0.102467 +v -115.440933 -125.929405 0.102468 +v -75.923935 -140.114929 0.102704 + +usemtl Material.001_0 +f 1 2 3 +f 1 3 4 +f 18 1 4 +f 18 4 124 +f 19 18 124 +f 19 124 122 +f 20 19 122 +f 20 122 118 +f 21 20 118 +f 21 118 114 +f 22 21 114 +f 22 114 110 +f 23 22 110 +f 23 110 111 +f 23 111 34 +f 17 36 50 +f 15 17 50 +f 15 50 47 +f 16 15 47 +f 16 47 44 +f 2 16 44 +f 70 74 71 +f 62 70 71 +f 69 68 75 +f 69 75 74 +f 35 86 83 +f 67 35 83 +f 35 34 86 +f 67 83 80 +f 68 67 80 +f 68 80 75 +f 60 62 63 +f 60 63 61 +f 55 60 61 +f 55 61 56 +f 53 55 56 +f 53 56 54 +f 51 53 54 +f 51 33 52 +f 32 52 33 +f 32 33 30 +f 32 30 31 +f 120 116 121 +f 125 120 121 +f 125 121 126 +f 128 125 126 +f 128 126 129 +f 128 129 27 +f 128 27 26 +f 130 127 95 +f 130 95 100 +f 6 130 100 +f 6 100 7 +f 5 6 7 +f 5 7 8 +f 24 5 8 +f 24 8 25 +f 30 24 25 +f 106 107 108 +f 106 108 109 +f 115 106 109 +f 115 109 116 +f 76 77 78 +f 76 78 79 +f 91 97 92 +f 89 91 92 +f 96 98 99 +f 96 99 97 +f 165 136 179 +f 165 179 166 +f 168 167 178 +f 168 178 177 +f 169 168 177 +f 169 177 65 +f 170 169 65 +f 170 65 64 +f 66 170 64 +f 66 57 170 +f 58 57 66 +f 57 58 59 +f 163 180 164 +f 164 180 136 +f 163 181 180 +f 162 181 163 +f 162 182 181 +f 175 183 135 +f 175 135 138 +f 175 138 176 +f 107 176 138 +f 161 183 182 +f 161 182 162 +f 161 135 183 +f 98 59 58 +f 167 166 179 +f 164 136 165 +f 167 179 178 +f 98 58 99 +f 87 89 90 +f 87 90 88 +f 84 87 88 +f 84 88 85 +f 81 84 85 +f 81 85 82 +f 78 81 82 +f 91 96 97 +f 89 92 90 +f 36 76 103 +f 78 82 79 +f 108 107 138 +f 123 93 94 +f 127 123 94 +f 123 119 93 +f 119 113 93 +f 119 112 113 +f 112 105 113 +f 104 102 105 +f 104 101 102 +f 102 101 37 +f 38 37 101 +f 37 38 39 +f 37 39 40 +f 45 42 41 +f 41 42 43 +f 43 42 157 +f 43 157 156 +f 43 156 145 +f 143 154 142 +f 142 154 152 +f 142 152 144 +f 144 152 146 +f 172 139 140 +f 172 140 173 +f 39 49 48 +f 48 49 46 +f 146 153 160 +f 146 160 148 +f 148 160 159 +f 148 159 147 +f 147 158 149 +f 149 158 133 +f 134 133 158 +f 13 132 14 +f 10 13 14 +f 133 132 131 +f 9 10 11 +f 9 11 12 +f 151 9 12 +f 151 12 184 +f 151 184 174 +f 150 151 174 +f 140 150 174 +f 13 131 132 +f 10 14 11 +f 133 134 132 +f 147 159 158 +f 140 174 173 +f 171 139 172 +f 171 137 139 +f 29 137 171 +f 29 28 137 +f 26 28 29 +f 146 152 153 +f 143 155 154 +f 145 155 143 +f 145 156 155 +f 45 46 42 +f 48 46 45 +f 39 48 40 +f 112 104 105 +f 127 94 95 +f 26 27 28 +f 120 115 116 +f 36 77 76 +f 30 25 31 +f 51 52 53 +f 70 69 74 +f 62 71 63 +f 103 50 36 +f 86 34 111 +f 2 44 3 + +vt -0.000000 0.964465 +vt 0.000000 0.106167 +vt 0.961764 1.000000 +vt 0.000500 0.100387 +vt 0.001944 0.094911 +vt 0.004256 0.089810 +vt 0.007360 0.085152 +vt 0.011176 0.081019 +vt 0.015628 0.077472 +vt 0.020636 0.074587 +vt 0.026124 0.072439 +vt 0.032020 0.071097 +vt 0.038236 0.070632 +vt 0.176304 0.070632 +vt 0.204000 0.081784 +vt 0.179508 0.070372 +vt 0.182544 0.069621 +vt 0.185372 0.068424 +vt 0.187952 0.066833 +vt 0.190244 0.064888 +vt 0.192208 0.062643 +vt 0.193808 0.060138 +vt 0.195000 0.057420 +vt 0.195744 0.054539 +vt 0.196000 0.051543 +vt 0.204000 0.007435 +vt 0.196000 0.021606 +vt 0.196304 0.018093 +vt 0.197180 0.014762 +vt 0.198588 0.011662 +vt 0.200476 0.008829 +vt 0.202796 0.006316 +vt 0.205500 0.004160 +vt 0.208548 0.002405 +vt 0.211884 0.001097 +vt 0.215468 0.000283 +vt 0.219248 0.000000 +vt 0.792000 0.007435 +vt 0.780752 0.000000 +vt 0.784536 0.000283 +vt 0.788116 0.001097 +vt 0.791456 0.002405 +vt 0.794500 0.004160 +vt 0.797208 0.006316 +vt 0.799528 0.008829 +vt 0.801412 0.011662 +vt 0.802820 0.014762 +vt 0.803696 0.018093 +vt 0.804000 0.021606 +vt 0.804000 0.052041 +vt 0.792000 0.081784 +vt 0.967984 0.999535 +vt 0.814628 0.068305 +vt 0.812048 0.066818 +vt 0.809756 0.064993 +vt 0.807788 0.062863 +vt 0.806192 0.060465 +vt 0.805000 0.057837 +vt 0.804256 0.055015 +vt 0.817456 0.069413 +vt 0.820488 0.070104 +vt 0.823692 0.070342 +vt 0.852092 0.070632 +vt 0.852092 0.070342 +vt 0.973876 0.998193 +vt 0.979364 0.996045 +vt 0.984376 0.993164 +vt 0.988828 0.989617 +vt 0.992644 0.985480 +vt 0.995744 0.980822 +vt 0.998056 0.975721 +vt 0.999500 0.970245 +vt 1.000000 0.964465 +vt 1.000000 0.106167 +vt 0.961764 0.070632 +vt 0.967984 0.071097 +vt 0.973876 0.072439 +vt 0.979364 0.074587 +vt 0.984376 0.077472 +vt 0.988828 0.081019 +vt 0.992644 0.085152 +vt 0.995744 0.089810 +vt 0.998056 0.094911 +vt 0.999500 0.100387 +vt 0.038236 1.000000 +vt 0.000500 0.970245 +vt 0.001944 0.975721 +vt 0.004256 0.980821 +vt 0.007360 0.985479 +vt 0.011176 0.989617 +vt 0.015628 0.993164 +vt 0.020636 0.996045 +vt 0.026124 0.998193 +vt 0.032020 0.999535 + +usemtl Mat_0 +f 23/1 34/2 36/3 +f 17/85 23/1 36/3 +f 16/93 2/92 17/85 +f 62/9 36/3 70/8 +f 70/8 36/3 69/7 +f 69/7 36/3 68/6 +f 67/5 36/3 35/4 +f 68/6 36/3 67/5 +f 60/10 36/3 62/9 +f 32/14 31/16 72/15 +f 32/14 72/15 36/3 +f 72/15 73/51 36/3 +f 77/52 36/3 73/51 +f 77/52 73/51 121/53 +f 116/60 77/52 121/53 +f 77/52 109/61 108/62 +f 108/62 135/63 77/52 +f 77/52 135/63 78/65 +f 89/69 135/63 91/70 +f 91/70 135/63 96/71 +f 96/71 135/63 98/72 +f 57/74 165/79 166/80 +f 57/74 166/80 167/81 +f 168/82 57/74 167/81 +f 57/74 59/73 135/63 +f 135/63 161/75 57/74 +f 161/75 162/76 57/74 +f 162/76 163/77 57/74 +f 57/74 163/77 164/78 +f 170/84 57/74 169/83 +f 169/83 57/74 168/82 +f 57/74 164/78 165/79 +f 59/73 98/72 135/63 +f 87/68 135/63 89/69 +f 81/66 135/63 84/67 +f 84/67 135/63 87/68 +f 78/65 135/63 81/66 +f 138/64 135/63 108/62 +f 25/17 8/18 72/15 +f 7/19 72/15 8/18 +f 7/19 100/20 72/15 +f 95/21 72/15 100/20 +f 95/21 94/22 72/15 +f 93/23 72/15 94/22 +f 105/25 72/15 113/24 +f 72/15 105/25 117/26 +f 102/27 117/26 105/25 +f 117/26 37/28 40/29 +f 117/26 40/29 48/30 +f 117/26 48/30 45/31 +f 41/32 117/26 45/31 +f 43/33 145/34 117/26 +f 145/34 143/35 117/26 +f 142/36 117/26 143/35 +f 146/39 141/38 144/37 +f 117/26 144/37 141/38 +f 141/38 73/51 117/26 +f 141/38 140/50 73/51 +f 139/59 73/51 140/50 +f 147/41 141/38 148/40 +f 149/42 141/38 147/41 +f 10/46 141/38 13/45 +f 131/44 13/45 141/38 +f 133/43 131/44 141/38 +f 9/47 141/38 10/46 +f 150/49 141/38 151/48 +f 151/48 141/38 9/47 +f 133/43 141/38 149/42 +f 137/58 28/57 73/51 +f 28/57 27/56 73/51 +f 139/59 137/58 73/51 +f 140/50 141/38 150/49 +f 146/39 148/40 141/38 +f 144/37 117/26 142/36 +f 43/33 117/26 41/32 +f 117/26 102/27 37/28 +f 93/23 113/24 72/15 +f 27/56 129/55 73/51 +f 129/55 126/54 73/51 +f 77/52 116/60 109/61 +f 126/54 121/53 73/51 +f 72/15 117/26 73/51 +f 25/17 72/15 31/16 +f 52/13 32/14 36/3 +f 53/12 52/13 36/3 +f 55/11 53/12 36/3 +f 55/11 36/3 60/10 +f 15/94 16/93 17/85 +f 34/2 35/4 36/3 +f 17/85 22/86 23/1 +f 17/85 21/87 22/86 +f 17/85 20/88 21/87 +f 17/85 19/89 20/88 +f 17/85 18/90 19/89 +f 17/85 1/91 18/90 +f 2/92 1/91 17/85 + +vt 0.992640 0.085152 +vt 0.038236 1.000000 +vt 0.015624 0.077472 +vt 0.995744 0.980822 +vt 0.979364 0.996045 +vt 0.967980 0.999535 +vt 0.973876 0.998193 +vt 0.961764 1.000000 +vt 0.988824 0.989617 +vt 0.992640 0.985480 +vt 0.984372 0.993164 +vt 1.000000 0.106167 +vt 0.998056 0.094911 +vt 0.995744 0.089810 +vt 0.999500 0.100387 +vt 0.999500 0.970245 +vt 1.000000 0.964465 +vt 0.998056 0.975721 +vt 0.001944 0.975721 +vt 0.015624 0.993164 +vt 0.026124 0.998193 +vt 0.032016 0.999535 +vt 0.020636 0.996045 +vt 0.007356 0.985479 +vt 0.011172 0.989617 +vt 0.004256 0.980821 +vt 0.001944 0.094911 +vt -0.000000 0.964465 +vt 0.000500 0.970245 +vt 0.000000 0.106167 +vt 0.000500 0.100387 +vt 0.007356 0.085152 +vt 0.004256 0.089810 +vt 0.011172 0.081019 +vt 0.147908 0.070632 +vt 0.026124 0.072439 +vt 0.020636 0.074587 +vt 0.032016 0.071097 +vt 0.038236 0.070632 +vt 0.973876 0.072439 +vt 0.823696 0.070632 +vt 0.176308 0.070342 +vt 0.147908 0.070342 +vt 0.820492 0.070372 +vt 0.179512 0.070104 +vt 0.817456 0.069621 +vt 0.182544 0.069413 +vt 0.814628 0.068424 +vt 0.185372 0.068305 +vt 0.812048 0.066833 +vt 0.187952 0.066818 +vt 0.809756 0.064889 +vt 0.190244 0.064993 +vt 0.807792 0.062643 +vt 0.192212 0.062862 +vt 0.806192 0.060138 +vt 0.193808 0.060465 +vt 0.805000 0.057420 +vt 0.195000 0.057836 +vt 0.804256 0.054539 +vt 0.195744 0.055015 +vt 0.794500 0.004160 +vt 0.196000 0.052041 +vt 0.208544 0.002405 +vt 0.198588 0.011662 +vt 0.202792 0.006316 +vt 0.205500 0.004160 +vt 0.200472 0.008829 +vt 0.196304 0.018093 +vt 0.196000 0.021606 +vt 0.197180 0.014762 +vt 0.780752 0.000000 +vt 0.215464 0.000283 +vt 0.211884 0.001097 +vt 0.219248 0.000000 +vt 0.788116 0.001097 +vt 0.784532 0.000283 +vt 0.791452 0.002405 +vt 0.804000 0.051543 +vt 0.802820 0.014762 +vt 0.799524 0.008829 +vt 0.797204 0.006316 +vt 0.801412 0.011662 +vt 0.804000 0.021606 +vt 0.803696 0.018093 +vt 0.967980 0.071097 +vt 0.961764 0.070632 +vt 0.984372 0.077472 +vt 0.979364 0.074587 +vt 0.988824 0.081019 + +usemtl Mat_0 +f 3/99 44/101 47/100 +f 3/99 47/100 103/96 +f 118/98 3/99 103/96 +f 74/95 118/98 103/96 +f 74/95 103/96 136/97 +f 136/97 175/129 74/95 +f 175/129 56/134 74/95 +f 56/134 63/182 74/95 +f 63/182 71/184 74/95 +f 74/95 75/108 80/107 +f 74/95 80/107 86/106 +f 80/107 83/109 86/106 +f 33/135 51/181 54/180 +f 128/147 26/149 127/148 +f 128/147 127/148 130/146 +f 106/139 24/140 30/138 +f 107/136 106/139 30/138 +f 103/96 76/116 79/115 +f 103/96 79/115 85/114 +f 103/96 85/114 97/113 +f 85/114 90/118 97/113 +f 90/118 92/120 97/113 +f 97/113 99/123 58/122 +f 97/113 58/122 65/121 +f 97/113 65/121 136/97 +f 65/121 178/126 136/97 +f 178/126 179/128 136/97 +f 136/97 180/131 181/130 +f 181/130 182/132 175/129 +f 182/132 183/133 175/129 +f 175/129 176/137 107/136 +f 175/129 107/136 33/135 +f 64/125 65/121 66/124 +f 65/121 177/127 178/126 +f 58/122 66/124 65/121 +f 85/114 88/119 90/118 +f 79/115 82/117 85/114 +f 106/139 115/141 24/140 +f 115/141 5/142 24/140 +f 115/141 120/143 5/142 +f 120/143 6/144 5/142 +f 125/145 130/146 6/144 +f 39/174 38/179 101/178 +f 172/155 173/157 157/156 +f 172/155 157/156 112/154 +f 171/153 172/155 112/154 +f 157/156 104/173 112/154 +f 157/156 39/174 104/173 +f 157/156 46/175 39/174 +f 46/175 49/177 39/174 +f 173/157 158/158 157/156 +f 158/158 152/166 157/156 +f 152/166 155/170 157/156 +f 158/158 160/167 152/166 +f 160/167 153/169 152/166 +f 132/160 134/161 158/158 +f 11/159 132/160 158/158 +f 11/159 14/162 132/160 +f 173/157 174/164 184/163 +f 173/157 184/163 11/159 +f 184/163 12/165 11/159 +f 158/158 159/168 160/167 +f 173/157 11/159 158/158 +f 29/151 171/153 119/152 +f 26/149 29/151 123/150 +f 152/166 154/171 155/170 +f 155/170 156/172 157/156 +f 157/156 42/176 46/175 +f 39/174 101/178 104/173 +f 171/153 112/154 119/152 +f 29/151 119/152 123/150 +f 26/149 123/150 127/148 +f 125/145 128/147 130/146 +f 120/143 125/145 6/144 +f 107/136 30/138 33/135 +f 33/135 54/180 56/134 +f 56/134 61/183 63/182 +f 175/129 33/135 56/134 +f 136/97 181/130 175/129 +f 103/96 97/113 136/97 +f 74/95 86/106 118/98 +f 86/106 110/110 118/98 +f 118/98 124/103 3/99 +f 47/100 50/102 103/96 +f 86/106 111/111 110/110 +f 110/110 114/112 118/98 +f 118/98 122/104 124/103 +f 124/103 4/105 3/99 + diff --git a/resources/meshes/anycubic_kobra2_platform.stl b/resources/meshes/anycubic_kobra2_platform.stl new file mode 100644 index 0000000000..339d8c15eb Binary files /dev/null and b/resources/meshes/anycubic_kobra2_platform.stl differ diff --git a/resources/meshes/dagoma_sigma_pro.obj b/resources/meshes/dagoma_sigma_pro.obj new file mode 100644 index 0000000000..c5fd878e4a --- /dev/null +++ b/resources/meshes/dagoma_sigma_pro.obj @@ -0,0 +1,8456 @@ +o Object.1 +v 99.619469 -8.715574 -0.000001 +v 99.904823 -4.361938 -0.000001 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 99.144485 -13.052619 -0.000002 +v 99.619469 -8.715574 -0.000001 +v 99.619469 -8.715574 -0.000001 +v 99.144485 -13.052619 -0.000002 +v 99.619469 -8.715573 -5.000001 +v 99.904823 -4.361937 -5.000000 +v 99.619469 -8.715574 -0.000001 +v 99.619469 -8.715573 -5.000001 +v 154.689117 -54.309799 -5.000009 +v 99.904823 -4.361937 -5.000000 +v 99.619469 -8.715573 -5.000001 +v 99.619469 -8.715573 -5.000001 +v 99.144485 -13.052618 -5.000002 +v 154.689117 -54.309799 -5.000009 +v 99.144485 -13.052618 -5.000002 +v 98.480774 -17.364819 -5.000003 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 98.480774 -17.364819 -5.000003 +v 97.629601 -21.643961 -5.000003 +v 97.629601 -21.643961 -5.000003 +v 96.592583 -25.881905 -5.000004 +v 154.689117 -54.309799 -5.000009 +v 96.592583 -25.881905 -5.000004 +v 95.371696 -30.070581 -5.000005 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 95.371696 -30.070581 -5.000005 +v 155.423599 -55.648598 -5.000009 +v 155.423599 -55.648598 -5.000009 +v 154.689117 -54.309795 -15.000009 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309795 -15.000009 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -4.999974 +v 154.689117 -54.309799 -5.000009 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -4.999974 +v 30.310890 161.119598 -14.999973 +v 29.535435 162.398788 -14.999973 +v 30.310890 161.119598 -4.999974 +v 29.535435 162.398788 -14.999973 +v 29.535435 162.398788 -4.999974 +v 30.310890 161.119598 -4.999974 +v 29.535435 162.398788 -4.999974 +v 17.364819 98.480774 -4.999984 +v 17.364819 98.480774 -4.999984 +v 21.643961 97.629601 -4.999984 +v 30.310890 161.119598 -4.999974 +v 21.643961 97.629601 -4.999984 +v 25.881905 96.592583 -4.999984 +v 30.310890 161.119598 -4.999974 +v 30.310890 161.119598 -4.999974 +v 25.881905 96.592583 -4.999984 +v 30.070581 95.371696 -4.999984 +v 30.070581 95.371696 -4.999984 +v 34.202015 93.969261 -4.999985 +v 30.310890 161.119598 -4.999974 +v 34.202015 93.969261 -4.999985 +v 38.268341 92.387955 -4.999985 +v 30.310890 161.119598 -4.999974 +v 38.268341 92.387955 -4.999985 +v 42.261829 90.630775 -4.999985 +v 30.310890 161.119598 -4.999974 +v 42.261829 90.630775 -4.999985 +v 46.174862 88.701088 -4.999986 +v 30.310890 161.119598 -4.999974 +v 30.310890 161.119598 -4.999974 +v 46.174862 88.701088 -4.999986 +v 50.000000 86.602539 -4.999986 +v 50.000000 86.602539 -4.999986 +v 53.729961 84.339142 -4.999986 +v 30.310890 161.119598 -4.999974 +v 53.729961 84.339142 -4.999986 +v 57.357643 81.915207 -4.999987 +v 30.310890 161.119598 -4.999974 +v 30.310890 161.119598 -4.999974 +v 57.357643 81.915207 -4.999987 +v 60.876141 79.335335 -4.999987 +v 60.876141 79.335335 -4.999987 +v 64.278763 76.604439 -4.999988 +v 30.310890 161.119598 -4.999974 +v 64.278763 76.604439 -4.999988 +v 67.559021 73.727737 -4.999988 +v 30.310890 161.119598 -4.999974 +v 67.559021 73.727737 -4.999988 +v 70.710678 70.710678 -4.999989 +v 30.310890 161.119598 -4.999974 +v 30.310890 161.119598 -4.999974 +v 70.710678 70.710678 -4.999989 +v 73.727737 67.559021 -4.999989 +v 73.727737 67.559021 -4.999989 +v 76.604439 64.278763 -4.999990 +v 30.310890 161.119598 -4.999974 +v 76.604439 64.278763 -4.999990 +v 79.335335 60.876141 -4.999990 +v 30.310890 161.119598 -4.999974 +v 30.310890 161.119598 -4.999974 +v 79.335335 60.876141 -4.999990 +v 81.915207 57.357643 -4.999990 +v 81.915207 57.357643 -4.999990 +v 84.339142 53.729961 -4.999991 +v 30.310890 161.119598 -4.999974 +v 84.339142 53.729961 -4.999991 +v 86.602539 50.000000 -4.999992 +v 30.310890 161.119598 -4.999974 +v 84.339142 53.729961 -4.999991 +v 86.602539 50.000000 0.000008 +v 86.602539 50.000000 -4.999992 +v 86.602539 50.000000 0.000008 +v 88.701088 46.174862 0.000008 +v 86.602539 50.000000 -4.999992 +v 86.602539 50.000000 -4.999992 +v 88.701088 46.174862 0.000008 +v 88.701088 46.174862 -4.999992 +v 86.602539 50.000000 -4.999992 +v 88.701088 46.174862 -4.999992 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 88.701088 46.174862 -4.999992 +v 90.630775 42.261829 -4.999993 +v 90.630775 42.261829 -4.999993 +v 92.387955 38.268341 -4.999994 +v 154.689117 -54.309799 -5.000009 +v 92.387955 38.268341 -4.999994 +v 93.969261 34.202015 -4.999994 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 93.969261 34.202015 -4.999994 +v 95.371696 30.070581 -4.999995 +v 95.371696 30.070581 -4.999995 +v 96.592583 25.881905 -4.999996 +v 154.689117 -54.309799 -5.000009 +v 96.592583 25.881905 -4.999996 +v 97.629601 21.643961 -4.999997 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 97.629601 21.643961 -4.999997 +v 98.480774 17.364819 -4.999997 +v 98.480774 17.364819 -4.999997 +v 99.144485 13.052620 -4.999998 +v 154.689117 -54.309799 -5.000009 +v 99.144485 13.052620 -4.999998 +v 99.619469 8.715575 -4.999999 +v 154.689117 -54.309799 -5.000009 +v 154.689117 -54.309799 -5.000009 +v 99.619469 8.715575 -4.999999 +v 99.904823 4.361939 -5.000000 +v 99.904823 4.361939 -5.000000 +v 100.000000 0.000001 -5.000000 +v 154.689117 -54.309799 -5.000009 +v 99.904823 4.361939 -5.000000 +v 100.000000 0.000000 0.000000 +v 100.000000 0.000001 -5.000000 +v 100.000000 0.000000 0.000000 +v 99.904823 -4.361938 -0.000001 +v 100.000000 0.000001 -5.000000 +v 100.000000 0.000001 -5.000000 +v 99.904823 -4.361938 -0.000001 +v 99.904823 -4.361937 -5.000000 +v 99.904823 4.361938 0.000001 +v 100.000000 0.000000 0.000000 +v 99.904823 4.361939 -5.000000 +v 0.000000 0.000000 0.000000 +v 100.000000 0.000000 0.000000 +v 99.904823 4.361938 0.000001 +v 99.904823 4.361938 0.000001 +v 99.619469 8.715574 0.000001 +v 0.000000 0.000000 0.000000 +v 99.619469 8.715574 0.000001 +v 99.144485 13.052619 0.000002 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 99.144485 13.052619 0.000002 +v 98.480774 17.364819 0.000003 +v 98.480774 17.364819 0.000003 +v 97.629601 21.643961 0.000004 +v 0.000000 0.000000 0.000000 +v 97.629601 21.643961 0.000004 +v 96.592583 25.881905 0.000004 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 96.592583 25.881905 0.000004 +v 95.371696 30.070581 0.000005 +v 95.371696 30.070581 0.000005 +v 93.969261 34.202015 0.000006 +v 0.000000 0.000000 0.000000 +v 93.969261 34.202015 0.000006 +v 92.387955 38.268341 0.000006 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 92.387955 38.268341 0.000006 +v 90.630775 42.261829 0.000007 +v 90.630775 42.261829 0.000007 +v 88.701088 46.174862 0.000008 +v 0.000000 0.000000 0.000000 +v 90.630775 42.261829 0.000007 +v 92.387955 38.268341 0.000006 +v 90.630775 42.261829 -4.999993 +v 92.387955 38.268341 0.000006 +v 93.969261 34.202015 0.000006 +v 92.387955 38.268341 -4.999994 +v 93.969261 34.202015 0.000006 +v 95.371696 30.070581 0.000005 +v 93.969261 34.202015 -4.999994 +v 95.371696 30.070581 0.000005 +v 96.592583 25.881905 0.000004 +v 95.371696 30.070581 -4.999995 +v 96.592583 25.881905 0.000004 +v 97.629601 21.643961 0.000004 +v 96.592583 25.881905 -4.999996 +v 97.629601 21.643961 0.000004 +v 98.480774 17.364819 0.000003 +v 97.629601 21.643961 -4.999997 +v 98.480774 17.364819 0.000003 +v 99.144485 13.052619 0.000002 +v 98.480774 17.364819 -4.999997 +v 99.144485 13.052619 0.000002 +v 99.619469 8.715574 0.000001 +v 99.144485 13.052620 -4.999998 +v 99.619469 8.715574 0.000001 +v 99.904823 4.361938 0.000001 +v 99.619469 8.715575 -4.999999 +v 99.619469 8.715575 -4.999999 +v 99.904823 4.361938 0.000001 +v 99.904823 4.361939 -5.000000 +v 99.144485 13.052620 -4.999998 +v 99.619469 8.715574 0.000001 +v 99.619469 8.715575 -4.999999 +v 98.480774 17.364819 -4.999997 +v 99.144485 13.052619 0.000002 +v 99.144485 13.052620 -4.999998 +v 97.629601 21.643961 -4.999997 +v 98.480774 17.364819 0.000003 +v 98.480774 17.364819 -4.999997 +v 96.592583 25.881905 -4.999996 +v 97.629601 21.643961 0.000004 +v 97.629601 21.643961 -4.999997 +v 95.371696 30.070581 -4.999995 +v 96.592583 25.881905 0.000004 +v 96.592583 25.881905 -4.999996 +v 93.969261 34.202015 -4.999994 +v 95.371696 30.070581 0.000005 +v 95.371696 30.070581 -4.999995 +v 92.387955 38.268341 -4.999994 +v 93.969261 34.202015 0.000006 +v 93.969261 34.202015 -4.999994 +v 90.630775 42.261829 -4.999993 +v 92.387955 38.268341 0.000006 +v 92.387955 38.268341 -4.999994 +v 88.701088 46.174862 -4.999992 +v 90.630775 42.261829 0.000007 +v 90.630775 42.261829 -4.999993 +v 88.701088 46.174862 0.000008 +v 90.630775 42.261829 0.000007 +v 88.701088 46.174862 -4.999992 +v 88.701088 46.174862 0.000008 +v 86.602539 50.000000 0.000008 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 86.602539 50.000000 0.000008 +v 84.339142 53.729961 0.000009 +v 84.339142 53.729961 0.000009 +v 81.915207 57.357643 0.000009 +v 0.000000 0.000000 0.000000 +v 81.915207 57.357643 0.000009 +v 79.335335 60.876141 0.000010 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 79.335335 60.876141 0.000010 +v 76.604439 64.278763 0.000010 +v 76.604439 64.278763 0.000010 +v 73.727737 67.559021 0.000011 +v 0.000000 0.000000 0.000000 +v 73.727737 67.559021 0.000011 +v 70.710678 70.710678 0.000012 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 70.710678 70.710678 0.000012 +v 67.559021 73.727737 0.000012 +v 67.559021 73.727737 0.000012 +v 64.278763 76.604439 0.000012 +v 0.000000 0.000000 0.000000 +v 64.278763 76.604439 0.000012 +v 60.876141 79.335335 0.000013 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 60.876141 79.335335 0.000013 +v 57.357643 81.915207 0.000013 +v 57.357643 81.915207 0.000013 +v 53.729961 84.339142 0.000014 +v 0.000000 0.000000 0.000000 +v 53.729961 84.339142 0.000014 +v 50.000000 86.602539 0.000014 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 50.000000 86.602539 0.000014 +v 46.174862 88.701088 0.000014 +v 46.174862 88.701088 0.000014 +v 42.261829 90.630775 0.000015 +v 0.000000 0.000000 0.000000 +v 42.261829 90.630775 0.000015 +v 38.268341 92.387955 0.000015 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 38.268341 92.387955 0.000015 +v 34.202015 93.969261 0.000015 +v 34.202015 93.969261 0.000015 +v 30.070581 95.371696 0.000016 +v 0.000000 0.000000 0.000000 +v 30.070581 95.371696 0.000016 +v 25.881905 96.592583 0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 25.881905 96.592583 0.000016 +v 21.643961 97.629601 0.000016 +v 21.643961 97.629601 0.000016 +v 17.364819 98.480774 0.000016 +v 0.000000 0.000000 0.000000 +v 17.364819 98.480774 0.000016 +v 13.052619 99.144485 0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 13.052619 99.144485 0.000016 +v 8.715574 99.619469 0.000016 +v 8.715574 99.619469 0.000016 +v 4.361938 99.904823 0.000016 +v 0.000000 0.000000 0.000000 +v 4.361938 99.904823 0.000016 +v 0.000000 100.000000 0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 0.000000 100.000000 0.000016 +v -4.361938 99.904823 0.000016 +v -4.361938 99.904823 0.000016 +v -8.715574 99.619469 0.000016 +v 0.000000 0.000000 0.000000 +v -8.715574 99.619469 0.000016 +v -13.052619 99.144485 0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -13.052619 99.144485 0.000016 +v -17.364819 98.480774 0.000016 +v -17.364819 98.480774 0.000016 +v -21.643961 97.629601 0.000016 +v 0.000000 0.000000 0.000000 +v -21.643961 97.629601 0.000016 +v -25.881905 96.592583 0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -25.881905 96.592583 0.000016 +v -30.070581 95.371696 0.000016 +v -30.070581 95.371696 0.000016 +v -34.202015 93.969261 0.000015 +v 0.000000 0.000000 0.000000 +v -34.202015 93.969261 0.000015 +v -38.268341 92.387955 0.000015 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -38.268341 92.387955 0.000015 +v -42.261829 90.630775 0.000015 +v -42.261829 90.630775 0.000015 +v -46.174862 88.701088 0.000014 +v 0.000000 0.000000 0.000000 +v -46.174862 88.701088 0.000014 +v -50.000000 86.602539 0.000014 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -50.000000 86.602539 0.000014 +v -53.729961 84.339142 0.000014 +v -53.729961 84.339142 0.000014 +v -57.357643 81.915207 0.000013 +v 0.000000 0.000000 0.000000 +v -57.357643 81.915207 0.000013 +v -60.876141 79.335335 0.000013 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -60.876141 79.335335 0.000013 +v -64.278763 76.604439 0.000012 +v -64.278763 76.604439 0.000012 +v -67.559021 73.727737 0.000012 +v 0.000000 0.000000 0.000000 +v -67.559021 73.727737 0.000012 +v -70.710678 70.710678 0.000012 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -70.710678 70.710678 0.000012 +v -73.727737 67.559021 0.000011 +v -73.727737 67.559021 0.000011 +v -76.604439 64.278763 0.000010 +v 0.000000 0.000000 0.000000 +v -76.604439 64.278763 0.000010 +v -79.335335 60.876141 0.000010 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -79.335335 60.876141 0.000010 +v -81.915207 57.357643 0.000009 +v -81.915207 57.357643 0.000009 +v -84.339142 53.729961 0.000009 +v 0.000000 0.000000 0.000000 +v -84.339142 53.729961 0.000009 +v -86.602539 50.000000 0.000008 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -86.602539 50.000000 0.000008 +v -88.701088 46.174862 0.000008 +v -88.701088 46.174862 0.000008 +v -90.630775 42.261829 0.000007 +v 0.000000 0.000000 0.000000 +v -90.630775 42.261829 0.000007 +v -92.387955 38.268341 0.000006 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -92.387955 38.268341 0.000006 +v -93.969261 34.202015 0.000006 +v -93.969261 34.202015 0.000006 +v -95.371696 30.070581 0.000005 +v 0.000000 0.000000 0.000000 +v -95.371696 30.070581 0.000005 +v -96.592583 25.881905 0.000004 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -96.592583 25.881905 0.000004 +v -97.629601 21.643961 0.000004 +v -97.629601 21.643961 0.000004 +v -98.480774 17.364819 0.000003 +v 0.000000 0.000000 0.000000 +v -98.480774 17.364819 0.000003 +v -99.144485 13.052619 0.000002 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -99.144485 13.052619 0.000002 +v -99.619469 8.715574 0.000001 +v -99.619469 8.715574 0.000001 +v -99.904823 4.361938 0.000001 +v 0.000000 0.000000 0.000000 +v -99.904823 4.361938 0.000001 +v -100.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -100.000000 0.000000 0.000000 +v -99.904823 -4.361938 -0.000001 +v -99.904823 -4.361938 -0.000001 +v -99.619469 -8.715574 -0.000001 +v 0.000000 0.000000 0.000000 +v -99.619469 -8.715574 -0.000001 +v -99.144485 -13.052619 -0.000002 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -99.144485 -13.052619 -0.000002 +v -98.480774 -17.364819 -0.000003 +v -98.480774 -17.364819 -0.000003 +v -97.629601 -21.643961 -0.000004 +v 0.000000 0.000000 0.000000 +v -97.629601 -21.643961 -0.000004 +v -96.592583 -25.881905 -0.000004 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -96.592583 -25.881905 -0.000004 +v -95.371696 -30.070581 -0.000005 +v -95.371696 -30.070581 -0.000005 +v -93.969261 -34.202015 -0.000006 +v 0.000000 0.000000 0.000000 +v -93.969261 -34.202015 -0.000006 +v -92.387955 -38.268341 -0.000006 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -92.387955 -38.268341 -0.000006 +v -90.630775 -42.261829 -0.000007 +v -90.630775 -42.261829 -0.000007 +v -88.701088 -46.174862 -0.000008 +v 0.000000 0.000000 0.000000 +v -88.701088 -46.174862 -0.000008 +v -86.602539 -50.000000 -0.000008 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -86.602539 -50.000000 -0.000008 +v -84.339142 -53.729961 -0.000009 +v -84.339142 -53.729961 -0.000009 +v -81.915207 -57.357643 -0.000009 +v 0.000000 0.000000 0.000000 +v -81.915207 -57.357643 -0.000009 +v -79.335335 -60.876141 -0.000010 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -79.335335 -60.876141 -0.000010 +v -76.604439 -64.278763 -0.000010 +v -76.604439 -64.278763 -0.000010 +v -73.727737 -67.559021 -0.000011 +v 0.000000 0.000000 0.000000 +v -73.727737 -67.559021 -0.000011 +v -70.710678 -70.710678 -0.000012 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -70.710678 -70.710678 -0.000012 +v -67.559021 -73.727737 -0.000012 +v -67.559021 -73.727737 -0.000012 +v -64.278763 -76.604439 -0.000012 +v 0.000000 0.000000 0.000000 +v -64.278763 -76.604439 -0.000012 +v -60.876141 -79.335335 -0.000013 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -60.876141 -79.335335 -0.000013 +v -57.357643 -81.915207 -0.000013 +v -57.357643 -81.915207 -0.000013 +v -53.729961 -84.339142 -0.000014 +v 0.000000 0.000000 0.000000 +v -53.729961 -84.339142 -0.000014 +v -50.000000 -86.602539 -0.000014 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -50.000000 -86.602539 -0.000014 +v -46.174862 -88.701088 -0.000014 +v -46.174862 -88.701088 -0.000014 +v -42.261829 -90.630775 -0.000015 +v 0.000000 0.000000 0.000000 +v -42.261829 -90.630775 -0.000015 +v -38.268341 -92.387955 -0.000015 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -38.268341 -92.387955 -0.000015 +v -34.202015 -93.969261 -0.000015 +v -34.202015 -93.969261 -0.000015 +v -30.070581 -95.371696 -0.000016 +v 0.000000 0.000000 0.000000 +v -30.070581 -95.371696 -0.000016 +v -25.881905 -96.592583 -0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -25.881905 -96.592583 -0.000016 +v -21.643961 -97.629601 -0.000016 +v -21.643961 -97.629601 -0.000016 +v -17.364819 -98.480774 -0.000016 +v 0.000000 0.000000 0.000000 +v -17.364819 -98.480774 -0.000016 +v -13.052619 -99.144485 -0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v -13.052619 -99.144485 -0.000016 +v -8.715574 -99.619469 -0.000016 +v -8.715574 -99.619469 -0.000016 +v -4.361938 -99.904823 -0.000016 +v 0.000000 0.000000 0.000000 +v -4.361938 -99.904823 -0.000016 +v 0.000000 -100.000000 -0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 0.000000 -100.000000 -0.000016 +v 4.361938 -99.904823 -0.000016 +v 4.361938 -99.904823 -0.000016 +v 8.715574 -99.619469 -0.000016 +v 0.000000 0.000000 0.000000 +v 8.715574 -99.619469 -0.000016 +v 13.052619 -99.144485 -0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 13.052619 -99.144485 -0.000016 +v 17.364819 -98.480774 -0.000016 +v 17.364819 -98.480774 -0.000016 +v 21.643961 -97.629601 -0.000016 +v 0.000000 0.000000 0.000000 +v 21.643961 -97.629601 -0.000016 +v 25.881905 -96.592583 -0.000016 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 25.881905 -96.592583 -0.000016 +v 30.070581 -95.371696 -0.000016 +v 30.070581 -95.371696 -0.000016 +v 34.202015 -93.969261 -0.000015 +v 0.000000 0.000000 0.000000 +v 34.202015 -93.969261 -0.000015 +v 38.268341 -92.387955 -0.000015 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 38.268341 -92.387955 -0.000015 +v 42.261829 -90.630775 -0.000015 +v 42.261829 -90.630775 -0.000015 +v 46.174862 -88.701088 -0.000014 +v 0.000000 0.000000 0.000000 +v 46.174862 -88.701088 -0.000014 +v 50.000000 -86.602539 -0.000014 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 50.000000 -86.602539 -0.000014 +v 53.729961 -84.339142 -0.000014 +v 53.729961 -84.339142 -0.000014 +v 57.357643 -81.915207 -0.000013 +v 0.000000 0.000000 0.000000 +v 57.357643 -81.915207 -0.000013 +v 60.876141 -79.335335 -0.000013 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 60.876141 -79.335335 -0.000013 +v 64.278763 -76.604439 -0.000012 +v 64.278763 -76.604439 -0.000012 +v 67.559021 -73.727737 -0.000012 +v 0.000000 0.000000 0.000000 +v 67.559021 -73.727737 -0.000012 +v 70.710678 -70.710678 -0.000012 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 70.710678 -70.710678 -0.000012 +v 73.727737 -67.559021 -0.000011 +v 73.727737 -67.559021 -0.000011 +v 76.604439 -64.278763 -0.000010 +v 0.000000 0.000000 0.000000 +v 76.604439 -64.278763 -0.000010 +v 79.335335 -60.876141 -0.000010 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 79.335335 -60.876141 -0.000010 +v 81.915207 -57.357643 -0.000009 +v 81.915207 -57.357643 -0.000009 +v 84.339142 -53.729961 -0.000009 +v 0.000000 0.000000 0.000000 +v 84.339142 -53.729961 -0.000009 +v 86.602539 -50.000000 -0.000008 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 86.602539 -50.000000 -0.000008 +v 88.701088 -46.174862 -0.000008 +v 88.701088 -46.174862 -0.000008 +v 90.630775 -42.261829 -0.000007 +v 0.000000 0.000000 0.000000 +v 90.630775 -42.261829 -0.000007 +v 92.387955 -38.268341 -0.000006 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 92.387955 -38.268341 -0.000006 +v 93.969261 -34.202015 -0.000006 +v 93.969261 -34.202015 -0.000006 +v 95.371696 -30.070581 -0.000005 +v 0.000000 0.000000 0.000000 +v 95.371696 -30.070581 -0.000005 +v 96.592583 -25.881905 -0.000004 +v 0.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 96.592583 -25.881905 -0.000004 +v 97.629601 -21.643961 -0.000004 +v 97.629601 -21.643961 -0.000004 +v 98.480774 -17.364819 -0.000003 +v 0.000000 0.000000 0.000000 +v 98.480774 -17.364819 -0.000003 +v 97.629601 -21.643961 -0.000004 +v 98.480774 -17.364819 -5.000003 +v 97.629601 -21.643961 -0.000004 +v 96.592583 -25.881905 -0.000004 +v 97.629601 -21.643961 -5.000003 +v 96.592583 -25.881905 -0.000004 +v 95.371696 -30.070581 -0.000005 +v 96.592583 -25.881905 -5.000004 +v 95.371696 -30.070581 -0.000005 +v 93.969261 -34.202015 -0.000006 +v 95.371696 -30.070581 -5.000005 +v 95.371696 -30.070581 -5.000005 +v 93.969261 -34.202015 -0.000006 +v 93.969261 -34.202015 -5.000006 +v 93.969261 -34.202015 -0.000006 +v 92.387955 -38.268341 -0.000006 +v 93.969261 -34.202015 -5.000006 +v 93.969261 -34.202015 -5.000006 +v 92.387955 -38.268341 -0.000006 +v 92.387955 -38.268341 -5.000006 +v 92.387955 -38.268341 -5.000006 +v 156.714005 -58.415878 -5.000010 +v 93.969261 -34.202015 -5.000006 +v 156.714005 -58.415878 -5.000010 +v 156.098999 -57.018162 -5.000009 +v 93.969261 -34.202015 -5.000006 +v 93.969261 -34.202015 -5.000006 +v 156.098999 -57.018162 -5.000009 +v 155.423599 -55.648598 -5.000009 +v 156.098999 -57.018162 -5.000009 +v 155.423599 -55.648594 -15.000010 +v 155.423599 -55.648598 -5.000009 +v 156.098999 -57.018158 -15.000010 +v 155.423599 -55.648594 -15.000010 +v 156.098999 -57.018162 -5.000009 +v 124.378220 -106.809799 -15.000017 +v 155.423599 -55.648594 -15.000010 +v 156.098999 -57.018158 -15.000010 +v 156.098999 -57.018158 -15.000010 +v 156.714005 -58.415874 -15.000010 +v 124.378220 -106.809799 -15.000017 +v 156.714005 -58.415874 -15.000010 +v 157.267471 -59.839092 -15.000010 +v 124.378220 -106.809799 -15.000017 +v 124.378220 -106.809799 -15.000017 +v 157.267471 -59.839092 -15.000010 +v 157.758316 -61.285095 -15.000010 +v 157.758316 -61.285095 -15.000010 +v 158.185638 -62.751133 -15.000010 +v 124.378220 -106.809799 -15.000017 +v 158.185638 -62.751133 -15.000010 +v 158.548584 -64.234413 -15.000010 +v 124.378220 -106.809799 -15.000017 +v 124.378220 -106.809799 -15.000017 +v 158.548584 -64.234413 -15.000010 +v 158.846497 -65.732117 -15.000010 +v 158.846497 -65.732117 -15.000010 +v 159.078796 -67.241386 -15.000010 +v 124.378220 -106.809799 -15.000017 +v 159.078796 -67.241386 -15.000010 +v 159.245026 -68.759354 -15.000011 +v 124.378220 -106.809799 -15.000017 +v 159.245026 -68.759354 -15.000011 +v 159.344910 -70.283119 -15.000011 +v 124.378220 -106.809799 -15.000017 +v 159.344910 -70.283119 -15.000011 +v 159.378220 -71.809799 -15.000011 +v 124.378220 -106.809799 -15.000017 +v 124.378220 -106.809799 -15.000017 +v 159.378220 -71.809799 -15.000011 +v 159.344910 -73.336479 -15.000012 +v 159.344910 -73.336479 -15.000012 +v 159.245026 -74.860252 -15.000012 +v 124.378220 -106.809799 -15.000017 +v 159.245026 -74.860252 -15.000012 +v 159.078796 -76.378220 -15.000012 +v 124.378220 -106.809799 -15.000017 +v 124.378220 -106.809799 -15.000017 +v 159.078796 -76.378220 -15.000012 +v 158.846497 -77.887482 -15.000012 +v 125.904900 -106.776489 -15.000017 +v 124.378220 -106.809799 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 125.904900 -106.776489 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 127.428665 -106.676613 -15.000017 +v 125.904900 -106.776489 -15.000017 +v 127.428665 -106.676613 -15.000017 +v 125.904900 -106.776489 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 125.904900 -106.776489 -15.000017 +v 125.904900 -106.776489 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 125.904900 -106.776489 -5.000017 +v 76.604439 -64.278763 -5.000010 +v 76.604439 -64.278763 -5.000010 +v 73.727737 -67.559021 -5.000011 +v 124.378220 -106.809799 -5.000017 +v 73.727737 -67.559021 -5.000011 +v 70.710678 -70.710678 -5.000011 +v 124.378220 -106.809799 -5.000017 +v 70.710678 -70.710678 -5.000011 +v 67.559021 -73.727737 -5.000012 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 67.559021 -73.727737 -5.000012 +v 64.278763 -76.604439 -5.000012 +v 64.278763 -76.604439 -5.000012 +v 60.876141 -79.335335 -5.000013 +v 124.378220 -106.809799 -5.000017 +v 60.876141 -79.335335 -5.000013 +v 57.357643 -81.915207 -5.000013 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 57.357643 -81.915207 -5.000013 +v 53.729961 -84.339142 -5.000014 +v 53.729961 -84.339142 -5.000014 +v 50.000000 -86.602539 -5.000014 +v 124.378220 -106.809799 -5.000017 +v 50.000000 -86.602539 -5.000014 +v 46.174862 -88.701088 -5.000014 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 46.174862 -88.701088 -5.000014 +v 42.261829 -90.630775 -5.000015 +v 42.261829 -90.630775 -5.000015 +v 38.268341 -92.387955 -5.000015 +v 124.378220 -106.809799 -5.000017 +v 38.268341 -92.387955 -5.000015 +v 34.202015 -93.969261 -5.000015 +v 124.378220 -106.809799 -5.000017 +v 34.202015 -93.969261 -5.000015 +v 30.070581 -95.371696 -5.000016 +v 124.378220 -106.809799 -5.000017 +v 30.070581 -95.371696 -5.000016 +v 25.881905 -96.592583 -5.000016 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 25.881905 -96.592583 -5.000016 +v 21.643961 -97.629601 -5.000016 +v 21.643961 -97.629601 -5.000016 +v 17.364819 -98.480774 -5.000016 +v 124.378220 -106.809799 -5.000017 +v 17.364819 -98.480774 -5.000016 +v 13.052619 -99.144485 -5.000016 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 13.052619 -99.144485 -5.000016 +v 8.715574 -99.619469 -5.000016 +v 8.715574 -99.619469 -5.000016 +v 4.361938 -99.904823 -5.000016 +v 124.378220 -106.809799 -5.000017 +v 4.361938 -99.904823 -5.000016 +v 0.000000 -100.000000 -5.000016 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v 0.000000 -100.000000 -5.000016 +v -124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -15.000017 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -15.000017 +v 124.378220 -106.809799 -15.000017 +v -124.378220 -106.809799 -15.000017 +v 154.689117 -54.309795 -15.000009 +v 124.378220 -106.809799 -15.000017 +v -125.873756 -106.777832 -5.000017 +v -124.378220 -106.809799 -15.000017 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -73.727737 -67.559021 -5.000011 +v -125.873756 -106.777832 -5.000017 +v -73.727737 -67.559021 -5.000011 +v -76.604439 -64.278763 -5.000010 +v -125.873756 -106.777832 -5.000017 +v -76.604439 -64.278763 -5.000010 +v -127.366570 -106.681992 -5.000017 +v -125.873756 -106.777832 -5.000017 +v -127.366570 -106.681992 -5.000017 +v -125.873756 -106.777832 -15.000017 +v -125.873756 -106.777832 -5.000017 +v -127.366570 -106.681992 -15.000017 +v -125.873756 -106.777832 -15.000017 +v -127.366570 -106.681992 -5.000017 +v -128.853912 -106.522446 -5.000017 +v -127.366570 -106.681992 -15.000017 +v -127.366570 -106.681992 -5.000017 +v -128.853912 -106.522446 -15.000017 +v -127.366570 -106.681992 -15.000017 +v -128.853912 -106.522446 -5.000017 +v -130.333099 -106.299500 -5.000017 +v -128.853912 -106.522446 -15.000017 +v -128.853912 -106.522446 -5.000017 +v -130.333099 -106.299500 -5.000017 +v -128.853912 -106.522446 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -131.801392 -106.013550 -5.000017 +v -130.333099 -106.299500 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -79.335335 -60.876141 -5.000010 +v -133.256134 -105.665115 -5.000017 +v -131.801392 -106.013550 -5.000017 +v -133.256134 -105.665115 -5.000017 +v -131.801392 -106.013550 -15.000017 +v -131.801392 -106.013550 -5.000017 +v -131.801392 -106.013550 -15.000017 +v -130.333099 -106.299500 -15.000017 +v -131.801392 -106.013550 -5.000017 +v 30.310890 161.119598 -14.999973 +v -130.333099 -106.299500 -15.000017 +v -131.801392 -106.013550 -15.000017 +v -131.801392 -106.013550 -15.000017 +v -133.256134 -105.665115 -15.000017 +v 30.310890 161.119598 -14.999973 +v -133.256134 -105.665115 -15.000017 +v -134.694656 -105.254852 -15.000017 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -14.999973 +v -134.694656 -105.254852 -15.000017 +v -136.114334 -104.783485 -15.000017 +v 30.310890 161.119598 -14.999973 +v -136.114334 -104.783485 -15.000017 +v -137.512558 -104.251884 -15.000017 +v -137.512558 -104.251884 -15.000017 +v -138.886810 -103.661034 -15.000017 +v 30.310890 161.119598 -14.999973 +v -138.886810 -103.661034 -15.000017 +v -140.234558 -103.011986 -15.000017 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -14.999973 +v -140.234558 -103.011986 -15.000017 +v -141.553345 -102.305954 -15.000016 +v -141.553345 -102.305954 -15.000016 +v -142.840744 -101.544220 -15.000016 +v 30.310890 161.119598 -14.999973 +v -142.840744 -101.544220 -15.000016 +v -144.094421 -100.728157 -15.000016 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -14.999973 +v -144.094421 -100.728157 -15.000016 +v -145.312088 -99.859276 -15.000016 +v -145.312088 -99.859276 -15.000016 +v -146.491516 -98.939156 -15.000016 +v 30.310890 161.119598 -14.999973 +v -146.491516 -98.939156 -15.000016 +v -147.630554 -97.969490 -15.000016 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -14.999973 +v -147.630554 -97.969490 -15.000016 +v -148.727097 -96.952026 -15.000016 +v -148.727097 -96.952026 -15.000016 +v -149.779205 -95.888641 -15.000015 +v 30.310890 161.119598 -14.999973 +v -149.779205 -95.888641 -15.000015 +v -150.784882 -94.781273 -15.000015 +v 30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -14.999973 +v -150.784882 -94.781273 -15.000015 +v -151.742325 -93.631943 -15.000015 +v 30.310890 161.119598 -14.999973 +v -151.742325 -93.631943 -15.000015 +v -152.649796 -92.442749 -15.000015 +v -153.505615 -91.215874 -15.000015 +v 30.310890 161.119598 -14.999973 +v -152.649796 -92.442749 -15.000015 +v -153.505615 -91.215874 -15.000015 +v -152.649796 -92.442749 -15.000015 +v -153.505615 -91.215874 -5.000015 +v -154.308212 -89.953545 -5.000015 +v -153.505615 -91.215874 -15.000015 +v -153.505615 -91.215874 -5.000015 +v -154.308212 -89.953545 -5.000015 +v -153.505615 -91.215874 -5.000015 +v -86.602539 -50.000000 -5.000008 +v -86.602539 -50.000000 -5.000008 +v -155.056168 -88.658066 -5.000014 +v -154.308212 -89.953545 -5.000015 +v -155.056168 -88.658066 -5.000014 +v -154.308212 -89.953545 -15.000014 +v -154.308212 -89.953545 -5.000015 +v -155.056168 -88.658066 -15.000014 +v -154.308212 -89.953545 -15.000014 +v -155.056168 -88.658066 -5.000014 +v -155.748062 -87.331818 -5.000014 +v -155.056168 -88.658066 -15.000014 +v -155.056168 -88.658066 -5.000014 +v -155.748062 -87.331818 -15.000014 +v -155.056168 -88.658066 -15.000014 +v -155.748062 -87.331818 -5.000014 +v -156.382660 -85.977219 -5.000014 +v -155.748062 -87.331818 -15.000014 +v -155.748062 -87.331818 -5.000014 +v -156.382660 -85.977219 -5.000014 +v -155.748062 -87.331818 -5.000014 +v -86.602539 -50.000000 -5.000008 +v -156.958801 -84.596741 -5.000014 +v -156.382660 -85.977219 -5.000014 +v -86.602539 -50.000000 -5.000008 +v -86.602539 -50.000000 -5.000008 +v -157.475433 -83.192902 -5.000013 +v -156.958801 -84.596741 -5.000014 +v -157.475433 -83.192902 -5.000013 +v -156.958801 -84.596741 -15.000013 +v -156.958801 -84.596741 -5.000014 +v -156.958801 -84.596741 -15.000013 +v -156.382660 -85.977219 -15.000014 +v -156.958801 -84.596741 -5.000014 +v -156.382660 -85.977219 -15.000014 +v -156.958801 -84.596741 -15.000013 +v -157.711121 -61.136578 -15.000010 +v -157.711121 -61.136578 -15.000010 +v -155.748062 -87.331818 -15.000014 +v -156.382660 -85.977219 -15.000014 +v -156.958801 -84.596741 -15.000013 +v -157.475433 -83.192902 -15.000013 +v -157.711121 -61.136578 -15.000010 +v -157.711121 -61.136578 -15.000010 +v -157.475433 -83.192902 -15.000013 +v -158.136734 -62.570637 -15.000010 +v -157.711121 -61.136578 -15.000010 +v -158.136734 -62.570637 -15.000010 +v -157.711121 -61.136581 -5.000010 +v -157.224609 -59.722023 -5.000010 +v -157.711121 -61.136578 -15.000010 +v -157.711121 -61.136581 -5.000010 +v -157.224609 -59.722023 -5.000010 +v -157.711121 -61.136581 -5.000010 +v -92.387955 -38.268341 -5.000006 +v -92.387955 -38.268341 -5.000006 +v -156.678116 -58.329544 -5.000010 +v -157.224609 -59.722023 -5.000010 +v -156.678116 -58.329544 -5.000010 +v -157.224609 -59.722019 -15.000010 +v -157.224609 -59.722023 -5.000010 +v -156.678116 -58.329540 -15.000010 +v -157.224609 -59.722019 -15.000010 +v -156.678116 -58.329544 -5.000010 +v -156.072601 -56.961693 -5.000009 +v -156.678116 -58.329540 -15.000010 +v -156.678116 -58.329544 -5.000010 +v -156.072601 -56.961689 -15.000010 +v -156.678116 -58.329540 -15.000010 +v -156.072601 -56.961693 -5.000009 +v -155.409195 -55.620960 -5.000009 +v -156.072601 -56.961689 -15.000010 +v -156.072601 -56.961693 -5.000009 +v -155.409195 -55.620960 -5.000009 +v -156.072601 -56.961693 -5.000009 +v -93.969261 -34.202015 -5.000006 +v -154.689117 -54.309799 -5.000009 +v -155.409195 -55.620960 -5.000009 +v -93.969261 -34.202015 -5.000006 +v -93.969261 -34.202015 -5.000006 +v -95.371696 -30.070581 -5.000005 +v -154.689117 -54.309799 -5.000009 +v -95.371696 -30.070581 -5.000005 +v -96.592583 -25.881905 -5.000004 +v -154.689117 -54.309799 -5.000009 +v -96.592583 -25.881905 -5.000004 +v -97.629601 -21.643961 -5.000003 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309799 -5.000009 +v -97.629601 -21.643961 -5.000003 +v -98.480774 -17.364819 -5.000003 +v -98.480774 -17.364819 -5.000003 +v -99.144485 -13.052618 -5.000002 +v -154.689117 -54.309799 -5.000009 +v -99.144485 -13.052618 -5.000002 +v -99.619469 -8.715573 -5.000001 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309799 -5.000009 +v -99.619469 -8.715573 -5.000001 +v -99.904823 -4.361937 -5.000000 +v -154.689117 -54.309799 -5.000009 +v -99.904823 -4.361937 -5.000000 +v -100.000000 0.000001 -5.000000 +v -99.904823 4.361939 -5.000000 +v -154.689117 -54.309799 -5.000009 +v -100.000000 0.000001 -5.000000 +v -100.000000 0.000001 -5.000000 +v -99.904823 4.361938 0.000001 +v -99.904823 4.361939 -5.000000 +v -99.904823 4.361939 -5.000000 +v -99.619469 8.715575 -4.999999 +v -154.689117 -54.309799 -5.000009 +v -99.619469 8.715575 -4.999999 +v -99.144485 13.052620 -4.999998 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309799 -5.000009 +v -99.144485 13.052620 -4.999998 +v -98.480774 17.364819 -4.999997 +v -98.480774 17.364819 -4.999997 +v -97.629601 21.643961 -4.999997 +v -154.689117 -54.309799 -5.000009 +v -97.629601 21.643961 -4.999997 +v -96.592583 25.881905 -4.999996 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309799 -5.000009 +v -96.592583 25.881905 -4.999996 +v -95.371696 30.070581 -4.999995 +v -95.371696 30.070581 -4.999995 +v -93.969261 34.202015 -4.999994 +v -154.689117 -54.309799 -5.000009 +v -93.969261 34.202015 -4.999994 +v -92.387955 38.268341 -4.999994 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309799 -5.000009 +v -92.387955 38.268341 -4.999994 +v -90.630775 42.261829 -4.999993 +v -90.630775 42.261829 -4.999993 +v -88.701088 46.174862 -4.999992 +v -154.689117 -54.309799 -5.000009 +v -88.701088 46.174862 -4.999992 +v -86.602539 50.000000 -4.999992 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309799 -5.000009 +v -86.602539 50.000000 -4.999992 +v -30.310890 161.119598 -4.999974 +v -154.689117 -54.309799 -5.000009 +v -30.310890 161.119598 -4.999974 +v -154.689117 -54.309795 -15.000009 +v -154.689117 -54.309799 -5.000009 +v -154.689117 -54.309795 -15.000009 +v -155.409195 -55.620956 -15.000010 +v -155.409195 -55.620956 -15.000010 +v -154.689117 -54.309795 -15.000009 +v -153.505615 -91.215874 -15.000015 +v -156.072601 -56.961689 -15.000010 +v -155.409195 -55.620956 -15.000010 +v -153.505615 -91.215874 -15.000015 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -14.999973 +v -154.689117 -54.309795 -15.000009 +v -154.689117 -54.309795 -15.000009 +v -30.310890 161.119598 -14.999973 +v 30.310890 161.119598 -14.999973 +v -29.535435 162.398788 -4.999974 +v -30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -21.643961 97.629601 -4.999984 +v -29.535435 162.398788 -4.999974 +v -21.643961 97.629601 -4.999984 +v -17.364819 98.480774 -4.999984 +v -29.535435 162.398788 -4.999974 +v -17.364819 98.480774 -4.999984 +v -28.706030 163.643692 -4.999973 +v -29.535435 162.398788 -4.999974 +v -28.706030 163.643692 -4.999973 +v -29.535435 162.398788 -14.999973 +v -29.535435 162.398788 -4.999974 +v -28.706030 163.643692 -14.999973 +v -29.535435 162.398788 -14.999973 +v -28.706030 163.643692 -4.999973 +v -27.824188 164.851990 -4.999973 +v -28.706030 163.643692 -14.999973 +v -28.706030 163.643692 -4.999973 +v -27.824188 164.851990 -14.999973 +v -28.706030 163.643692 -14.999973 +v -27.824188 164.851990 -4.999973 +v -26.891518 166.021530 -4.999973 +v -27.824188 164.851990 -14.999973 +v -27.824188 164.851990 -4.999973 +v -26.891518 166.021530 -4.999973 +v -27.824188 164.851990 -4.999973 +v -13.052619 99.144485 -4.999984 +v -25.909729 167.150131 -4.999973 +v -26.891518 166.021530 -4.999973 +v -13.052619 99.144485 -4.999984 +v -25.909729 167.150131 -4.999973 +v -13.052619 99.144485 -4.999984 +v -24.880611 168.235748 -4.999973 +v -24.880611 168.235748 -4.999973 +v -25.909729 167.150131 -14.999972 +v -25.909729 167.150131 -4.999973 +v -25.909729 167.150131 -14.999972 +v -26.891518 166.021530 -14.999973 +v -25.909729 167.150131 -4.999973 +v -26.891518 166.021530 -14.999973 +v -25.909729 167.150131 -14.999972 +v 13.824625 175.773605 -14.999971 +v -27.824188 164.851990 -14.999973 +v -26.891518 166.021530 -14.999973 +v 13.824625 175.773605 -14.999971 +v 13.824625 175.773605 -14.999971 +v -25.909729 167.150131 -14.999972 +v -24.880611 168.235748 -14.999972 +v -24.880611 168.235748 -14.999972 +v -23.806047 169.276413 -14.999972 +v 13.824625 175.773605 -14.999971 +v -23.806047 169.276413 -14.999972 +v -22.687994 170.270203 -14.999972 +v 13.824625 175.773605 -14.999971 +v -22.687994 170.270203 -14.999972 +v -21.528500 171.215332 -14.999972 +v 13.824625 175.773605 -14.999971 +v 13.824625 175.773605 -14.999971 +v -21.528500 171.215332 -14.999972 +v -20.329678 172.110016 -14.999972 +v -20.329678 172.110016 -14.999972 +v -19.093721 172.952682 -14.999971 +v 13.824625 175.773605 -14.999971 +v -19.093721 172.952682 -14.999971 +v -17.822887 173.741760 -14.999971 +v 13.824625 175.773605 -14.999971 +v -17.822887 173.741760 -14.999971 +v -16.519497 174.475815 -14.999971 +v 13.824625 175.773605 -14.999971 +v 13.824625 175.773605 -14.999971 +v -16.519497 174.475815 -14.999971 +v -15.185931 175.153503 -14.999971 +v -15.185931 175.153503 -14.999971 +v -13.824625 175.773605 -14.999971 +v 13.824625 175.773605 -14.999971 +v -13.824625 175.773605 -14.999971 +v -12.438066 176.334961 -14.999971 +v 13.824625 175.773605 -14.999971 +v -12.438066 176.334961 -14.999971 +v -11.028788 176.836548 -14.999971 +v 13.824625 175.773605 -14.999971 +v 13.824625 175.773605 -14.999971 +v -11.028788 176.836548 -14.999971 +v 12.438066 176.334961 -14.999971 +v 13.824625 175.773605 -14.999971 +v 12.438066 176.334961 -14.999971 +v 13.824625 175.773605 -4.999971 +v 15.185931 175.153503 -4.999971 +v 13.824625 175.773605 -14.999971 +v 13.824625 175.773605 -4.999971 +v 15.185931 175.153503 -4.999971 +v 13.824625 175.773605 -4.999971 +v 4.361938 99.904823 -4.999984 +v 8.715574 99.619469 -4.999984 +v 15.185931 175.153503 -4.999971 +v 4.361938 99.904823 -4.999984 +v 4.361938 99.904823 -4.999984 +v 8.715574 99.619469 0.000016 +v 8.715574 99.619469 -4.999984 +v 8.715574 99.619469 -4.999984 +v 16.519497 174.475815 -4.999971 +v 15.185931 175.153503 -4.999971 +v 16.519497 174.475815 -4.999971 +v 15.185931 175.153503 -14.999971 +v 15.185931 175.153503 -4.999971 +v 16.519497 174.475815 -14.999971 +v 15.185931 175.153503 -14.999971 +v 16.519497 174.475815 -4.999971 +v 17.822887 173.741760 -4.999972 +v 16.519497 174.475815 -14.999971 +v 16.519497 174.475815 -4.999971 +v 17.822887 173.741760 -14.999971 +v 16.519497 174.475815 -14.999971 +v 17.822887 173.741760 -4.999972 +v 19.093721 172.952682 -4.999972 +v 17.822887 173.741760 -14.999971 +v 17.822887 173.741760 -4.999972 +v 19.093721 172.952682 -4.999972 +v 17.822887 173.741760 -4.999972 +v 8.715574 99.619469 -4.999984 +v 20.329678 172.110016 -4.999972 +v 19.093721 172.952682 -4.999972 +v 8.715574 99.619469 -4.999984 +v 8.715574 99.619469 -4.999984 +v 21.528500 171.215332 -4.999972 +v 20.329678 172.110016 -4.999972 +v 21.528500 171.215332 -4.999972 +v 20.329678 172.110016 -14.999972 +v 20.329678 172.110016 -4.999972 +v 20.329678 172.110016 -14.999972 +v 19.093721 172.952682 -14.999971 +v 20.329678 172.110016 -4.999972 +v 19.093721 172.952682 -14.999971 +v 20.329678 172.110016 -14.999972 +v -30.310890 161.119598 -14.999973 +v 17.822887 173.741760 -14.999971 +v 19.093721 172.952682 -14.999971 +v -30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -14.999973 +v 20.329678 172.110016 -14.999972 +v 21.528500 171.215332 -14.999972 +v 21.528500 171.215332 -14.999972 +v 22.687994 170.270203 -14.999972 +v -30.310890 161.119598 -14.999973 +v 22.687994 170.270203 -14.999972 +v 23.806047 169.276413 -14.999972 +v -30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -14.999973 +v 23.806047 169.276413 -14.999972 +v 24.880611 168.235748 -14.999972 +v 24.880611 168.235748 -14.999972 +v 25.909729 167.150131 -14.999972 +v -30.310890 161.119598 -14.999973 +v 25.909729 167.150131 -14.999972 +v 26.891518 166.021530 -14.999973 +v -30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -14.999973 +v 26.891518 166.021530 -14.999973 +v 27.824188 164.851990 -14.999973 +v 27.824188 164.851990 -14.999973 +v 28.706030 163.643692 -14.999973 +v -30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -14.999973 +v 28.706030 163.643692 -14.999973 +v 29.535435 162.398788 -14.999973 +v 28.706030 163.643692 -14.999973 +v 27.824188 164.851990 -14.999973 +v 28.706030 163.643692 -4.999973 +v 29.535435 162.398788 -4.999974 +v 28.706030 163.643692 -14.999973 +v 28.706030 163.643692 -4.999973 +v 28.706030 163.643692 -4.999973 +v 27.824188 164.851990 -14.999973 +v 27.824188 164.851990 -4.999973 +v 28.706030 163.643692 -4.999973 +v 27.824188 164.851990 -4.999973 +v 13.052619 99.144485 -4.999984 +v 17.364819 98.480774 -4.999984 +v 28.706030 163.643692 -4.999973 +v 13.052619 99.144485 -4.999984 +v 13.052619 99.144485 -4.999984 +v 17.364819 98.480774 0.000016 +v 17.364819 98.480774 -4.999984 +v 13.052619 99.144485 -4.999984 +v 27.824188 164.851990 -4.999973 +v 26.891518 166.021530 -4.999973 +v 26.891518 166.021530 -4.999973 +v 25.909729 167.150131 -4.999973 +v 13.052619 99.144485 -4.999984 +v 25.909729 167.150131 -4.999973 +v 24.880611 168.235748 -4.999973 +v 13.052619 99.144485 -4.999984 +v 13.052619 99.144485 -4.999984 +v 24.880611 168.235748 -4.999973 +v 23.806047 169.276413 -4.999972 +v 23.806047 169.276413 -4.999972 +v 22.687994 170.270203 -4.999972 +v 13.052619 99.144485 -4.999984 +v 13.052619 99.144485 -4.999984 +v 22.687994 170.270203 -4.999972 +v 8.715574 99.619469 -4.999984 +v 8.715574 99.619469 -4.999984 +v 13.052619 99.144485 0.000016 +v 13.052619 99.144485 -4.999984 +v 23.806047 169.276413 -4.999972 +v 22.687994 170.270203 -14.999972 +v 22.687994 170.270203 -4.999972 +v 24.880611 168.235748 -4.999973 +v 23.806047 169.276413 -14.999972 +v 23.806047 169.276413 -4.999972 +v 25.909729 167.150131 -4.999973 +v 24.880611 168.235748 -14.999972 +v 24.880611 168.235748 -4.999973 +v 26.891518 166.021530 -4.999973 +v 25.909729 167.150131 -14.999972 +v 25.909729 167.150131 -4.999973 +v 27.824188 164.851990 -4.999973 +v 26.891518 166.021530 -14.999973 +v 26.891518 166.021530 -4.999973 +v 27.824188 164.851990 -14.999973 +v 26.891518 166.021530 -14.999973 +v 27.824188 164.851990 -4.999973 +v 26.891518 166.021530 -14.999973 +v 25.909729 167.150131 -14.999972 +v 26.891518 166.021530 -4.999973 +v 25.909729 167.150131 -14.999972 +v 24.880611 168.235748 -14.999972 +v 25.909729 167.150131 -4.999973 +v 24.880611 168.235748 -14.999972 +v 23.806047 169.276413 -14.999972 +v 24.880611 168.235748 -4.999973 +v 23.806047 169.276413 -14.999972 +v 22.687994 170.270203 -14.999972 +v 23.806047 169.276413 -4.999972 +v 22.687994 170.270203 -14.999972 +v 21.528500 171.215332 -14.999972 +v 22.687994 170.270203 -4.999972 +v 22.687994 170.270203 -4.999972 +v 21.528500 171.215332 -14.999972 +v 21.528500 171.215332 -4.999972 +v 21.528500 171.215332 -14.999972 +v 20.329678 172.110016 -14.999972 +v 21.528500 171.215332 -4.999972 +v 22.687994 170.270203 -4.999972 +v 21.528500 171.215332 -4.999972 +v 8.715574 99.619469 -4.999984 +v 20.329678 172.110016 -4.999972 +v 19.093721 172.952682 -14.999971 +v 19.093721 172.952682 -4.999972 +v 19.093721 172.952682 -14.999971 +v 17.822887 173.741760 -14.999971 +v 19.093721 172.952682 -4.999972 +v -30.310890 161.119598 -14.999973 +v 16.519497 174.475815 -14.999971 +v 17.822887 173.741760 -14.999971 +v 15.185931 175.153503 -14.999971 +v 16.519497 174.475815 -14.999971 +v -30.310890 161.119598 -14.999973 +v 13.824625 175.773605 -14.999971 +v 15.185931 175.153503 -14.999971 +v -30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -14.999973 +v -29.535435 162.398788 -14.999973 +v 13.824625 175.773605 -14.999971 +v 17.822887 173.741760 -4.999972 +v 16.519497 174.475815 -4.999971 +v 8.715574 99.619469 -4.999984 +v 13.824625 175.773605 -4.999971 +v 12.438066 176.334961 -4.999971 +v 4.361938 99.904823 -4.999984 +v 12.438066 176.334961 -4.999971 +v 11.028788 176.836548 -4.999971 +v 4.361938 99.904823 -4.999984 +v 4.361938 99.904823 -4.999984 +v 11.028788 176.836548 -4.999971 +v 9.599362 177.277481 -4.999971 +v 9.599362 177.277481 -4.999971 +v 8.152403 177.656906 -4.999971 +v 4.361938 99.904823 -4.999984 +v 8.152403 177.656906 -4.999971 +v 6.690552 177.974167 -4.999971 +v 4.361938 99.904823 -4.999984 +v 4.361938 99.904823 -4.999984 +v 6.690552 177.974167 -4.999971 +v 0.000000 100.000000 -4.999984 +v 0.000000 100.000000 -4.999984 +v 4.361938 99.904823 0.000016 +v 4.361938 99.904823 -4.999984 +v 6.690552 177.974167 -4.999971 +v 5.216479 178.228683 -4.999971 +v 0.000000 100.000000 -4.999984 +v 0.000000 100.000000 -4.999984 +v 5.216479 178.228683 -4.999971 +v 3.732878 178.419968 -4.999971 +v 3.732878 178.419968 -4.999971 +v 2.242458 178.547699 -4.999971 +v 0.000000 100.000000 -4.999984 +v 2.242458 178.547699 -4.999971 +v 0.747941 178.611603 -4.999971 +v 0.000000 100.000000 -4.999984 +v 0.000000 100.000000 -4.999984 +v 0.747941 178.611603 -4.999971 +v -0.747941 178.611603 -4.999971 +v -0.747941 178.611603 -4.999971 +v -2.242458 178.547699 -4.999971 +v 0.000000 100.000000 -4.999984 +v -2.242458 178.547699 -4.999971 +v -3.732878 178.419968 -4.999971 +v 0.000000 100.000000 -4.999984 +v 0.000000 100.000000 -4.999984 +v -3.732878 178.419968 -4.999971 +v -5.216479 178.228683 -4.999971 +v -6.690552 177.974167 -4.999971 +v 0.000000 100.000000 -4.999984 +v -5.216479 178.228683 -4.999971 +v -5.216479 178.228683 -4.999971 +v -6.690552 177.974167 -14.999971 +v -6.690552 177.974167 -4.999971 +v -6.690552 177.974167 -14.999971 +v -8.152403 177.656906 -14.999971 +v -6.690552 177.974167 -4.999971 +v -6.690552 177.974167 -4.999971 +v -8.152403 177.656906 -14.999971 +v -8.152403 177.656906 -4.999971 +v -8.152403 177.656906 -4.999971 +v -4.361938 99.904823 -4.999984 +v -6.690552 177.974167 -4.999971 +v -4.361938 99.904823 -4.999984 +v -8.152403 177.656906 -4.999971 +v -9.599362 177.277481 -4.999971 +v -11.028788 176.836548 -4.999971 +v -4.361938 99.904823 -4.999984 +v -9.599362 177.277481 -4.999971 +v -9.599362 177.277481 -4.999971 +v -11.028788 176.836548 -14.999971 +v -11.028788 176.836548 -4.999971 +v -9.599362 177.277481 -14.999971 +v -11.028788 176.836548 -14.999971 +v -9.599362 177.277481 -4.999971 +v -11.028788 176.836548 -14.999971 +v -9.599362 177.277481 -14.999971 +v 5.216479 178.228683 -14.999971 +v 5.216479 178.228683 -14.999971 +v 6.690552 177.974167 -14.999971 +v -11.028788 176.836548 -14.999971 +v 6.690552 177.974167 -14.999971 +v 8.152403 177.656906 -14.999971 +v -11.028788 176.836548 -14.999971 +v -11.028788 176.836548 -14.999971 +v 8.152403 177.656906 -14.999971 +v 9.599362 177.277481 -14.999971 +v -11.028788 176.836548 -14.999971 +v 9.599362 177.277481 -14.999971 +v 11.028788 176.836548 -14.999971 +v 11.028788 176.836548 -14.999971 +v 9.599362 177.277481 -14.999971 +v 11.028788 176.836548 -4.999971 +v 9.599362 177.277481 -14.999971 +v 8.152403 177.656906 -14.999971 +v 9.599362 177.277481 -4.999971 +v 8.152403 177.656906 -14.999971 +v 6.690552 177.974167 -14.999971 +v 8.152403 177.656906 -4.999971 +v 6.690552 177.974167 -14.999971 +v 5.216479 178.228683 -14.999971 +v 6.690552 177.974167 -4.999971 +v -9.599362 177.277481 -14.999971 +v -8.152403 177.656906 -14.999971 +v 5.216479 178.228683 -14.999971 +v 5.216479 178.228683 -14.999971 +v -8.152403 177.656906 -14.999971 +v 3.732878 178.419968 -14.999971 +v 5.216479 178.228683 -14.999971 +v 3.732878 178.419968 -14.999971 +v 5.216479 178.228683 -4.999971 +v -8.152403 177.656906 -14.999971 +v 2.242458 178.547699 -14.999970 +v 3.732878 178.419968 -14.999971 +v 3.732878 178.419968 -14.999971 +v 2.242458 178.547699 -14.999970 +v 3.732878 178.419968 -4.999971 +v -8.152403 177.656906 -14.999971 +v 0.747941 178.611603 -14.999970 +v 2.242458 178.547699 -14.999970 +v 2.242458 178.547699 -14.999970 +v 0.747941 178.611603 -14.999970 +v 2.242458 178.547699 -4.999971 +v -0.747941 178.611603 -14.999970 +v 0.747941 178.611603 -14.999970 +v -8.152403 177.656906 -14.999971 +v 0.747941 178.611603 -14.999970 +v -0.747941 178.611603 -14.999970 +v 0.747941 178.611603 -4.999971 +v -4.361938 99.904823 -4.999984 +v -11.028788 176.836548 -4.999971 +v -12.438066 176.334961 -4.999971 +v -13.824625 175.773605 -4.999971 +v -4.361938 99.904823 -4.999984 +v -12.438066 176.334961 -4.999971 +v -12.438066 176.334961 -4.999971 +v -13.824625 175.773605 -14.999971 +v -13.824625 175.773605 -4.999971 +v -8.715574 99.619469 -4.999984 +v -4.361938 99.904823 -4.999984 +v -13.824625 175.773605 -4.999971 +v -15.185931 175.153503 -4.999971 +v -8.715574 99.619469 -4.999984 +v -13.824625 175.773605 -4.999971 +v -13.824625 175.773605 -4.999971 +v -15.185931 175.153503 -14.999971 +v -15.185931 175.153503 -4.999971 +v -15.185931 175.153503 -4.999971 +v -16.519497 174.475815 -4.999971 +v -8.715574 99.619469 -4.999984 +v -16.519497 174.475815 -4.999971 +v -17.822887 173.741760 -4.999972 +v -8.715574 99.619469 -4.999984 +v -8.715574 99.619469 -4.999984 +v -17.822887 173.741760 -4.999972 +v -19.093721 172.952682 -4.999972 +v -19.093721 172.952682 -4.999972 +v -20.329678 172.110016 -4.999972 +v -8.715574 99.619469 -4.999984 +v -20.329678 172.110016 -4.999972 +v -21.528500 171.215332 -4.999972 +v -8.715574 99.619469 -4.999984 +v -8.715574 99.619469 -4.999984 +v -21.528500 171.215332 -4.999972 +v -13.052619 99.144485 -4.999984 +v -13.052619 99.144485 -4.999984 +v -8.715574 99.619469 0.000016 +v -8.715574 99.619469 -4.999984 +v -21.528500 171.215332 -4.999972 +v -22.687994 170.270203 -4.999972 +v -13.052619 99.144485 -4.999984 +v -13.052619 99.144485 -4.999984 +v -22.687994 170.270203 -4.999972 +v -23.806047 169.276413 -4.999972 +v -22.687994 170.270203 -4.999972 +v -23.806047 169.276413 -14.999972 +v -23.806047 169.276413 -4.999972 +v -21.528500 171.215332 -4.999972 +v -22.687994 170.270203 -14.999972 +v -22.687994 170.270203 -4.999972 +v -20.329678 172.110016 -4.999972 +v -21.528500 171.215332 -14.999972 +v -21.528500 171.215332 -4.999972 +v -19.093721 172.952682 -4.999972 +v -20.329678 172.110016 -14.999972 +v -20.329678 172.110016 -4.999972 +v -17.822887 173.741760 -4.999972 +v -19.093721 172.952682 -14.999971 +v -19.093721 172.952682 -4.999972 +v -16.519497 174.475815 -4.999971 +v -17.822887 173.741760 -14.999971 +v -17.822887 173.741760 -4.999972 +v -15.185931 175.153503 -4.999971 +v -16.519497 174.475815 -14.999971 +v -16.519497 174.475815 -4.999971 +v -8.715574 99.619469 -4.999984 +v -4.361938 99.904823 0.000016 +v -4.361938 99.904823 -4.999984 +v -11.028788 176.836548 -4.999971 +v -12.438066 176.334961 -14.999971 +v -12.438066 176.334961 -4.999971 +v -8.152403 177.656906 -4.999971 +v -9.599362 177.277481 -14.999971 +v -9.599362 177.277481 -4.999971 +v -8.152403 177.656906 -14.999971 +v -9.599362 177.277481 -14.999971 +v -8.152403 177.656906 -4.999971 +v -6.690552 177.974167 -14.999971 +v -0.747941 178.611603 -14.999970 +v -8.152403 177.656906 -14.999971 +v -6.690552 177.974167 -14.999971 +v -5.216479 178.228683 -14.999971 +v -0.747941 178.611603 -14.999970 +v -5.216479 178.228683 -14.999971 +v -3.732878 178.419968 -14.999971 +v -0.747941 178.611603 -14.999970 +v -0.747941 178.611603 -14.999970 +v -3.732878 178.419968 -14.999971 +v -2.242458 178.547699 -14.999970 +v -0.747941 178.611603 -14.999970 +v -2.242458 178.547699 -14.999970 +v -0.747941 178.611603 -4.999971 +v -2.242458 178.547699 -14.999970 +v -3.732878 178.419968 -14.999971 +v -2.242458 178.547699 -4.999971 +v -3.732878 178.419968 -14.999971 +v -5.216479 178.228683 -14.999971 +v -3.732878 178.419968 -4.999971 +v -5.216479 178.228683 -14.999971 +v -6.690552 177.974167 -14.999971 +v -5.216479 178.228683 -4.999971 +v -4.361938 99.904823 -4.999984 +v 0.000000 100.000000 -4.999984 +v -6.690552 177.974167 -4.999971 +v -4.361938 99.904823 -4.999984 +v 0.000000 100.000000 0.000016 +v 0.000000 100.000000 -4.999984 +v -3.732878 178.419968 -4.999971 +v -5.216479 178.228683 -14.999971 +v -5.216479 178.228683 -4.999971 +v -2.242458 178.547699 -4.999971 +v -3.732878 178.419968 -14.999971 +v -3.732878 178.419968 -4.999971 +v -0.747941 178.611603 -4.999971 +v -2.242458 178.547699 -14.999970 +v -2.242458 178.547699 -4.999971 +v 0.747941 178.611603 -4.999971 +v -0.747941 178.611603 -14.999970 +v -0.747941 178.611603 -4.999971 +v 2.242458 178.547699 -4.999971 +v 0.747941 178.611603 -14.999970 +v 0.747941 178.611603 -4.999971 +v 3.732878 178.419968 -4.999971 +v 2.242458 178.547699 -14.999970 +v 2.242458 178.547699 -4.999971 +v 5.216479 178.228683 -4.999971 +v 3.732878 178.419968 -14.999971 +v 3.732878 178.419968 -4.999971 +v 6.690552 177.974167 -4.999971 +v 5.216479 178.228683 -14.999971 +v 5.216479 178.228683 -4.999971 +v 8.152403 177.656906 -4.999971 +v 6.690552 177.974167 -14.999971 +v 6.690552 177.974167 -4.999971 +v 9.599362 177.277481 -4.999971 +v 8.152403 177.656906 -14.999971 +v 8.152403 177.656906 -4.999971 +v 11.028788 176.836548 -4.999971 +v 9.599362 177.277481 -14.999971 +v 9.599362 177.277481 -4.999971 +v 12.438066 176.334961 -4.999971 +v 11.028788 176.836548 -14.999971 +v 11.028788 176.836548 -4.999971 +v 12.438066 176.334961 -14.999971 +v 11.028788 176.836548 -14.999971 +v 12.438066 176.334961 -4.999971 +v 15.185931 175.153503 -14.999971 +v 13.824625 175.773605 -14.999971 +v 15.185931 175.153503 -4.999971 +v 13.824625 175.773605 -4.999971 +v 12.438066 176.334961 -14.999971 +v 12.438066 176.334961 -4.999971 +v -11.028788 176.836548 -14.999971 +v 11.028788 176.836548 -14.999971 +v 12.438066 176.334961 -14.999971 +v -11.028788 176.836548 -14.999971 +v -12.438066 176.334961 -14.999971 +v -11.028788 176.836548 -4.999971 +v -12.438066 176.334961 -14.999971 +v -13.824625 175.773605 -14.999971 +v -12.438066 176.334961 -4.999971 +v -13.824625 175.773605 -14.999971 +v -15.185931 175.153503 -14.999971 +v -13.824625 175.773605 -4.999971 +v -15.185931 175.153503 -14.999971 +v -16.519497 174.475815 -14.999971 +v -15.185931 175.153503 -4.999971 +v -16.519497 174.475815 -14.999971 +v -17.822887 173.741760 -14.999971 +v -16.519497 174.475815 -4.999971 +v -17.822887 173.741760 -14.999971 +v -19.093721 172.952682 -14.999971 +v -17.822887 173.741760 -4.999972 +v -19.093721 172.952682 -14.999971 +v -20.329678 172.110016 -14.999972 +v -19.093721 172.952682 -4.999972 +v -20.329678 172.110016 -14.999972 +v -21.528500 171.215332 -14.999972 +v -20.329678 172.110016 -4.999972 +v -21.528500 171.215332 -14.999972 +v -22.687994 170.270203 -14.999972 +v -21.528500 171.215332 -4.999972 +v -22.687994 170.270203 -14.999972 +v -23.806047 169.276413 -14.999972 +v -22.687994 170.270203 -4.999972 +v -23.806047 169.276413 -14.999972 +v -24.880611 168.235748 -14.999972 +v -23.806047 169.276413 -4.999972 +v -23.806047 169.276413 -4.999972 +v -24.880611 168.235748 -14.999972 +v -24.880611 168.235748 -4.999973 +v -24.880611 168.235748 -14.999972 +v -25.909729 167.150131 -14.999972 +v -24.880611 168.235748 -4.999973 +v -13.052619 99.144485 -4.999984 +v -23.806047 169.276413 -4.999972 +v -24.880611 168.235748 -4.999973 +v -25.909729 167.150131 -4.999973 +v -26.891518 166.021530 -14.999973 +v -26.891518 166.021530 -4.999973 +v -13.052619 99.144485 -4.999984 +v -27.824188 164.851990 -4.999973 +v -17.364819 98.480774 -4.999984 +v -17.364819 98.480774 -4.999984 +v -13.052619 99.144485 0.000016 +v -13.052619 99.144485 -4.999984 +v -26.891518 166.021530 -14.999973 +v -27.824188 164.851990 -14.999973 +v -26.891518 166.021530 -4.999973 +v 13.824625 175.773605 -14.999971 +v -28.706030 163.643692 -14.999973 +v -27.824188 164.851990 -14.999973 +v -29.535435 162.398788 -14.999973 +v -28.706030 163.643692 -14.999973 +v 13.824625 175.773605 -14.999971 +v -27.824188 164.851990 -4.999973 +v -28.706030 163.643692 -4.999973 +v -17.364819 98.480774 -4.999984 +v -21.643961 97.629601 -4.999984 +v -17.364819 98.480774 0.000016 +v -17.364819 98.480774 -4.999984 +v -25.881905 96.592583 -4.999984 +v -21.643961 97.629601 -4.999984 +v -30.310890 161.119598 -4.999974 +v -30.070581 95.371696 -4.999984 +v -25.881905 96.592583 -4.999984 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -34.202015 93.969261 -4.999985 +v -30.070581 95.371696 -4.999984 +v -34.202015 93.969261 -4.999985 +v -30.070581 95.371696 0.000016 +v -30.070581 95.371696 -4.999984 +v -38.268341 92.387955 -4.999985 +v -34.202015 93.969261 -4.999985 +v -30.310890 161.119598 -4.999974 +v -42.261829 90.630775 -4.999985 +v -38.268341 92.387955 -4.999985 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -46.174862 88.701088 -4.999986 +v -42.261829 90.630775 -4.999985 +v -46.174862 88.701088 -4.999986 +v -42.261829 90.630775 0.000015 +v -42.261829 90.630775 -4.999985 +v -50.000000 86.602539 -4.999986 +v -46.174862 88.701088 -4.999986 +v -30.310890 161.119598 -4.999974 +v -53.729961 84.339142 -4.999986 +v -50.000000 86.602539 -4.999986 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -57.357643 81.915207 -4.999987 +v -53.729961 84.339142 -4.999986 +v -57.357643 81.915207 -4.999987 +v -53.729961 84.339142 0.000014 +v -53.729961 84.339142 -4.999986 +v -60.876141 79.335335 -4.999987 +v -57.357643 81.915207 -4.999987 +v -30.310890 161.119598 -4.999974 +v -64.278763 76.604439 -4.999988 +v -60.876141 79.335335 -4.999987 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -67.559021 73.727737 -4.999988 +v -64.278763 76.604439 -4.999988 +v -67.559021 73.727737 -4.999988 +v -64.278763 76.604439 0.000012 +v -64.278763 76.604439 -4.999988 +v -70.710678 70.710678 -4.999989 +v -67.559021 73.727737 -4.999988 +v -30.310890 161.119598 -4.999974 +v -73.727737 67.559021 -4.999989 +v -70.710678 70.710678 -4.999989 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -76.604439 64.278763 -4.999990 +v -73.727737 67.559021 -4.999989 +v -76.604439 64.278763 -4.999990 +v -73.727737 67.559021 0.000011 +v -73.727737 67.559021 -4.999989 +v -79.335335 60.876141 -4.999990 +v -76.604439 64.278763 -4.999990 +v -30.310890 161.119598 -4.999974 +v -81.915207 57.357643 -4.999990 +v -79.335335 60.876141 -4.999990 +v -30.310890 161.119598 -4.999974 +v -30.310890 161.119598 -4.999974 +v -84.339142 53.729961 -4.999991 +v -81.915207 57.357643 -4.999990 +v -84.339142 53.729961 -4.999991 +v -81.915207 57.357643 0.000009 +v -81.915207 57.357643 -4.999990 +v -81.915207 57.357643 -4.999990 +v -79.335335 60.876141 0.000010 +v -79.335335 60.876141 -4.999990 +v -79.335335 60.876141 -4.999990 +v -76.604439 64.278763 0.000010 +v -76.604439 64.278763 -4.999990 +v -73.727737 67.559021 -4.999989 +v -70.710678 70.710678 0.000012 +v -70.710678 70.710678 -4.999989 +v -70.710678 70.710678 -4.999989 +v -67.559021 73.727737 0.000012 +v -67.559021 73.727737 -4.999988 +v -64.278763 76.604439 -4.999988 +v -60.876141 79.335335 0.000013 +v -60.876141 79.335335 -4.999987 +v -60.876141 79.335335 -4.999987 +v -57.357643 81.915207 0.000013 +v -57.357643 81.915207 -4.999987 +v -53.729961 84.339142 -4.999986 +v -50.000000 86.602539 0.000014 +v -50.000000 86.602539 -4.999986 +v -50.000000 86.602539 -4.999986 +v -46.174862 88.701088 0.000014 +v -46.174862 88.701088 -4.999986 +v -42.261829 90.630775 -4.999985 +v -38.268341 92.387955 0.000015 +v -38.268341 92.387955 -4.999985 +v -38.268341 92.387955 -4.999985 +v -34.202015 93.969261 0.000015 +v -34.202015 93.969261 -4.999985 +v -30.070581 95.371696 -4.999984 +v -25.881905 96.592583 0.000016 +v -25.881905 96.592583 -4.999984 +v -25.881905 96.592583 -4.999984 +v -21.643961 97.629601 0.000016 +v -21.643961 97.629601 -4.999984 +v -29.535435 162.398788 -14.999973 +v -30.310890 161.119598 -14.999973 +v -29.535435 162.398788 -4.999974 +v -86.602539 50.000000 -4.999992 +v -84.339142 53.729961 -4.999991 +v -30.310890 161.119598 -4.999974 +v -86.602539 50.000000 -4.999992 +v -84.339142 53.729961 0.000009 +v -84.339142 53.729961 -4.999991 +v -88.701088 46.174862 -4.999992 +v -86.602539 50.000000 0.000008 +v -86.602539 50.000000 -4.999992 +v -90.630775 42.261829 -4.999993 +v -88.701088 46.174862 0.000008 +v -88.701088 46.174862 -4.999992 +v -92.387955 38.268341 -4.999994 +v -90.630775 42.261829 0.000007 +v -90.630775 42.261829 -4.999993 +v -93.969261 34.202015 -4.999994 +v -92.387955 38.268341 0.000006 +v -92.387955 38.268341 -4.999994 +v -95.371696 30.070581 -4.999995 +v -93.969261 34.202015 0.000006 +v -93.969261 34.202015 -4.999994 +v -96.592583 25.881905 -4.999996 +v -95.371696 30.070581 0.000005 +v -95.371696 30.070581 -4.999995 +v -97.629601 21.643961 -4.999997 +v -96.592583 25.881905 0.000004 +v -96.592583 25.881905 -4.999996 +v -98.480774 17.364819 -4.999997 +v -97.629601 21.643961 0.000004 +v -97.629601 21.643961 -4.999997 +v -99.144485 13.052620 -4.999998 +v -98.480774 17.364819 0.000003 +v -98.480774 17.364819 -4.999997 +v -99.619469 8.715575 -4.999999 +v -99.144485 13.052619 0.000002 +v -99.144485 13.052620 -4.999998 +v -99.904823 4.361939 -5.000000 +v -99.619469 8.715574 0.000001 +v -99.619469 8.715575 -4.999999 +v -99.904823 -4.361937 -5.000000 +v -100.000000 0.000000 0.000000 +v -100.000000 0.000001 -5.000000 +v -99.619469 -8.715573 -5.000001 +v -99.904823 -4.361938 -0.000001 +v -99.904823 -4.361937 -5.000000 +v -99.144485 -13.052618 -5.000002 +v -99.619469 -8.715574 -0.000001 +v -99.619469 -8.715573 -5.000001 +v -98.480774 -17.364819 -5.000003 +v -99.144485 -13.052619 -0.000002 +v -99.144485 -13.052618 -5.000002 +v -97.629601 -21.643961 -5.000003 +v -98.480774 -17.364819 -0.000003 +v -98.480774 -17.364819 -5.000003 +v -96.592583 -25.881905 -5.000004 +v -97.629601 -21.643961 -0.000004 +v -97.629601 -21.643961 -5.000003 +v -95.371696 -30.070581 -5.000005 +v -96.592583 -25.881905 -0.000004 +v -96.592583 -25.881905 -5.000004 +v -93.969261 -34.202015 -5.000006 +v -95.371696 -30.070581 -0.000005 +v -95.371696 -30.070581 -5.000005 +v -154.689117 -54.309799 -5.000009 +v -155.409195 -55.620956 -15.000010 +v -155.409195 -55.620960 -5.000009 +v -93.969261 -34.202015 -5.000006 +v -156.072601 -56.961693 -5.000009 +v -92.387955 -38.268341 -5.000006 +v -92.387955 -38.268341 -5.000006 +v -93.969261 -34.202015 -0.000006 +v -93.969261 -34.202015 -5.000006 +v -155.409195 -55.620956 -15.000010 +v -156.072601 -56.961689 -15.000010 +v -155.409195 -55.620960 -5.000009 +v -153.505615 -91.215874 -15.000015 +v -156.678116 -58.329540 -15.000010 +v -156.072601 -56.961689 -15.000010 +v -157.224609 -59.722019 -15.000010 +v -156.678116 -58.329540 -15.000010 +v -153.505615 -91.215874 -15.000015 +v -157.711121 -61.136578 -15.000010 +v -157.224609 -59.722019 -15.000010 +v -153.505615 -91.215874 -15.000015 +v -157.711121 -61.136578 -15.000010 +v -153.505615 -91.215874 -15.000015 +v -154.308212 -89.953545 -15.000014 +v -156.072601 -56.961693 -5.000009 +v -156.678116 -58.329544 -5.000010 +v -92.387955 -38.268341 -5.000006 +v -157.711121 -61.136581 -5.000010 +v -158.136734 -62.570641 -5.000010 +v -92.387955 -38.268341 -5.000006 +v -158.136734 -62.570641 -5.000010 +v -158.500702 -64.021568 -5.000010 +v -92.387955 -38.268341 -5.000006 +v -158.500702 -64.021568 -5.000010 +v -158.802322 -65.486725 -5.000010 +v -92.387955 -38.268341 -5.000006 +v -92.387955 -38.268341 -5.000006 +v -158.802322 -65.486725 -5.000010 +v -90.630775 -42.261829 -5.000007 +v -90.630775 -42.261829 -5.000007 +v -92.387955 -38.268341 -0.000006 +v -92.387955 -38.268341 -5.000006 +v -158.802322 -65.486725 -5.000010 +v -159.041061 -66.963432 -5.000011 +v -90.630775 -42.261829 -5.000007 +v -90.630775 -42.261829 -5.000007 +v -159.041061 -66.963432 -5.000011 +v -159.216492 -68.448990 -5.000011 +v -159.216492 -68.448990 -5.000011 +v -159.328278 -69.940697 -5.000011 +v -90.630775 -42.261829 -5.000007 +v -159.328278 -69.940697 -5.000011 +v -159.376221 -71.435806 -5.000011 +v -90.630775 -42.261829 -5.000007 +v -90.630775 -42.261829 -5.000007 +v -159.376221 -71.435806 -5.000011 +v -159.360245 -72.931602 -5.000012 +v -159.360245 -72.931602 -5.000012 +v -159.280365 -74.425354 -5.000012 +v -90.630775 -42.261829 -5.000007 +v -159.280365 -74.425354 -5.000012 +v -159.136719 -75.914322 -5.000012 +v -90.630775 -42.261829 -5.000007 +v -90.630775 -42.261829 -5.000007 +v -159.136719 -75.914322 -5.000012 +v -88.701088 -46.174862 -5.000008 +v -88.701088 -46.174862 -5.000008 +v -90.630775 -42.261829 -0.000007 +v -90.630775 -42.261829 -5.000007 +v -159.136719 -75.914322 -5.000012 +v -158.929581 -77.395798 -5.000012 +v -88.701088 -46.174862 -5.000008 +v -88.701088 -46.174862 -5.000008 +v -158.929581 -77.395798 -5.000012 +v -158.659332 -78.867065 -5.000013 +v -158.659332 -78.867065 -5.000013 +v -158.326477 -80.325439 -5.000013 +v -88.701088 -46.174862 -5.000008 +v -158.326477 -80.325439 -5.000013 +v -157.931595 -81.768265 -5.000013 +v -88.701088 -46.174862 -5.000008 +v -88.701088 -46.174862 -5.000008 +v -157.931595 -81.768265 -5.000013 +v -86.602539 -50.000000 -5.000008 +v -86.602539 -50.000000 -5.000008 +v -88.701088 -46.174862 -0.000008 +v -88.701088 -46.174862 -5.000008 +v -158.326477 -80.325439 -5.000013 +v -157.931595 -81.768265 -15.000013 +v -157.931595 -81.768265 -5.000013 +v -157.931595 -81.768265 -15.000013 +v -157.475433 -83.192902 -15.000013 +v -157.931595 -81.768265 -5.000013 +v -157.931595 -81.768265 -5.000013 +v -157.475433 -83.192902 -15.000013 +v -157.475433 -83.192902 -5.000013 +v -157.931595 -81.768265 -15.000013 +v -158.929581 -77.395798 -15.000012 +v -157.475433 -83.192902 -15.000013 +v -158.929581 -77.395798 -15.000012 +v -159.136719 -75.914322 -15.000012 +v -157.475433 -83.192902 -15.000013 +v -157.475433 -83.192902 -15.000013 +v -159.136719 -75.914322 -15.000012 +v -159.280365 -74.425354 -15.000012 +v -159.360245 -72.931602 -15.000011 +v -157.475433 -83.192902 -15.000013 +v -159.280365 -74.425354 -15.000012 +v -159.360245 -72.931602 -15.000011 +v -159.280365 -74.425354 -15.000012 +v -159.360245 -72.931602 -5.000012 +v -159.360245 -72.931602 -15.000011 +v -159.376221 -71.435806 -15.000011 +v -157.475433 -83.192902 -15.000013 +v -159.376221 -71.435806 -15.000011 +v -159.328278 -69.940697 -15.000011 +v -157.475433 -83.192902 -15.000013 +v -159.328278 -69.940697 -15.000011 +v -159.216492 -68.448990 -15.000011 +v -157.475433 -83.192902 -15.000013 +v -157.475433 -83.192902 -15.000013 +v -159.216492 -68.448990 -15.000011 +v -159.041061 -66.963432 -15.000010 +v -159.041061 -66.963432 -15.000010 +v -158.802322 -65.486725 -15.000010 +v -157.475433 -83.192902 -15.000013 +v -158.802322 -65.486725 -15.000010 +v -158.500702 -64.021568 -15.000010 +v -157.475433 -83.192902 -15.000013 +v -158.500702 -64.021568 -15.000010 +v -158.802322 -65.486725 -15.000010 +v -158.500702 -64.021568 -5.000010 +v -158.802322 -65.486725 -15.000010 +v -159.041061 -66.963432 -15.000010 +v -158.802322 -65.486725 -5.000010 +v -159.041061 -66.963432 -15.000010 +v -159.216492 -68.448990 -15.000011 +v -159.041061 -66.963432 -5.000011 +v -159.216492 -68.448990 -15.000011 +v -159.328278 -69.940697 -15.000011 +v -159.216492 -68.448990 -5.000011 +v -159.328278 -69.940697 -15.000011 +v -159.376221 -71.435806 -15.000011 +v -159.328278 -69.940697 -5.000011 +v -159.376221 -71.435806 -15.000011 +v -159.360245 -72.931602 -15.000011 +v -159.376221 -71.435806 -5.000011 +v -159.280365 -74.425354 -15.000012 +v -159.136719 -75.914322 -15.000012 +v -159.280365 -74.425354 -5.000012 +v -159.136719 -75.914322 -15.000012 +v -158.929581 -77.395798 -15.000012 +v -159.136719 -75.914322 -5.000012 +v -158.659332 -78.867065 -15.000012 +v -158.929581 -77.395798 -15.000012 +v -157.931595 -81.768265 -15.000013 +v -158.326477 -80.325439 -15.000013 +v -158.659332 -78.867065 -15.000012 +v -157.931595 -81.768265 -15.000013 +v -158.659332 -78.867065 -15.000012 +v -158.326477 -80.325439 -15.000013 +v -158.659332 -78.867065 -5.000013 +v -158.929581 -77.395798 -15.000012 +v -158.659332 -78.867065 -15.000012 +v -158.929581 -77.395798 -5.000012 +v -158.326477 -80.325439 -15.000013 +v -157.931595 -81.768265 -15.000013 +v -158.326477 -80.325439 -5.000013 +v -158.659332 -78.867065 -5.000013 +v -158.326477 -80.325439 -15.000013 +v -158.326477 -80.325439 -5.000013 +v -158.929581 -77.395798 -5.000012 +v -158.659332 -78.867065 -15.000012 +v -158.659332 -78.867065 -5.000013 +v -159.136719 -75.914322 -5.000012 +v -158.929581 -77.395798 -15.000012 +v -158.929581 -77.395798 -5.000012 +v -159.280365 -74.425354 -5.000012 +v -159.136719 -75.914322 -15.000012 +v -159.136719 -75.914322 -5.000012 +v -159.360245 -72.931602 -5.000012 +v -159.280365 -74.425354 -15.000012 +v -159.280365 -74.425354 -5.000012 +v -159.376221 -71.435806 -5.000011 +v -159.360245 -72.931602 -15.000011 +v -159.360245 -72.931602 -5.000012 +v -159.328278 -69.940697 -5.000011 +v -159.376221 -71.435806 -15.000011 +v -159.376221 -71.435806 -5.000011 +v -159.216492 -68.448990 -5.000011 +v -159.328278 -69.940697 -15.000011 +v -159.328278 -69.940697 -5.000011 +v -159.041061 -66.963432 -5.000011 +v -159.216492 -68.448990 -15.000011 +v -159.216492 -68.448990 -5.000011 +v -158.802322 -65.486725 -5.000010 +v -159.041061 -66.963432 -15.000010 +v -159.041061 -66.963432 -5.000011 +v -158.500702 -64.021568 -5.000010 +v -158.802322 -65.486725 -15.000010 +v -158.802322 -65.486725 -5.000010 +v -158.136734 -62.570641 -5.000010 +v -158.500702 -64.021568 -15.000010 +v -158.500702 -64.021568 -5.000010 +v -158.136734 -62.570637 -15.000010 +v -158.500702 -64.021568 -15.000010 +v -158.136734 -62.570641 -5.000010 +v -157.224609 -59.722019 -15.000010 +v -157.711121 -61.136578 -15.000010 +v -157.224609 -59.722023 -5.000010 +v -157.711121 -61.136581 -5.000010 +v -158.136734 -62.570637 -15.000010 +v -158.136734 -62.570641 -5.000010 +v -157.475433 -83.192902 -15.000013 +v -158.500702 -64.021568 -15.000010 +v -158.136734 -62.570637 -15.000010 +v -157.475433 -83.192902 -15.000013 +v -156.958801 -84.596741 -15.000013 +v -157.475433 -83.192902 -5.000013 +v -157.931595 -81.768265 -5.000013 +v -157.475433 -83.192902 -5.000013 +v -86.602539 -50.000000 -5.000008 +v -156.958801 -84.596741 -5.000014 +v -156.382660 -85.977219 -15.000014 +v -156.382660 -85.977219 -5.000014 +v -156.382660 -85.977219 -15.000014 +v -155.748062 -87.331818 -15.000014 +v -156.382660 -85.977219 -5.000014 +v -155.056168 -88.658066 -15.000014 +v -155.748062 -87.331818 -15.000014 +v -157.711121 -61.136578 -15.000010 +v -154.308212 -89.953545 -15.000014 +v -155.056168 -88.658066 -15.000014 +v -157.711121 -61.136578 -15.000010 +v -155.748062 -87.331818 -5.000014 +v -155.056168 -88.658066 -5.000014 +v -86.602539 -50.000000 -5.000008 +v -153.505615 -91.215874 -5.000015 +v -152.649796 -92.442749 -5.000015 +v -86.602539 -50.000000 -5.000008 +v -152.649796 -92.442749 -5.000015 +v -151.742325 -93.631943 -5.000015 +v -86.602539 -50.000000 -5.000008 +v -151.742325 -93.631943 -5.000015 +v -150.784882 -94.781273 -5.000015 +v -86.602539 -50.000000 -5.000008 +v -86.602539 -50.000000 -5.000008 +v -150.784882 -94.781273 -5.000015 +v -84.339142 -53.729961 -5.000009 +v -84.339142 -53.729961 -5.000009 +v -86.602539 -50.000000 -0.000008 +v -86.602539 -50.000000 -5.000008 +v -150.784882 -94.781273 -5.000015 +v -149.779205 -95.888641 -5.000016 +v -84.339142 -53.729961 -5.000009 +v -84.339142 -53.729961 -5.000009 +v -149.779205 -95.888641 -5.000016 +v -148.727097 -96.952026 -5.000016 +v -148.727097 -96.952026 -5.000016 +v -147.630554 -97.969490 -5.000016 +v -84.339142 -53.729961 -5.000009 +v -84.339142 -53.729961 -5.000009 +v -147.630554 -97.969490 -5.000016 +v -146.491516 -98.939156 -5.000016 +v -145.312088 -99.859276 -5.000016 +v -84.339142 -53.729961 -5.000009 +v -146.491516 -98.939156 -5.000016 +v -146.491516 -98.939156 -5.000016 +v -145.312088 -99.859276 -15.000016 +v -145.312088 -99.859276 -5.000016 +v -81.915207 -57.357643 -5.000010 +v -84.339142 -53.729961 -5.000009 +v -145.312088 -99.859276 -5.000016 +v -144.094421 -100.728157 -5.000016 +v -81.915207 -57.357643 -5.000010 +v -145.312088 -99.859276 -5.000016 +v -145.312088 -99.859276 -5.000016 +v -144.094421 -100.728157 -15.000016 +v -144.094421 -100.728157 -5.000016 +v -144.094421 -100.728157 -5.000016 +v -142.840744 -101.544220 -5.000017 +v -81.915207 -57.357643 -5.000010 +v -142.840744 -101.544220 -5.000017 +v -141.553345 -102.305954 -5.000017 +v -81.915207 -57.357643 -5.000010 +v -81.915207 -57.357643 -5.000010 +v -141.553345 -102.305954 -5.000017 +v -140.234558 -103.011986 -5.000017 +v -81.915207 -57.357643 -5.000010 +v -140.234558 -103.011986 -5.000017 +v -138.886810 -103.661034 -5.000017 +v -137.512558 -104.251884 -5.000017 +v -81.915207 -57.357643 -5.000010 +v -138.886810 -103.661034 -5.000017 +v -138.886810 -103.661034 -5.000017 +v -137.512558 -104.251884 -15.000017 +v -137.512558 -104.251884 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -81.915207 -57.357643 -5.000010 +v -137.512558 -104.251884 -5.000017 +v -136.114334 -104.783485 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -137.512558 -104.251884 -5.000017 +v -137.512558 -104.251884 -5.000017 +v -136.114334 -104.783485 -15.000017 +v -136.114334 -104.783485 -5.000017 +v -136.114334 -104.783485 -5.000017 +v -134.694656 -105.254852 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -136.114334 -104.783485 -5.000017 +v -134.694656 -105.254852 -15.000017 +v -134.694656 -105.254852 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -81.915207 -57.357643 -0.000009 +v -81.915207 -57.357643 -5.000010 +v -140.234558 -103.011986 -5.000017 +v -138.886810 -103.661034 -15.000017 +v -138.886810 -103.661034 -5.000017 +v -141.553345 -102.305954 -5.000017 +v -140.234558 -103.011986 -15.000017 +v -140.234558 -103.011986 -5.000017 +v -142.840744 -101.544220 -5.000017 +v -141.553345 -102.305954 -15.000016 +v -141.553345 -102.305954 -5.000017 +v -144.094421 -100.728157 -5.000016 +v -142.840744 -101.544220 -15.000016 +v -142.840744 -101.544220 -5.000017 +v -81.915207 -57.357643 -5.000010 +v -84.339142 -53.729961 -0.000009 +v -84.339142 -53.729961 -5.000009 +v -147.630554 -97.969490 -5.000016 +v -146.491516 -98.939156 -15.000016 +v -146.491516 -98.939156 -5.000016 +v -148.727097 -96.952026 -5.000016 +v -147.630554 -97.969490 -15.000016 +v -147.630554 -97.969490 -5.000016 +v -149.779205 -95.888641 -5.000016 +v -148.727097 -96.952026 -15.000016 +v -148.727097 -96.952026 -5.000016 +v -150.784882 -94.781273 -5.000015 +v -149.779205 -95.888641 -15.000015 +v -149.779205 -95.888641 -5.000016 +v -151.742325 -93.631943 -5.000015 +v -150.784882 -94.781273 -15.000015 +v -150.784882 -94.781273 -5.000015 +v -152.649796 -92.442749 -5.000015 +v -151.742325 -93.631943 -15.000015 +v -151.742325 -93.631943 -5.000015 +v -154.308212 -89.953545 -15.000014 +v -153.505615 -91.215874 -15.000015 +v -154.308212 -89.953545 -5.000015 +v -153.505615 -91.215874 -5.000015 +v -152.649796 -92.442749 -15.000015 +v -152.649796 -92.442749 -5.000015 +v -153.505615 -91.215874 -15.000015 +v -154.689117 -54.309795 -15.000009 +v 30.310890 161.119598 -14.999973 +v -152.649796 -92.442749 -15.000015 +v -151.742325 -93.631943 -15.000015 +v -152.649796 -92.442749 -5.000015 +v -151.742325 -93.631943 -15.000015 +v -150.784882 -94.781273 -15.000015 +v -151.742325 -93.631943 -5.000015 +v -150.784882 -94.781273 -15.000015 +v -149.779205 -95.888641 -15.000015 +v -150.784882 -94.781273 -5.000015 +v -149.779205 -95.888641 -15.000015 +v -148.727097 -96.952026 -15.000016 +v -149.779205 -95.888641 -5.000016 +v -148.727097 -96.952026 -15.000016 +v -147.630554 -97.969490 -15.000016 +v -148.727097 -96.952026 -5.000016 +v -147.630554 -97.969490 -15.000016 +v -146.491516 -98.939156 -15.000016 +v -147.630554 -97.969490 -5.000016 +v -146.491516 -98.939156 -15.000016 +v -145.312088 -99.859276 -15.000016 +v -146.491516 -98.939156 -5.000016 +v -145.312088 -99.859276 -15.000016 +v -144.094421 -100.728157 -15.000016 +v -145.312088 -99.859276 -5.000016 +v -144.094421 -100.728157 -15.000016 +v -142.840744 -101.544220 -15.000016 +v -144.094421 -100.728157 -5.000016 +v -142.840744 -101.544220 -15.000016 +v -141.553345 -102.305954 -15.000016 +v -142.840744 -101.544220 -5.000017 +v -141.553345 -102.305954 -15.000016 +v -140.234558 -103.011986 -15.000017 +v -141.553345 -102.305954 -5.000017 +v -140.234558 -103.011986 -15.000017 +v -138.886810 -103.661034 -15.000017 +v -140.234558 -103.011986 -5.000017 +v -138.886810 -103.661034 -15.000017 +v -137.512558 -104.251884 -15.000017 +v -138.886810 -103.661034 -5.000017 +v -137.512558 -104.251884 -15.000017 +v -136.114334 -104.783485 -15.000017 +v -137.512558 -104.251884 -5.000017 +v -136.114334 -104.783485 -15.000017 +v -134.694656 -105.254852 -15.000017 +v -136.114334 -104.783485 -5.000017 +v -134.694656 -105.254852 -15.000017 +v -133.256134 -105.665115 -15.000017 +v -134.694656 -105.254852 -5.000017 +v -134.694656 -105.254852 -5.000017 +v -133.256134 -105.665115 -15.000017 +v -133.256134 -105.665115 -5.000017 +v -128.853912 -106.522446 -15.000017 +v -130.333099 -106.299500 -15.000017 +v 30.310890 161.119598 -14.999973 +v -133.256134 -105.665115 -15.000017 +v -131.801392 -106.013550 -15.000017 +v -133.256134 -105.665115 -5.000017 +v -134.694656 -105.254852 -5.000017 +v -133.256134 -105.665115 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -131.801392 -106.013550 -5.000017 +v -130.333099 -106.299500 -15.000017 +v -130.333099 -106.299500 -5.000017 +v -79.335335 -60.876141 -5.000010 +v -128.853912 -106.522446 -5.000017 +v -76.604439 -64.278763 -5.000010 +v -76.604439 -64.278763 -5.000010 +v -79.335335 -60.876141 -0.000010 +v -79.335335 -60.876141 -5.000010 +v -130.333099 -106.299500 -15.000017 +v -128.853912 -106.522446 -15.000017 +v -130.333099 -106.299500 -5.000017 +v -127.366570 -106.681992 -15.000017 +v -128.853912 -106.522446 -15.000017 +v 30.310890 161.119598 -14.999973 +v -125.873756 -106.777832 -15.000017 +v -127.366570 -106.681992 -15.000017 +v 30.310890 161.119598 -14.999973 +v -125.873756 -106.777832 -15.000017 +v 30.310890 161.119598 -14.999973 +v -124.378220 -106.809799 -15.000017 +v -128.853912 -106.522446 -5.000017 +v -127.366570 -106.681992 -5.000017 +v -76.604439 -64.278763 -5.000010 +v -73.727737 -67.559021 -5.000011 +v -76.604439 -64.278763 -0.000010 +v -76.604439 -64.278763 -5.000010 +v -70.710678 -70.710678 -5.000011 +v -73.727737 -67.559021 -5.000011 +v -124.378220 -106.809799 -5.000017 +v -67.559021 -73.727737 -5.000012 +v -70.710678 -70.710678 -5.000011 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -64.278763 -76.604439 -5.000012 +v -67.559021 -73.727737 -5.000012 +v -64.278763 -76.604439 -5.000012 +v -67.559021 -73.727737 -0.000012 +v -67.559021 -73.727737 -5.000012 +v -60.876141 -79.335335 -5.000013 +v -64.278763 -76.604439 -5.000012 +v -124.378220 -106.809799 -5.000017 +v -57.357643 -81.915207 -5.000013 +v -60.876141 -79.335335 -5.000013 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -53.729961 -84.339142 -5.000014 +v -57.357643 -81.915207 -5.000013 +v -53.729961 -84.339142 -5.000014 +v -57.357643 -81.915207 -0.000013 +v -57.357643 -81.915207 -5.000013 +v -50.000000 -86.602539 -5.000014 +v -53.729961 -84.339142 -5.000014 +v -124.378220 -106.809799 -5.000017 +v -46.174862 -88.701088 -5.000014 +v -50.000000 -86.602539 -5.000014 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -42.261829 -90.630775 -5.000015 +v -46.174862 -88.701088 -5.000014 +v -42.261829 -90.630775 -5.000015 +v -46.174862 -88.701088 -0.000014 +v -46.174862 -88.701088 -5.000014 +v -38.268341 -92.387955 -5.000015 +v -42.261829 -90.630775 -5.000015 +v -124.378220 -106.809799 -5.000017 +v -34.202015 -93.969261 -5.000015 +v -38.268341 -92.387955 -5.000015 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -30.070581 -95.371696 -5.000016 +v -34.202015 -93.969261 -5.000015 +v -30.070581 -95.371696 -5.000016 +v -34.202015 -93.969261 -0.000015 +v -34.202015 -93.969261 -5.000015 +v -25.881905 -96.592583 -5.000016 +v -30.070581 -95.371696 -5.000016 +v -124.378220 -106.809799 -5.000017 +v -21.643961 -97.629601 -5.000016 +v -25.881905 -96.592583 -5.000016 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -17.364819 -98.480774 -5.000016 +v -21.643961 -97.629601 -5.000016 +v -17.364819 -98.480774 -5.000016 +v -21.643961 -97.629601 -0.000016 +v -21.643961 -97.629601 -5.000016 +v -13.052619 -99.144485 -5.000016 +v -17.364819 -98.480774 -5.000016 +v -124.378220 -106.809799 -5.000017 +v -8.715574 -99.619469 -5.000016 +v -13.052619 -99.144485 -5.000016 +v -124.378220 -106.809799 -5.000017 +v -124.378220 -106.809799 -5.000017 +v -4.361938 -99.904823 -5.000016 +v -8.715574 -99.619469 -5.000016 +v -4.361938 -99.904823 -5.000016 +v -8.715574 -99.619469 -0.000016 +v -8.715574 -99.619469 -5.000016 +v -8.715574 -99.619469 -5.000016 +v -13.052619 -99.144485 -0.000016 +v -13.052619 -99.144485 -5.000016 +v -13.052619 -99.144485 -5.000016 +v -17.364819 -98.480774 -0.000016 +v -17.364819 -98.480774 -5.000016 +v -21.643961 -97.629601 -5.000016 +v -25.881905 -96.592583 -0.000016 +v -25.881905 -96.592583 -5.000016 +v -25.881905 -96.592583 -5.000016 +v -30.070581 -95.371696 -0.000016 +v -30.070581 -95.371696 -5.000016 +v -34.202015 -93.969261 -5.000015 +v -38.268341 -92.387955 -0.000015 +v -38.268341 -92.387955 -5.000015 +v -38.268341 -92.387955 -5.000015 +v -42.261829 -90.630775 -0.000015 +v -42.261829 -90.630775 -5.000015 +v -46.174862 -88.701088 -5.000014 +v -50.000000 -86.602539 -0.000014 +v -50.000000 -86.602539 -5.000014 +v -50.000000 -86.602539 -5.000014 +v -53.729961 -84.339142 -0.000014 +v -53.729961 -84.339142 -5.000014 +v -57.357643 -81.915207 -5.000013 +v -60.876141 -79.335335 -0.000013 +v -60.876141 -79.335335 -5.000013 +v -60.876141 -79.335335 -5.000013 +v -64.278763 -76.604439 -0.000012 +v -64.278763 -76.604439 -5.000012 +v -67.559021 -73.727737 -5.000012 +v -70.710678 -70.710678 -0.000012 +v -70.710678 -70.710678 -5.000011 +v -70.710678 -70.710678 -5.000011 +v -73.727737 -67.559021 -0.000011 +v -73.727737 -67.559021 -5.000011 +v -125.873756 -106.777832 -15.000017 +v -124.378220 -106.809799 -15.000017 +v -125.873756 -106.777832 -5.000017 +v 0.000000 -100.000000 -5.000016 +v -4.361938 -99.904823 -5.000016 +v -124.378220 -106.809799 -5.000017 +v 0.000000 -100.000000 -5.000016 +v -4.361938 -99.904823 -0.000016 +v -4.361938 -99.904823 -5.000016 +v 4.361938 -99.904823 -5.000016 +v 0.000000 -100.000000 -0.000016 +v 0.000000 -100.000000 -5.000016 +v 8.715574 -99.619469 -5.000016 +v 4.361938 -99.904823 -0.000016 +v 4.361938 -99.904823 -5.000016 +v 13.052619 -99.144485 -5.000016 +v 8.715574 -99.619469 -0.000016 +v 8.715574 -99.619469 -5.000016 +v 17.364819 -98.480774 -5.000016 +v 13.052619 -99.144485 -0.000016 +v 13.052619 -99.144485 -5.000016 +v 21.643961 -97.629601 -5.000016 +v 17.364819 -98.480774 -0.000016 +v 17.364819 -98.480774 -5.000016 +v 25.881905 -96.592583 -5.000016 +v 21.643961 -97.629601 -0.000016 +v 21.643961 -97.629601 -5.000016 +v 30.070581 -95.371696 -5.000016 +v 25.881905 -96.592583 -0.000016 +v 25.881905 -96.592583 -5.000016 +v 34.202015 -93.969261 -5.000015 +v 30.070581 -95.371696 -0.000016 +v 30.070581 -95.371696 -5.000016 +v 38.268341 -92.387955 -5.000015 +v 34.202015 -93.969261 -0.000015 +v 34.202015 -93.969261 -5.000015 +v 42.261829 -90.630775 -5.000015 +v 38.268341 -92.387955 -0.000015 +v 38.268341 -92.387955 -5.000015 +v 46.174862 -88.701088 -5.000014 +v 42.261829 -90.630775 -0.000015 +v 42.261829 -90.630775 -5.000015 +v 50.000000 -86.602539 -5.000014 +v 46.174862 -88.701088 -0.000014 +v 46.174862 -88.701088 -5.000014 +v 53.729961 -84.339142 -5.000014 +v 50.000000 -86.602539 -0.000014 +v 50.000000 -86.602539 -5.000014 +v 57.357643 -81.915207 -5.000013 +v 53.729961 -84.339142 -0.000014 +v 53.729961 -84.339142 -5.000014 +v 60.876141 -79.335335 -5.000013 +v 57.357643 -81.915207 -0.000013 +v 57.357643 -81.915207 -5.000013 +v 64.278763 -76.604439 -5.000012 +v 60.876141 -79.335335 -0.000013 +v 60.876141 -79.335335 -5.000013 +v 67.559021 -73.727737 -5.000012 +v 64.278763 -76.604439 -0.000012 +v 64.278763 -76.604439 -5.000012 +v 70.710678 -70.710678 -5.000011 +v 67.559021 -73.727737 -0.000012 +v 67.559021 -73.727737 -5.000012 +v 73.727737 -67.559021 -5.000011 +v 70.710678 -70.710678 -0.000012 +v 70.710678 -70.710678 -5.000011 +v 76.604439 -64.278763 -5.000010 +v 73.727737 -67.559021 -0.000011 +v 73.727737 -67.559021 -5.000011 +v 125.904900 -106.776489 -5.000017 +v 127.428665 -106.676613 -5.000017 +v 76.604439 -64.278763 -5.000010 +v 76.604439 -64.278763 -5.000010 +v 127.428665 -106.676613 -5.000017 +v 79.335335 -60.876141 -5.000010 +v 79.335335 -60.876141 -5.000010 +v 76.604439 -64.278763 -0.000010 +v 76.604439 -64.278763 -5.000010 +v 127.428665 -106.676613 -5.000017 +v 128.946625 -106.510368 -5.000017 +v 79.335335 -60.876141 -5.000010 +v 79.335335 -60.876141 -5.000010 +v 128.946625 -106.510368 -5.000017 +v 130.455917 -106.278069 -5.000017 +v 130.455917 -106.278069 -5.000017 +v 131.953613 -105.980156 -5.000017 +v 79.335335 -60.876141 -5.000010 +v 131.953613 -105.980156 -5.000017 +v 133.436890 -105.617203 -5.000017 +v 79.335335 -60.876141 -5.000010 +v 79.335335 -60.876141 -5.000010 +v 133.436890 -105.617203 -5.000017 +v 134.902924 -105.189888 -5.000017 +v 136.348938 -104.699036 -5.000017 +v 79.335335 -60.876141 -5.000010 +v 134.902924 -105.189888 -5.000017 +v 134.902924 -105.189888 -5.000017 +v 136.348938 -104.699036 -15.000017 +v 136.348938 -104.699036 -5.000017 +v 136.348938 -104.699036 -15.000017 +v 137.772141 -104.145584 -15.000017 +v 136.348938 -104.699036 -5.000017 +v 136.348938 -104.699036 -5.000017 +v 137.772141 -104.145584 -15.000017 +v 137.772141 -104.145584 -5.000017 +v 137.772141 -104.145584 -5.000017 +v 81.915207 -57.357643 -5.000010 +v 136.348938 -104.699036 -5.000017 +v 137.772141 -104.145584 -5.000017 +v 139.169861 -103.530571 -5.000017 +v 81.915207 -57.357643 -5.000010 +v 139.169861 -103.530571 -5.000017 +v 140.539429 -102.855179 -5.000017 +v 81.915207 -57.357643 -5.000010 +v 81.915207 -57.357643 -5.000010 +v 140.539429 -102.855179 -5.000017 +v 141.878220 -102.120689 -5.000017 +v 141.878220 -102.120689 -5.000017 +v 143.183716 -101.328499 -5.000017 +v 81.915207 -57.357643 -5.000010 +v 143.183716 -101.328499 -5.000017 +v 144.453384 -100.480125 -5.000016 +v 81.915207 -57.357643 -5.000010 +v 81.915207 -57.357643 -5.000010 +v 144.453384 -100.480125 -5.000016 +v 145.684875 -99.577164 -5.000016 +v 84.339142 -53.729961 -5.000009 +v 81.915207 -57.357643 -5.000010 +v 145.684875 -99.577164 -5.000016 +v 146.875778 -98.621353 -5.000016 +v 84.339142 -53.729961 -5.000009 +v 145.684875 -99.577164 -5.000016 +v 145.684875 -99.577164 -5.000016 +v 146.875778 -98.621353 -15.000016 +v 146.875778 -98.621353 -5.000016 +v 146.875778 -98.621353 -15.000016 +v 148.023880 -97.614502 -15.000016 +v 146.875778 -98.621353 -5.000016 +v 146.875778 -98.621353 -5.000016 +v 148.023880 -97.614502 -15.000016 +v 148.023880 -97.614502 -5.000016 +v 148.023880 -97.614502 -15.000016 +v 149.126968 -96.558533 -15.000015 +v 148.023880 -97.614502 -5.000016 +v 148.023880 -97.614502 -5.000016 +v 149.126968 -96.558533 -15.000015 +v 149.126968 -96.558533 -5.000016 +v 148.023880 -97.614502 -5.000016 +v 149.126968 -96.558533 -5.000016 +v 84.339142 -53.729961 -5.000009 +v 84.339142 -53.729961 -5.000009 +v 149.126968 -96.558533 -5.000016 +v 150.182938 -95.455460 -5.000016 +v 84.339142 -53.729961 -5.000009 +v 150.182938 -95.455460 -5.000016 +v 151.189774 -94.307365 -5.000015 +v 84.339142 -53.729961 -5.000009 +v 151.189774 -94.307365 -5.000015 +v 86.602539 -50.000000 -5.000008 +v 86.602539 -50.000000 -5.000008 +v 84.339142 -53.729961 -0.000009 +v 84.339142 -53.729961 -5.000009 +v 151.189774 -94.307365 -5.000015 +v 152.145599 -93.116447 -5.000015 +v 86.602539 -50.000000 -5.000008 +v 86.602539 -50.000000 -5.000008 +v 152.145599 -93.116447 -5.000015 +v 153.048538 -91.884979 -5.000015 +v 153.048538 -91.884979 -5.000015 +v 153.896927 -90.615288 -5.000015 +v 86.602539 -50.000000 -5.000008 +v 153.896927 -90.615288 -5.000015 +v 154.689117 -89.309799 -5.000015 +v 86.602539 -50.000000 -5.000008 +v 154.689117 -89.309799 -5.000015 +v 155.423599 -87.971001 -5.000014 +v 86.602539 -50.000000 -5.000008 +v 86.602539 -50.000000 -5.000008 +v 155.423599 -87.971001 -5.000014 +v 156.098999 -86.601433 -5.000014 +v 156.098999 -86.601433 -5.000014 +v 156.714005 -85.203720 -5.000014 +v 86.602539 -50.000000 -5.000008 +v 156.714005 -85.203720 -5.000014 +v 157.267471 -83.780502 -5.000014 +v 86.602539 -50.000000 -5.000008 +v 86.602539 -50.000000 -5.000008 +v 157.267471 -83.780502 -5.000014 +v 88.701088 -46.174862 -5.000008 +v 88.701088 -46.174862 -5.000008 +v 86.602539 -50.000000 -0.000008 +v 86.602539 -50.000000 -5.000008 +v 157.267471 -83.780502 -5.000014 +v 157.758316 -82.334503 -5.000013 +v 88.701088 -46.174862 -5.000008 +v 88.701088 -46.174862 -5.000008 +v 157.758316 -82.334503 -5.000013 +v 158.185638 -80.868469 -5.000013 +v 88.701088 -46.174862 -5.000008 +v 158.185638 -80.868469 -5.000013 +v 158.548584 -79.385185 -5.000013 +v 88.701088 -46.174862 -5.000008 +v 158.548584 -79.385185 -5.000013 +v 158.846497 -77.887482 -5.000013 +v 159.078796 -76.378220 -5.000012 +v 88.701088 -46.174862 -5.000008 +v 158.846497 -77.887482 -5.000013 +v 158.846497 -77.887482 -5.000013 +v 159.078796 -76.378220 -15.000012 +v 159.078796 -76.378220 -5.000012 +v 90.630775 -42.261829 -5.000007 +v 88.701088 -46.174862 -5.000008 +v 159.078796 -76.378220 -5.000012 +v 159.245026 -74.860252 -5.000012 +v 90.630775 -42.261829 -5.000007 +v 159.078796 -76.378220 -5.000012 +v 159.078796 -76.378220 -5.000012 +v 159.245026 -74.860252 -15.000012 +v 159.245026 -74.860252 -5.000012 +v 159.245026 -74.860252 -5.000012 +v 159.344910 -73.336479 -5.000012 +v 90.630775 -42.261829 -5.000007 +v 159.344910 -73.336479 -5.000012 +v 159.378220 -71.809799 -5.000012 +v 90.630775 -42.261829 -5.000007 +v 90.630775 -42.261829 -5.000007 +v 159.378220 -71.809799 -5.000012 +v 159.344910 -70.283119 -5.000011 +v 90.630775 -42.261829 -5.000007 +v 159.344910 -70.283119 -5.000011 +v 159.245026 -68.759354 -5.000011 +v 159.078796 -67.241386 -5.000011 +v 90.630775 -42.261829 -5.000007 +v 159.245026 -68.759354 -5.000011 +v 159.245026 -68.759354 -5.000011 +v 159.078796 -67.241386 -15.000010 +v 159.078796 -67.241386 -5.000011 +v 92.387955 -38.268341 -5.000006 +v 90.630775 -42.261829 -5.000007 +v 159.078796 -67.241386 -5.000011 +v 158.846497 -65.732117 -5.000010 +v 92.387955 -38.268341 -5.000006 +v 159.078796 -67.241386 -5.000011 +v 159.078796 -67.241386 -5.000011 +v 158.846497 -65.732117 -15.000010 +v 158.846497 -65.732117 -5.000010 +v 158.846497 -65.732117 -5.000010 +v 158.548584 -64.234413 -5.000010 +v 92.387955 -38.268341 -5.000006 +v 158.548584 -64.234413 -5.000010 +v 158.185638 -62.751137 -5.000010 +v 92.387955 -38.268341 -5.000006 +v 92.387955 -38.268341 -5.000006 +v 158.185638 -62.751137 -5.000010 +v 157.758316 -61.285099 -5.000010 +v 157.758316 -61.285099 -5.000010 +v 157.267471 -59.839096 -5.000010 +v 92.387955 -38.268341 -5.000006 +v 157.758316 -61.285099 -5.000010 +v 157.267471 -59.839092 -15.000010 +v 157.267471 -59.839096 -5.000010 +v 158.185638 -62.751137 -5.000010 +v 157.758316 -61.285095 -15.000010 +v 157.758316 -61.285099 -5.000010 +v 158.548584 -64.234413 -5.000010 +v 158.185638 -62.751133 -15.000010 +v 158.185638 -62.751137 -5.000010 +v 158.846497 -65.732117 -5.000010 +v 158.548584 -64.234413 -15.000010 +v 158.548584 -64.234413 -5.000010 +v 92.387955 -38.268341 -5.000006 +v 90.630775 -42.261829 -0.000007 +v 90.630775 -42.261829 -5.000007 +v 159.344910 -70.283119 -5.000011 +v 159.245026 -68.759354 -15.000011 +v 159.245026 -68.759354 -5.000011 +v 159.378220 -71.809799 -5.000012 +v 159.344910 -70.283119 -15.000011 +v 159.344910 -70.283119 -5.000011 +v 159.344910 -73.336479 -5.000012 +v 159.378220 -71.809799 -15.000011 +v 159.378220 -71.809799 -5.000012 +v 159.245026 -74.860252 -5.000012 +v 159.344910 -73.336479 -15.000012 +v 159.344910 -73.336479 -5.000012 +v 90.630775 -42.261829 -5.000007 +v 88.701088 -46.174862 -0.000008 +v 88.701088 -46.174862 -5.000008 +v 158.548584 -79.385185 -5.000013 +v 158.846497 -77.887482 -15.000012 +v 158.846497 -77.887482 -5.000013 +v 158.548584 -79.385185 -15.000013 +v 158.846497 -77.887482 -15.000012 +v 158.548584 -79.385185 -5.000013 +v 158.548584 -79.385185 -15.000013 +v 146.875778 -98.621353 -15.000016 +v 158.846497 -77.887482 -15.000012 +v 146.875778 -98.621353 -15.000016 +v 145.684875 -99.577164 -15.000016 +v 158.846497 -77.887482 -15.000012 +v 158.846497 -77.887482 -15.000012 +v 145.684875 -99.577164 -15.000016 +v 144.453384 -100.480125 -15.000016 +v 144.453384 -100.480125 -15.000016 +v 143.183716 -101.328499 -15.000016 +v 158.846497 -77.887482 -15.000012 +v 143.183716 -101.328499 -15.000016 +v 141.878220 -102.120689 -15.000016 +v 158.846497 -77.887482 -15.000012 +v 158.846497 -77.887482 -15.000012 +v 141.878220 -102.120689 -15.000016 +v 140.539429 -102.855179 -15.000017 +v 140.539429 -102.855179 -15.000017 +v 139.169861 -103.530571 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 139.169861 -103.530571 -15.000017 +v 137.772141 -104.145584 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 139.169861 -103.530571 -15.000017 +v 140.539429 -102.855179 -15.000017 +v 139.169861 -103.530571 -5.000017 +v 140.539429 -102.855179 -15.000017 +v 141.878220 -102.120689 -15.000016 +v 140.539429 -102.855179 -5.000017 +v 141.878220 -102.120689 -15.000016 +v 143.183716 -101.328499 -15.000016 +v 141.878220 -102.120689 -5.000017 +v 143.183716 -101.328499 -15.000016 +v 144.453384 -100.480125 -15.000016 +v 143.183716 -101.328499 -5.000017 +v 144.453384 -100.480125 -15.000016 +v 145.684875 -99.577164 -15.000016 +v 144.453384 -100.480125 -5.000016 +v 158.548584 -79.385185 -15.000013 +v 158.185638 -80.868469 -15.000013 +v 146.875778 -98.621353 -15.000016 +v 158.185638 -80.868469 -15.000013 +v 157.758316 -82.334503 -15.000013 +v 146.875778 -98.621353 -15.000016 +v 157.758316 -82.334503 -15.000013 +v 157.267471 -83.780502 -15.000013 +v 146.875778 -98.621353 -15.000016 +v 157.267471 -83.780502 -15.000013 +v 156.714005 -85.203720 -15.000014 +v 146.875778 -98.621353 -15.000016 +v 146.875778 -98.621353 -15.000016 +v 156.714005 -85.203720 -15.000014 +v 156.098999 -86.601433 -15.000014 +v 156.098999 -86.601433 -15.000014 +v 155.423599 -87.971001 -15.000014 +v 146.875778 -98.621353 -15.000016 +v 155.423599 -87.971001 -15.000014 +v 154.689117 -89.309799 -15.000014 +v 146.875778 -98.621353 -15.000016 +v 146.875778 -98.621353 -15.000016 +v 154.689117 -89.309799 -15.000014 +v 153.896927 -90.615288 -15.000014 +v 153.896927 -90.615288 -15.000014 +v 153.048538 -91.884979 -15.000015 +v 146.875778 -98.621353 -15.000016 +v 153.048538 -91.884979 -15.000015 +v 152.145599 -93.116447 -15.000015 +v 146.875778 -98.621353 -15.000016 +v 146.875778 -98.621353 -15.000016 +v 152.145599 -93.116447 -15.000015 +v 151.189774 -94.307365 -15.000015 +v 151.189774 -94.307365 -15.000015 +v 150.182938 -95.455460 -15.000015 +v 146.875778 -98.621353 -15.000016 +v 150.182938 -95.455460 -15.000015 +v 149.126968 -96.558533 -15.000015 +v 146.875778 -98.621353 -15.000016 +v 150.182938 -95.455460 -15.000015 +v 151.189774 -94.307365 -15.000015 +v 150.182938 -95.455460 -5.000016 +v 151.189774 -94.307365 -15.000015 +v 152.145599 -93.116447 -15.000015 +v 151.189774 -94.307365 -5.000015 +v 152.145599 -93.116447 -15.000015 +v 153.048538 -91.884979 -15.000015 +v 152.145599 -93.116447 -5.000015 +v 153.048538 -91.884979 -15.000015 +v 153.896927 -90.615288 -15.000014 +v 153.048538 -91.884979 -5.000015 +v 153.896927 -90.615288 -15.000014 +v 154.689117 -89.309799 -15.000014 +v 153.896927 -90.615288 -5.000015 +v 154.689117 -89.309799 -15.000014 +v 155.423599 -87.971001 -15.000014 +v 154.689117 -89.309799 -5.000015 +v 155.423599 -87.971001 -15.000014 +v 156.098999 -86.601433 -15.000014 +v 155.423599 -87.971001 -5.000014 +v 156.098999 -86.601433 -15.000014 +v 156.714005 -85.203720 -15.000014 +v 156.098999 -86.601433 -5.000014 +v 156.714005 -85.203720 -15.000014 +v 157.267471 -83.780502 -15.000013 +v 156.714005 -85.203720 -5.000014 +v 157.267471 -83.780502 -15.000013 +v 157.758316 -82.334503 -15.000013 +v 157.267471 -83.780502 -5.000014 +v 157.758316 -82.334503 -15.000013 +v 158.185638 -80.868469 -15.000013 +v 157.758316 -82.334503 -5.000013 +v 158.185638 -80.868469 -15.000013 +v 158.548584 -79.385185 -15.000013 +v 158.185638 -80.868469 -5.000013 +v 158.185638 -80.868469 -5.000013 +v 158.548584 -79.385185 -15.000013 +v 158.548584 -79.385185 -5.000013 +v 157.758316 -82.334503 -5.000013 +v 158.185638 -80.868469 -15.000013 +v 158.185638 -80.868469 -5.000013 +v 157.267471 -83.780502 -5.000014 +v 157.758316 -82.334503 -15.000013 +v 157.758316 -82.334503 -5.000013 +v 156.714005 -85.203720 -5.000014 +v 157.267471 -83.780502 -15.000013 +v 157.267471 -83.780502 -5.000014 +v 156.098999 -86.601433 -5.000014 +v 156.714005 -85.203720 -15.000014 +v 156.714005 -85.203720 -5.000014 +v 155.423599 -87.971001 -5.000014 +v 156.098999 -86.601433 -15.000014 +v 156.098999 -86.601433 -5.000014 +v 154.689117 -89.309799 -5.000015 +v 155.423599 -87.971001 -15.000014 +v 155.423599 -87.971001 -5.000014 +v 153.896927 -90.615288 -5.000015 +v 154.689117 -89.309799 -15.000014 +v 154.689117 -89.309799 -5.000015 +v 153.048538 -91.884979 -5.000015 +v 153.896927 -90.615288 -15.000014 +v 153.896927 -90.615288 -5.000015 +v 152.145599 -93.116447 -5.000015 +v 153.048538 -91.884979 -15.000015 +v 153.048538 -91.884979 -5.000015 +v 151.189774 -94.307365 -5.000015 +v 152.145599 -93.116447 -15.000015 +v 152.145599 -93.116447 -5.000015 +v 150.182938 -95.455460 -5.000016 +v 151.189774 -94.307365 -15.000015 +v 151.189774 -94.307365 -5.000015 +v 149.126968 -96.558533 -5.000016 +v 150.182938 -95.455460 -15.000015 +v 150.182938 -95.455460 -5.000016 +v 149.126968 -96.558533 -15.000015 +v 150.182938 -95.455460 -15.000015 +v 149.126968 -96.558533 -5.000016 +v 146.875778 -98.621353 -15.000016 +v 149.126968 -96.558533 -15.000015 +v 148.023880 -97.614502 -15.000016 +v 145.684875 -99.577164 -15.000016 +v 146.875778 -98.621353 -15.000016 +v 145.684875 -99.577164 -5.000016 +v 146.875778 -98.621353 -5.000016 +v 148.023880 -97.614502 -5.000016 +v 84.339142 -53.729961 -5.000009 +v 84.339142 -53.729961 -5.000009 +v 81.915207 -57.357643 -0.000009 +v 81.915207 -57.357643 -5.000010 +v 144.453384 -100.480125 -5.000016 +v 145.684875 -99.577164 -15.000016 +v 145.684875 -99.577164 -5.000016 +v 143.183716 -101.328499 -5.000017 +v 144.453384 -100.480125 -15.000016 +v 144.453384 -100.480125 -5.000016 +v 141.878220 -102.120689 -5.000017 +v 143.183716 -101.328499 -15.000016 +v 143.183716 -101.328499 -5.000017 +v 140.539429 -102.855179 -5.000017 +v 141.878220 -102.120689 -15.000016 +v 141.878220 -102.120689 -5.000017 +v 139.169861 -103.530571 -5.000017 +v 140.539429 -102.855179 -15.000017 +v 140.539429 -102.855179 -5.000017 +v 137.772141 -104.145584 -5.000017 +v 139.169861 -103.530571 -15.000017 +v 139.169861 -103.530571 -5.000017 +v 137.772141 -104.145584 -15.000017 +v 139.169861 -103.530571 -15.000017 +v 137.772141 -104.145584 -5.000017 +v 158.846497 -77.887482 -15.000012 +v 137.772141 -104.145584 -15.000017 +v 136.348938 -104.699036 -15.000017 +v 136.348938 -104.699036 -15.000017 +v 134.902924 -105.189888 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 134.902924 -105.189888 -15.000017 +v 133.436890 -105.617203 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 158.846497 -77.887482 -15.000012 +v 133.436890 -105.617203 -15.000017 +v 131.953613 -105.980156 -15.000017 +v 131.953613 -105.980156 -15.000017 +v 130.455917 -106.278069 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 130.455917 -106.278069 -15.000017 +v 128.946625 -106.510368 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 128.946625 -106.510368 -15.000017 +v 130.455917 -106.278069 -15.000017 +v 128.946625 -106.510368 -5.000017 +v 130.455917 -106.278069 -15.000017 +v 131.953613 -105.980156 -15.000017 +v 130.455917 -106.278069 -5.000017 +v 131.953613 -105.980156 -15.000017 +v 133.436890 -105.617203 -15.000017 +v 131.953613 -105.980156 -5.000017 +v 133.436890 -105.617203 -15.000017 +v 134.902924 -105.189888 -15.000017 +v 133.436890 -105.617203 -5.000017 +v 134.902924 -105.189888 -15.000017 +v 136.348938 -104.699036 -15.000017 +v 134.902924 -105.189888 -5.000017 +v 81.915207 -57.357643 -5.000010 +v 79.335335 -60.876141 -5.000010 +v 136.348938 -104.699036 -5.000017 +v 81.915207 -57.357643 -5.000010 +v 79.335335 -60.876141 -0.000010 +v 79.335335 -60.876141 -5.000010 +v 133.436890 -105.617203 -5.000017 +v 134.902924 -105.189888 -15.000017 +v 134.902924 -105.189888 -5.000017 +v 131.953613 -105.980156 -5.000017 +v 133.436890 -105.617203 -15.000017 +v 133.436890 -105.617203 -5.000017 +v 130.455917 -106.278069 -5.000017 +v 131.953613 -105.980156 -15.000017 +v 131.953613 -105.980156 -5.000017 +v 128.946625 -106.510368 -5.000017 +v 130.455917 -106.278069 -15.000017 +v 130.455917 -106.278069 -5.000017 +v 127.428665 -106.676613 -5.000017 +v 128.946625 -106.510368 -15.000017 +v 128.946625 -106.510368 -5.000017 +v 127.428665 -106.676613 -15.000017 +v 128.946625 -106.510368 -15.000017 +v 127.428665 -106.676613 -5.000017 +v 125.904900 -106.776489 -5.000017 +v 127.428665 -106.676613 -15.000017 +v 127.428665 -106.676613 -5.000017 +v 158.846497 -77.887482 -15.000012 +v 128.946625 -106.510368 -15.000017 +v 127.428665 -106.676613 -15.000017 +v 124.378220 -106.809799 -5.000017 +v 124.378220 -106.809799 -15.000017 +v 125.904900 -106.776489 -15.000017 +v 158.846497 -77.887482 -15.000012 +v 159.078796 -76.378220 -15.000012 +v 158.846497 -77.887482 -5.000013 +v 159.078796 -76.378220 -15.000012 +v 159.245026 -74.860252 -15.000012 +v 159.078796 -76.378220 -5.000012 +v 159.245026 -74.860252 -15.000012 +v 159.344910 -73.336479 -15.000012 +v 159.245026 -74.860252 -5.000012 +v 159.344910 -73.336479 -15.000012 +v 159.378220 -71.809799 -15.000011 +v 159.344910 -73.336479 -5.000012 +v 159.378220 -71.809799 -15.000011 +v 159.344910 -70.283119 -15.000011 +v 159.378220 -71.809799 -5.000012 +v 159.344910 -70.283119 -15.000011 +v 159.245026 -68.759354 -15.000011 +v 159.344910 -70.283119 -5.000011 +v 159.245026 -68.759354 -15.000011 +v 159.078796 -67.241386 -15.000010 +v 159.245026 -68.759354 -5.000011 +v 159.078796 -67.241386 -15.000010 +v 158.846497 -65.732117 -15.000010 +v 159.078796 -67.241386 -5.000011 +v 158.846497 -65.732117 -15.000010 +v 158.548584 -64.234413 -15.000010 +v 158.846497 -65.732117 -5.000010 +v 158.548584 -64.234413 -15.000010 +v 158.185638 -62.751133 -15.000010 +v 158.548584 -64.234413 -5.000010 +v 158.185638 -62.751133 -15.000010 +v 157.758316 -61.285095 -15.000010 +v 158.185638 -62.751137 -5.000010 +v 157.758316 -61.285095 -15.000010 +v 157.267471 -59.839092 -15.000010 +v 157.758316 -61.285099 -5.000010 +v 157.267471 -59.839092 -15.000010 +v 156.714005 -58.415874 -15.000010 +v 157.267471 -59.839096 -5.000010 +v 157.267471 -59.839096 -5.000010 +v 156.714005 -58.415874 -15.000010 +v 156.714005 -58.415878 -5.000010 +v 156.714005 -58.415874 -15.000010 +v 156.098999 -57.018158 -15.000010 +v 156.714005 -58.415878 -5.000010 +v 154.689117 -54.309795 -15.000009 +v 155.423599 -55.648594 -15.000010 +v 124.378220 -106.809799 -15.000017 +v 156.714005 -58.415878 -5.000010 +v 156.098999 -57.018158 -15.000010 +v 156.098999 -57.018162 -5.000009 +v 157.267471 -59.839096 -5.000010 +v 156.714005 -58.415878 -5.000010 +v 92.387955 -38.268341 -5.000006 +v 92.387955 -38.268341 -0.000006 +v 90.630775 -42.261829 -0.000007 +v 92.387955 -38.268341 -5.000006 +v 90.630775 -42.261829 -0.000007 +v 88.701088 -46.174862 -0.000008 +v 90.630775 -42.261829 -5.000007 +v 88.701088 -46.174862 -0.000008 +v 86.602539 -50.000000 -0.000008 +v 88.701088 -46.174862 -5.000008 +v 86.602539 -50.000000 -0.000008 +v 84.339142 -53.729961 -0.000009 +v 86.602539 -50.000000 -5.000008 +v 84.339142 -53.729961 -0.000009 +v 81.915207 -57.357643 -0.000009 +v 84.339142 -53.729961 -5.000009 +v 81.915207 -57.357643 -0.000009 +v 79.335335 -60.876141 -0.000010 +v 81.915207 -57.357643 -5.000010 +v 79.335335 -60.876141 -0.000010 +v 76.604439 -64.278763 -0.000010 +v 79.335335 -60.876141 -5.000010 +v 76.604439 -64.278763 -0.000010 +v 73.727737 -67.559021 -0.000011 +v 76.604439 -64.278763 -5.000010 +v 73.727737 -67.559021 -0.000011 +v 70.710678 -70.710678 -0.000012 +v 73.727737 -67.559021 -5.000011 +v 70.710678 -70.710678 -0.000012 +v 67.559021 -73.727737 -0.000012 +v 70.710678 -70.710678 -5.000011 +v 67.559021 -73.727737 -0.000012 +v 64.278763 -76.604439 -0.000012 +v 67.559021 -73.727737 -5.000012 +v 64.278763 -76.604439 -0.000012 +v 60.876141 -79.335335 -0.000013 +v 64.278763 -76.604439 -5.000012 +v 60.876141 -79.335335 -0.000013 +v 57.357643 -81.915207 -0.000013 +v 60.876141 -79.335335 -5.000013 +v 57.357643 -81.915207 -0.000013 +v 53.729961 -84.339142 -0.000014 +v 57.357643 -81.915207 -5.000013 +v 53.729961 -84.339142 -0.000014 +v 50.000000 -86.602539 -0.000014 +v 53.729961 -84.339142 -5.000014 +v 50.000000 -86.602539 -0.000014 +v 46.174862 -88.701088 -0.000014 +v 50.000000 -86.602539 -5.000014 +v 46.174862 -88.701088 -0.000014 +v 42.261829 -90.630775 -0.000015 +v 46.174862 -88.701088 -5.000014 +v 42.261829 -90.630775 -0.000015 +v 38.268341 -92.387955 -0.000015 +v 42.261829 -90.630775 -5.000015 +v 38.268341 -92.387955 -0.000015 +v 34.202015 -93.969261 -0.000015 +v 38.268341 -92.387955 -5.000015 +v 34.202015 -93.969261 -0.000015 +v 30.070581 -95.371696 -0.000016 +v 34.202015 -93.969261 -5.000015 +v 30.070581 -95.371696 -0.000016 +v 25.881905 -96.592583 -0.000016 +v 30.070581 -95.371696 -5.000016 +v 25.881905 -96.592583 -0.000016 +v 21.643961 -97.629601 -0.000016 +v 25.881905 -96.592583 -5.000016 +v 21.643961 -97.629601 -0.000016 +v 17.364819 -98.480774 -0.000016 +v 21.643961 -97.629601 -5.000016 +v 17.364819 -98.480774 -0.000016 +v 13.052619 -99.144485 -0.000016 +v 17.364819 -98.480774 -5.000016 +v 13.052619 -99.144485 -0.000016 +v 8.715574 -99.619469 -0.000016 +v 13.052619 -99.144485 -5.000016 +v 8.715574 -99.619469 -0.000016 +v 4.361938 -99.904823 -0.000016 +v 8.715574 -99.619469 -5.000016 +v 4.361938 -99.904823 -0.000016 +v 0.000000 -100.000000 -0.000016 +v 4.361938 -99.904823 -5.000016 +v 0.000000 -100.000000 -0.000016 +v -4.361938 -99.904823 -0.000016 +v 0.000000 -100.000000 -5.000016 +v -4.361938 -99.904823 -0.000016 +v -8.715574 -99.619469 -0.000016 +v -4.361938 -99.904823 -5.000016 +v -8.715574 -99.619469 -0.000016 +v -13.052619 -99.144485 -0.000016 +v -8.715574 -99.619469 -5.000016 +v -13.052619 -99.144485 -0.000016 +v -17.364819 -98.480774 -0.000016 +v -13.052619 -99.144485 -5.000016 +v -17.364819 -98.480774 -0.000016 +v -21.643961 -97.629601 -0.000016 +v -17.364819 -98.480774 -5.000016 +v -21.643961 -97.629601 -0.000016 +v -25.881905 -96.592583 -0.000016 +v -21.643961 -97.629601 -5.000016 +v -25.881905 -96.592583 -0.000016 +v -30.070581 -95.371696 -0.000016 +v -25.881905 -96.592583 -5.000016 +v -30.070581 -95.371696 -0.000016 +v -34.202015 -93.969261 -0.000015 +v -30.070581 -95.371696 -5.000016 +v -34.202015 -93.969261 -0.000015 +v -38.268341 -92.387955 -0.000015 +v -34.202015 -93.969261 -5.000015 +v -38.268341 -92.387955 -0.000015 +v -42.261829 -90.630775 -0.000015 +v -38.268341 -92.387955 -5.000015 +v -42.261829 -90.630775 -0.000015 +v -46.174862 -88.701088 -0.000014 +v -42.261829 -90.630775 -5.000015 +v -46.174862 -88.701088 -0.000014 +v -50.000000 -86.602539 -0.000014 +v -46.174862 -88.701088 -5.000014 +v -50.000000 -86.602539 -0.000014 +v -53.729961 -84.339142 -0.000014 +v -50.000000 -86.602539 -5.000014 +v -53.729961 -84.339142 -0.000014 +v -57.357643 -81.915207 -0.000013 +v -53.729961 -84.339142 -5.000014 +v -57.357643 -81.915207 -0.000013 +v -60.876141 -79.335335 -0.000013 +v -57.357643 -81.915207 -5.000013 +v -60.876141 -79.335335 -0.000013 +v -64.278763 -76.604439 -0.000012 +v -60.876141 -79.335335 -5.000013 +v -64.278763 -76.604439 -0.000012 +v -67.559021 -73.727737 -0.000012 +v -64.278763 -76.604439 -5.000012 +v -67.559021 -73.727737 -0.000012 +v -70.710678 -70.710678 -0.000012 +v -67.559021 -73.727737 -5.000012 +v -70.710678 -70.710678 -0.000012 +v -73.727737 -67.559021 -0.000011 +v -70.710678 -70.710678 -5.000011 +v -73.727737 -67.559021 -0.000011 +v -76.604439 -64.278763 -0.000010 +v -73.727737 -67.559021 -5.000011 +v -76.604439 -64.278763 -0.000010 +v -79.335335 -60.876141 -0.000010 +v -76.604439 -64.278763 -5.000010 +v -79.335335 -60.876141 -0.000010 +v -81.915207 -57.357643 -0.000009 +v -79.335335 -60.876141 -5.000010 +v -81.915207 -57.357643 -0.000009 +v -84.339142 -53.729961 -0.000009 +v -81.915207 -57.357643 -5.000010 +v -84.339142 -53.729961 -0.000009 +v -86.602539 -50.000000 -0.000008 +v -84.339142 -53.729961 -5.000009 +v -86.602539 -50.000000 -0.000008 +v -88.701088 -46.174862 -0.000008 +v -86.602539 -50.000000 -5.000008 +v -88.701088 -46.174862 -0.000008 +v -90.630775 -42.261829 -0.000007 +v -88.701088 -46.174862 -5.000008 +v -90.630775 -42.261829 -0.000007 +v -92.387955 -38.268341 -0.000006 +v -90.630775 -42.261829 -5.000007 +v -92.387955 -38.268341 -0.000006 +v -93.969261 -34.202015 -0.000006 +v -92.387955 -38.268341 -5.000006 +v -93.969261 -34.202015 -0.000006 +v -95.371696 -30.070581 -0.000005 +v -93.969261 -34.202015 -5.000006 +v -95.371696 -30.070581 -0.000005 +v -96.592583 -25.881905 -0.000004 +v -95.371696 -30.070581 -5.000005 +v -96.592583 -25.881905 -0.000004 +v -97.629601 -21.643961 -0.000004 +v -96.592583 -25.881905 -5.000004 +v -97.629601 -21.643961 -0.000004 +v -98.480774 -17.364819 -0.000003 +v -97.629601 -21.643961 -5.000003 +v -98.480774 -17.364819 -0.000003 +v -99.144485 -13.052619 -0.000002 +v -98.480774 -17.364819 -5.000003 +v -99.144485 -13.052619 -0.000002 +v -99.619469 -8.715574 -0.000001 +v -99.144485 -13.052618 -5.000002 +v -99.619469 -8.715574 -0.000001 +v -99.904823 -4.361938 -0.000001 +v -99.619469 -8.715573 -5.000001 +v -99.904823 -4.361938 -0.000001 +v -100.000000 0.000000 0.000000 +v -99.904823 -4.361937 -5.000000 +v -100.000000 0.000000 0.000000 +v -99.904823 4.361938 0.000001 +v -100.000000 0.000001 -5.000000 +v -99.904823 4.361938 0.000001 +v -99.619469 8.715574 0.000001 +v -99.904823 4.361939 -5.000000 +v -99.619469 8.715574 0.000001 +v -99.144485 13.052619 0.000002 +v -99.619469 8.715575 -4.999999 +v -99.144485 13.052619 0.000002 +v -98.480774 17.364819 0.000003 +v -99.144485 13.052620 -4.999998 +v -98.480774 17.364819 0.000003 +v -97.629601 21.643961 0.000004 +v -98.480774 17.364819 -4.999997 +v -97.629601 21.643961 0.000004 +v -96.592583 25.881905 0.000004 +v -97.629601 21.643961 -4.999997 +v -96.592583 25.881905 0.000004 +v -95.371696 30.070581 0.000005 +v -96.592583 25.881905 -4.999996 +v -95.371696 30.070581 0.000005 +v -93.969261 34.202015 0.000006 +v -95.371696 30.070581 -4.999995 +v -93.969261 34.202015 0.000006 +v -92.387955 38.268341 0.000006 +v -93.969261 34.202015 -4.999994 +v -92.387955 38.268341 0.000006 +v -90.630775 42.261829 0.000007 +v -92.387955 38.268341 -4.999994 +v -90.630775 42.261829 0.000007 +v -88.701088 46.174862 0.000008 +v -90.630775 42.261829 -4.999993 +v -88.701088 46.174862 0.000008 +v -86.602539 50.000000 0.000008 +v -88.701088 46.174862 -4.999992 +v -86.602539 50.000000 0.000008 +v -84.339142 53.729961 0.000009 +v -86.602539 50.000000 -4.999992 +v -84.339142 53.729961 0.000009 +v -81.915207 57.357643 0.000009 +v -84.339142 53.729961 -4.999991 +v -81.915207 57.357643 0.000009 +v -79.335335 60.876141 0.000010 +v -81.915207 57.357643 -4.999990 +v -79.335335 60.876141 0.000010 +v -76.604439 64.278763 0.000010 +v -79.335335 60.876141 -4.999990 +v -76.604439 64.278763 0.000010 +v -73.727737 67.559021 0.000011 +v -76.604439 64.278763 -4.999990 +v -73.727737 67.559021 0.000011 +v -70.710678 70.710678 0.000012 +v -73.727737 67.559021 -4.999989 +v -70.710678 70.710678 0.000012 +v -67.559021 73.727737 0.000012 +v -70.710678 70.710678 -4.999989 +v -67.559021 73.727737 0.000012 +v -64.278763 76.604439 0.000012 +v -67.559021 73.727737 -4.999988 +v -64.278763 76.604439 0.000012 +v -60.876141 79.335335 0.000013 +v -64.278763 76.604439 -4.999988 +v -60.876141 79.335335 0.000013 +v -57.357643 81.915207 0.000013 +v -60.876141 79.335335 -4.999987 +v -57.357643 81.915207 0.000013 +v -53.729961 84.339142 0.000014 +v -57.357643 81.915207 -4.999987 +v -53.729961 84.339142 0.000014 +v -50.000000 86.602539 0.000014 +v -53.729961 84.339142 -4.999986 +v -50.000000 86.602539 0.000014 +v -46.174862 88.701088 0.000014 +v -50.000000 86.602539 -4.999986 +v -46.174862 88.701088 0.000014 +v -42.261829 90.630775 0.000015 +v -46.174862 88.701088 -4.999986 +v -42.261829 90.630775 0.000015 +v -38.268341 92.387955 0.000015 +v -42.261829 90.630775 -4.999985 +v -38.268341 92.387955 0.000015 +v -34.202015 93.969261 0.000015 +v -38.268341 92.387955 -4.999985 +v -34.202015 93.969261 0.000015 +v -30.070581 95.371696 0.000016 +v -34.202015 93.969261 -4.999985 +v -30.070581 95.371696 0.000016 +v -25.881905 96.592583 0.000016 +v -30.070581 95.371696 -4.999984 +v -25.881905 96.592583 0.000016 +v -21.643961 97.629601 0.000016 +v -25.881905 96.592583 -4.999984 +v -21.643961 97.629601 0.000016 +v -17.364819 98.480774 0.000016 +v -21.643961 97.629601 -4.999984 +v -17.364819 98.480774 0.000016 +v -13.052619 99.144485 0.000016 +v -17.364819 98.480774 -4.999984 +v -13.052619 99.144485 0.000016 +v -8.715574 99.619469 0.000016 +v -13.052619 99.144485 -4.999984 +v -8.715574 99.619469 0.000016 +v -4.361938 99.904823 0.000016 +v -8.715574 99.619469 -4.999984 +v -4.361938 99.904823 0.000016 +v 0.000000 100.000000 0.000016 +v -4.361938 99.904823 -4.999984 +v 0.000000 100.000000 0.000016 +v 4.361938 99.904823 0.000016 +v 0.000000 100.000000 -4.999984 +v 4.361938 99.904823 0.000016 +v 8.715574 99.619469 0.000016 +v 4.361938 99.904823 -4.999984 +v 8.715574 99.619469 0.000016 +v 13.052619 99.144485 0.000016 +v 8.715574 99.619469 -4.999984 +v 13.052619 99.144485 0.000016 +v 17.364819 98.480774 0.000016 +v 13.052619 99.144485 -4.999984 +v 17.364819 98.480774 0.000016 +v 21.643961 97.629601 0.000016 +v 17.364819 98.480774 -4.999984 +v 21.643961 97.629601 0.000016 +v 25.881905 96.592583 0.000016 +v 21.643961 97.629601 -4.999984 +v 25.881905 96.592583 0.000016 +v 30.070581 95.371696 0.000016 +v 25.881905 96.592583 -4.999984 +v 30.070581 95.371696 0.000016 +v 34.202015 93.969261 0.000015 +v 30.070581 95.371696 -4.999984 +v 34.202015 93.969261 0.000015 +v 38.268341 92.387955 0.000015 +v 34.202015 93.969261 -4.999985 +v 38.268341 92.387955 0.000015 +v 42.261829 90.630775 0.000015 +v 38.268341 92.387955 -4.999985 +v 42.261829 90.630775 0.000015 +v 46.174862 88.701088 0.000014 +v 42.261829 90.630775 -4.999985 +v 46.174862 88.701088 0.000014 +v 50.000000 86.602539 0.000014 +v 46.174862 88.701088 -4.999986 +v 50.000000 86.602539 0.000014 +v 53.729961 84.339142 0.000014 +v 50.000000 86.602539 -4.999986 +v 53.729961 84.339142 0.000014 +v 57.357643 81.915207 0.000013 +v 53.729961 84.339142 -4.999986 +v 57.357643 81.915207 0.000013 +v 60.876141 79.335335 0.000013 +v 57.357643 81.915207 -4.999987 +v 60.876141 79.335335 0.000013 +v 64.278763 76.604439 0.000012 +v 60.876141 79.335335 -4.999987 +v 64.278763 76.604439 0.000012 +v 67.559021 73.727737 0.000012 +v 64.278763 76.604439 -4.999988 +v 67.559021 73.727737 0.000012 +v 70.710678 70.710678 0.000012 +v 67.559021 73.727737 -4.999988 +v 70.710678 70.710678 0.000012 +v 73.727737 67.559021 0.000011 +v 70.710678 70.710678 -4.999989 +v 73.727737 67.559021 0.000011 +v 76.604439 64.278763 0.000010 +v 73.727737 67.559021 -4.999989 +v 76.604439 64.278763 0.000010 +v 79.335335 60.876141 0.000010 +v 76.604439 64.278763 -4.999990 +v 79.335335 60.876141 0.000010 +v 81.915207 57.357643 0.000009 +v 79.335335 60.876141 -4.999990 +v 81.915207 57.357643 0.000009 +v 84.339142 53.729961 0.000009 +v 81.915207 57.357643 -4.999990 +v 84.339142 53.729961 0.000009 +v 86.602539 50.000000 0.000008 +v 84.339142 53.729961 -4.999991 +v 81.915207 57.357643 -4.999990 +v 84.339142 53.729961 0.000009 +v 84.339142 53.729961 -4.999991 +v 79.335335 60.876141 -4.999990 +v 81.915207 57.357643 0.000009 +v 81.915207 57.357643 -4.999990 +v 76.604439 64.278763 -4.999990 +v 79.335335 60.876141 0.000010 +v 79.335335 60.876141 -4.999990 +v 73.727737 67.559021 -4.999989 +v 76.604439 64.278763 0.000010 +v 76.604439 64.278763 -4.999990 +v 70.710678 70.710678 -4.999989 +v 73.727737 67.559021 0.000011 +v 73.727737 67.559021 -4.999989 +v 67.559021 73.727737 -4.999988 +v 70.710678 70.710678 0.000012 +v 70.710678 70.710678 -4.999989 +v 64.278763 76.604439 -4.999988 +v 67.559021 73.727737 0.000012 +v 67.559021 73.727737 -4.999988 +v 60.876141 79.335335 -4.999987 +v 64.278763 76.604439 0.000012 +v 64.278763 76.604439 -4.999988 +v 57.357643 81.915207 -4.999987 +v 60.876141 79.335335 0.000013 +v 60.876141 79.335335 -4.999987 +v 53.729961 84.339142 -4.999986 +v 57.357643 81.915207 0.000013 +v 57.357643 81.915207 -4.999987 +v 50.000000 86.602539 -4.999986 +v 53.729961 84.339142 0.000014 +v 53.729961 84.339142 -4.999986 +v 46.174862 88.701088 -4.999986 +v 50.000000 86.602539 0.000014 +v 50.000000 86.602539 -4.999986 +v 42.261829 90.630775 -4.999985 +v 46.174862 88.701088 0.000014 +v 46.174862 88.701088 -4.999986 +v 38.268341 92.387955 -4.999985 +v 42.261829 90.630775 0.000015 +v 42.261829 90.630775 -4.999985 +v 34.202015 93.969261 -4.999985 +v 38.268341 92.387955 0.000015 +v 38.268341 92.387955 -4.999985 +v 30.070581 95.371696 -4.999984 +v 34.202015 93.969261 0.000015 +v 34.202015 93.969261 -4.999985 +v 25.881905 96.592583 -4.999984 +v 30.070581 95.371696 0.000016 +v 30.070581 95.371696 -4.999984 +v 21.643961 97.629601 -4.999984 +v 25.881905 96.592583 0.000016 +v 25.881905 96.592583 -4.999984 +v 17.364819 98.480774 -4.999984 +v 21.643961 97.629601 0.000016 +v 21.643961 97.629601 -4.999984 +v 29.535435 162.398788 -4.999974 +v 28.706030 163.643692 -4.999973 +v 17.364819 98.480774 -4.999984 +v 29.535435 162.398788 -14.999973 +v 28.706030 163.643692 -14.999973 +v 29.535435 162.398788 -4.999974 +v 30.310890 161.119598 -14.999973 +v -30.310890 161.119598 -14.999973 +v 29.535435 162.398788 -14.999973 +v 30.310890 161.119598 -4.999974 +v 86.602539 50.000000 -4.999992 +v 154.689117 -54.309799 -5.000009 +v 30.310890 161.119598 -14.999973 +v 154.689117 -54.309795 -15.000009 +v -124.378220 -106.809799 -15.000017 +v 155.423599 -55.648594 -15.000010 +v 154.689117 -54.309795 -15.000009 +v 155.423599 -55.648598 -5.000009 +v 95.371696 -30.070581 -5.000005 +v 93.969261 -34.202015 -5.000006 +v 155.423599 -55.648598 -5.000009 +v 96.592583 -25.881905 -5.000004 +v 95.371696 -30.070581 -0.000005 +v 95.371696 -30.070581 -5.000005 +v 97.629601 -21.643961 -5.000003 +v 96.592583 -25.881905 -0.000004 +v 96.592583 -25.881905 -5.000004 +v 98.480774 -17.364819 -5.000003 +v 97.629601 -21.643961 -0.000004 +v 97.629601 -21.643961 -5.000003 +v 99.144485 -13.052618 -5.000002 +v 98.480774 -17.364819 -0.000003 +v 98.480774 -17.364819 -5.000003 +v 99.144485 -13.052619 -0.000002 +v 98.480774 -17.364819 -0.000003 +v 99.144485 -13.052618 -5.000002 +v 100.000000 0.000001 -5.000000 +v 99.904823 -4.361937 -5.000000 +v 154.689117 -54.309799 -5.000009 +v 99.619469 -8.715573 -5.000001 +v 99.144485 -13.052619 -0.000002 +v 99.144485 -13.052618 -5.000002 +v 98.480774 -17.364819 -0.000003 +v 99.144485 -13.052619 -0.000002 +v 0.000000 0.000000 0.000000 +v 99.904823 -4.361938 -0.000001 +v 100.000000 0.000000 0.000000 +v 0.000000 0.000000 0.000000 +v 99.904823 -4.361938 -0.000001 +v 99.619469 -8.715574 -0.000001 +v 99.904823 -4.361937 -5.000000 +vt 0.998097 0.456422 +vt 0.999524 0.478190 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.995722 0.434737 +vt 0.998097 0.456422 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.500000 0.500000 +vt 1.000000 0.500000 +vt 0.999524 0.521810 +vt 0.999524 0.521810 +vt 0.998097 0.543578 +vt 0.500000 0.500000 +vt 0.998097 0.543578 +vt 0.995722 0.565263 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.995722 0.565263 +vt 0.992404 0.586824 +vt 0.992404 0.586824 +vt 0.988148 0.608220 +vt 0.500000 0.500000 +vt 0.988148 0.608220 +vt 0.982963 0.629410 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.982963 0.629410 +vt 0.976858 0.650353 +vt 0.976858 0.650353 +vt 0.969846 0.671010 +vt 0.500000 0.500000 +vt 0.969846 0.671010 +vt 0.961940 0.691342 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.961940 0.691342 +vt 0.953154 0.711309 +vt 0.953154 0.711309 +vt 0.943505 0.730874 +vt 0.500000 0.500000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.943505 0.730874 +vt 0.933013 0.750000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.933013 0.750000 +vt 0.921696 0.768650 +vt 0.921696 0.768650 +vt 0.909576 0.786788 +vt 0.500000 0.500000 +vt 0.909576 0.786788 +vt 0.896677 0.804381 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.896677 0.804381 +vt 0.883022 0.821394 +vt 0.883022 0.821394 +vt 0.868639 0.837795 +vt 0.500000 0.500000 +vt 0.868639 0.837795 +vt 0.853553 0.853553 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.853553 0.853553 +vt 0.837795 0.868639 +vt 0.837795 0.868639 +vt 0.821394 0.883022 +vt 0.500000 0.500000 +vt 0.821394 0.883022 +vt 0.804381 0.896677 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.804381 0.896677 +vt 0.786788 0.909576 +vt 0.786788 0.909576 +vt 0.768650 0.921696 +vt 0.500000 0.500000 +vt 0.768650 0.921696 +vt 0.750000 0.933013 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.750000 0.933013 +vt 0.730874 0.943505 +vt 0.730874 0.943505 +vt 0.711309 0.953154 +vt 0.500000 0.500000 +vt 0.711309 0.953154 +vt 0.691342 0.961940 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.691342 0.961940 +vt 0.671010 0.969846 +vt 0.671010 0.969846 +vt 0.650353 0.976858 +vt 0.500000 0.500000 +vt 0.650353 0.976858 +vt 0.629410 0.982963 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.629410 0.982963 +vt 0.608220 0.988148 +vt 0.608220 0.988148 +vt 0.586824 0.992404 +vt 0.500000 0.500000 +vt 0.586824 0.992404 +vt 0.565263 0.995722 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.565263 0.995722 +vt 0.543578 0.998097 +vt 0.543578 0.998097 +vt 0.521810 0.999524 +vt 0.500000 0.500000 +vt 0.521810 0.999524 +vt 0.500000 1.000000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.500000 1.000000 +vt 0.478190 0.999524 +vt 0.478190 0.999524 +vt 0.456422 0.998097 +vt 0.500000 0.500000 +vt 0.456422 0.998097 +vt 0.434737 0.995722 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.434737 0.995722 +vt 0.413176 0.992404 +vt 0.413176 0.992404 +vt 0.391780 0.988148 +vt 0.500000 0.500000 +vt 0.391780 0.988148 +vt 0.370590 0.982963 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.370590 0.982963 +vt 0.349647 0.976858 +vt 0.349647 0.976858 +vt 0.328990 0.969846 +vt 0.500000 0.500000 +vt 0.328990 0.969846 +vt 0.308658 0.961940 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.308658 0.961940 +vt 0.288691 0.953154 +vt 0.288691 0.953154 +vt 0.269126 0.943505 +vt 0.500000 0.500000 +vt 0.269126 0.943505 +vt 0.250000 0.933013 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.250000 0.933013 +vt 0.231350 0.921696 +vt 0.231350 0.921696 +vt 0.213212 0.909576 +vt 0.500000 0.500000 +vt 0.213212 0.909576 +vt 0.195619 0.896677 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.195619 0.896677 +vt 0.178606 0.883022 +vt 0.178606 0.883022 +vt 0.162205 0.868639 +vt 0.500000 0.500000 +vt 0.162205 0.868639 +vt 0.146447 0.853553 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.146447 0.853553 +vt 0.131361 0.837795 +vt 0.131361 0.837795 +vt 0.116978 0.821394 +vt 0.500000 0.500000 +vt 0.116978 0.821394 +vt 0.103323 0.804381 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.103323 0.804381 +vt 0.090424 0.786788 +vt 0.090424 0.786788 +vt 0.078304 0.768650 +vt 0.500000 0.500000 +vt 0.078304 0.768650 +vt 0.066987 0.750000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.066987 0.750000 +vt 0.056495 0.730874 +vt 0.056495 0.730874 +vt 0.046846 0.711309 +vt 0.500000 0.500000 +vt 0.046846 0.711309 +vt 0.038060 0.691342 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.038060 0.691342 +vt 0.030154 0.671010 +vt 0.030154 0.671010 +vt 0.023142 0.650353 +vt 0.500000 0.500000 +vt 0.023142 0.650353 +vt 0.017037 0.629410 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.017037 0.629410 +vt 0.011852 0.608220 +vt 0.011852 0.608220 +vt 0.007596 0.586824 +vt 0.500000 0.500000 +vt 0.007596 0.586824 +vt 0.004278 0.565263 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.004278 0.565263 +vt 0.001903 0.543578 +vt 0.001903 0.543578 +vt 0.000476 0.521810 +vt 0.500000 0.500000 +vt 0.000476 0.521810 +vt 0.000000 0.500000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.000000 0.500000 +vt 0.000476 0.478190 +vt 0.000476 0.478190 +vt 0.001903 0.456422 +vt 0.500000 0.500000 +vt 0.001903 0.456422 +vt 0.004278 0.434737 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.004278 0.434737 +vt 0.007596 0.413176 +vt 0.007596 0.413176 +vt 0.011852 0.391780 +vt 0.500000 0.500000 +vt 0.011852 0.391780 +vt 0.017037 0.370590 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.017037 0.370590 +vt 0.023142 0.349647 +vt 0.023142 0.349647 +vt 0.030154 0.328990 +vt 0.500000 0.500000 +vt 0.030154 0.328990 +vt 0.038060 0.308658 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.038060 0.308658 +vt 0.046846 0.288691 +vt 0.046846 0.288691 +vt 0.056495 0.269126 +vt 0.500000 0.500000 +vt 0.056495 0.269126 +vt 0.066987 0.250000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.066987 0.250000 +vt 0.078304 0.231350 +vt 0.078304 0.231350 +vt 0.090424 0.213212 +vt 0.500000 0.500000 +vt 0.090424 0.213212 +vt 0.103323 0.195619 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.103323 0.195619 +vt 0.116978 0.178606 +vt 0.116978 0.178606 +vt 0.131361 0.162205 +vt 0.500000 0.500000 +vt 0.131361 0.162205 +vt 0.146447 0.146447 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.146447 0.146447 +vt 0.162205 0.131361 +vt 0.162205 0.131361 +vt 0.178606 0.116978 +vt 0.500000 0.500000 +vt 0.178606 0.116978 +vt 0.195619 0.103323 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.195619 0.103323 +vt 0.213212 0.090424 +vt 0.213212 0.090424 +vt 0.231350 0.078304 +vt 0.500000 0.500000 +vt 0.231350 0.078304 +vt 0.250000 0.066987 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.250000 0.066987 +vt 0.269126 0.056495 +vt 0.269126 0.056495 +vt 0.288691 0.046846 +vt 0.500000 0.500000 +vt 0.288691 0.046846 +vt 0.308658 0.038060 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.308658 0.038060 +vt 0.328990 0.030154 +vt 0.328990 0.030154 +vt 0.349647 0.023142 +vt 0.500000 0.500000 +vt 0.349647 0.023142 +vt 0.370590 0.017037 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.370590 0.017037 +vt 0.391780 0.011852 +vt 0.391780 0.011852 +vt 0.413176 0.007596 +vt 0.500000 0.500000 +vt 0.413176 0.007596 +vt 0.434737 0.004278 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.434737 0.004278 +vt 0.456422 0.001903 +vt 0.456422 0.001903 +vt 0.478190 0.000476 +vt 0.500000 0.500000 +vt 0.478190 0.000476 +vt 0.500000 0.000000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.500000 0.000000 +vt 0.521810 0.000476 +vt 0.521810 0.000476 +vt 0.543578 0.001903 +vt 0.500000 0.500000 +vt 0.543578 0.001903 +vt 0.565263 0.004278 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.565263 0.004278 +vt 0.586824 0.007596 +vt 0.586824 0.007596 +vt 0.608220 0.011852 +vt 0.500000 0.500000 +vt 0.608220 0.011852 +vt 0.629410 0.017037 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.629410 0.017037 +vt 0.650353 0.023142 +vt 0.650353 0.023142 +vt 0.671010 0.030154 +vt 0.500000 0.500000 +vt 0.671010 0.030154 +vt 0.691342 0.038060 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.691342 0.038060 +vt 0.711309 0.046846 +vt 0.711309 0.046846 +vt 0.730874 0.056495 +vt 0.500000 0.500000 +vt 0.730874 0.056495 +vt 0.750000 0.066987 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.750000 0.066987 +vt 0.768650 0.078304 +vt 0.768650 0.078304 +vt 0.786788 0.090424 +vt 0.500000 0.500000 +vt 0.786788 0.090424 +vt 0.804381 0.103323 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.804381 0.103323 +vt 0.821394 0.116978 +vt 0.821394 0.116978 +vt 0.837795 0.131361 +vt 0.500000 0.500000 +vt 0.837795 0.131361 +vt 0.853553 0.146447 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.853553 0.146447 +vt 0.868639 0.162205 +vt 0.868639 0.162205 +vt 0.883022 0.178606 +vt 0.500000 0.500000 +vt 0.883022 0.178606 +vt 0.896677 0.195619 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.896677 0.195619 +vt 0.909576 0.213212 +vt 0.909576 0.213212 +vt 0.921696 0.231350 +vt 0.500000 0.500000 +vt 0.921696 0.231350 +vt 0.933013 0.250000 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.933013 0.250000 +vt 0.943505 0.269126 +vt 0.943505 0.269126 +vt 0.953154 0.288691 +vt 0.500000 0.500000 +vt 0.953154 0.288691 +vt 0.961940 0.308658 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.961940 0.308658 +vt 0.969846 0.328990 +vt 0.969846 0.328990 +vt 0.976858 0.349647 +vt 0.500000 0.500000 +vt 0.976858 0.349647 +vt 0.982963 0.370590 +vt 0.500000 0.500000 +vt 0.500000 0.500000 +vt 0.982963 0.370590 +vt 0.988148 0.391780 +vt 0.988148 0.391780 +vt 0.992404 0.413176 +vt 0.500000 0.500000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.992404 0.413176 +vt 0.995722 0.434737 +vt 0.500000 0.500000 +vt 0.999524 0.478190 +vt 1.000000 0.500000 +vt 0.500000 0.500000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vn 0.0000 -0.0000 1.0000 +vn 0.9941 -0.1089 0.0000 +vn 0.9979 -0.0654 0.0000 +vn 0.8767 0.4810 0.0000 +vn 0.8660 0.5000 0.0000 +vn 0.8551 0.5184 0.0000 +vn 0.8549 0.5188 0.0000 +vn 0.9998 0.0218 0.0000 +vn 0.9998 -0.0218 -0.0000 +vn 0.9153 0.4028 0.0000 +vn 0.9320 0.3624 0.0000 +vn 0.9469 0.3214 0.0000 +vn 0.9600 0.2798 0.0000 +vn 0.9713 0.2377 0.0000 +vn 0.9808 0.1951 0.0000 +vn 0.9884 0.1521 0.0000 +vn 0.9941 0.1089 0.0000 +vn 0.9979 0.0654 0.0000 +vn 0.9153 0.4027 0.0000 +vn 0.8969 0.4423 0.0000 +vn 0.9808 -0.1951 0.0000 +vn 0.9713 -0.2377 0.0000 +vn 0.9600 -0.2798 0.0000 +vn 0.9469 -0.3214 0.0000 +vn 0.9320 -0.3624 0.0000 +vn -0.0000 0.0000 -1.0000 +vn 0.0654 -0.9979 0.0000 +vn 0.0218 -0.9998 0.0000 +vn 0.0000 -1.0000 0.0000 +vn -0.0214 -0.9998 0.0000 +vn -0.0641 -0.9979 0.0000 +vn -0.1067 -0.9943 0.0000 +vn -0.1490 -0.9888 0.0000 +vn -0.2329 -0.9725 0.0000 +vn -0.1912 -0.9816 0.0000 +vn -0.8202 -0.5721 0.0000 +vn -0.8439 -0.5365 0.0000 +vn -0.8660 -0.5000 0.0000 +vn -0.8866 -0.4625 0.0000 +vn -0.9056 -0.4242 0.0000 +vn -0.9385 -0.3454 0.0000 +vn -0.9228 -0.3852 0.0000 +vn -0.9587 0.2845 0.0000 +vn -0.9456 0.3252 0.0000 +vn -0.9309 0.3653 0.0000 +vn -0.9144 0.4048 0.0000 +vn -0.8963 0.4435 0.0000 +vn -0.9998 0.0218 0.0000 +vn -0.8660 0.5000 0.0000 +vn -0.8765 0.4814 0.0000 +vn -0.8551 0.5184 0.0000 +vn -0.8322 0.5545 0.0000 +vn -0.8078 0.5895 0.0000 +vn -0.7818 0.6235 0.0000 +vn -0.7257 0.6880 0.0000 +vn -0.7545 0.6563 0.0000 +vn 0.3753 0.9269 0.0000 +vn 0.4145 0.9100 0.0000 +vn 0.0654 0.9979 0.0000 +vn 0.4530 0.8915 0.0000 +vn 0.4907 0.8713 0.0000 +vn 0.5275 0.8496 0.0000 +vn 0.5981 0.8014 0.0000 +vn 0.5633 0.8262 0.0000 +vn 0.8078 0.5895 0.0000 +vn 0.8322 0.5545 0.0000 +vn 0.1521 0.9884 0.0000 +vn 0.1089 0.9941 0.0000 +vn 0.6644 0.7474 0.0000 +vn 0.6957 0.7183 0.0000 +vn 0.7257 0.6880 0.0000 +vn 0.7545 0.6563 0.0000 +vn 0.7818 0.6235 0.0000 +vn 0.6318 0.7751 0.0000 +vn 0.0218 0.9998 0.0000 +vn -0.1701 0.9854 0.0000 +vn -0.2121 0.9773 0.0000 +vn -0.2948 0.9556 0.0000 +vn 0.2948 0.9556 0.0000 +vn 0.2536 0.9673 0.0000 +vn 0.2121 0.9773 0.0000 +vn 0.1701 0.9854 0.0000 +vn 0.1279 0.9918 0.0000 +vn 0.0854 0.9963 0.0000 +vn 0.0427 0.9991 0.0000 +vn 0.0000 1.0000 0.0000 +vn -0.3753 0.9269 0.0000 +vn -0.4145 0.9100 0.0000 +vn -0.1089 0.9941 0.0000 +vn -0.6644 0.7474 0.0000 +vn -0.6318 0.7751 0.0000 +vn -0.5981 0.8014 0.0000 +vn -0.5633 0.8262 0.0000 +vn -0.5275 0.8496 0.0000 +vn -0.4907 0.8713 0.0000 +vn -0.4530 0.8915 0.0000 +vn -0.0654 0.9979 0.0000 +vn -0.3353 0.9421 0.0000 +vn -0.2536 0.9673 0.0000 +vn -0.0427 0.9991 0.0000 +vn -0.0854 0.9963 0.0000 +vn -0.1279 0.9918 0.0000 +vn -0.0218 0.9998 0.0000 +vn 0.3353 0.9421 0.0000 +vn -0.6957 0.7183 0.0000 +vn -0.1521 0.9884 0.0000 +vn -0.1951 0.9808 0.0000 +vn -0.3214 0.9469 0.0000 +vn -0.4423 0.8969 0.0000 +vn -0.5556 0.8315 0.0000 +vn -0.6593 0.7518 0.0000 +vn -0.7518 0.6593 0.0000 +vn -0.8315 0.5556 0.0000 +vn -0.8064 0.5913 0.0000 +vn -0.7799 0.6259 0.0000 +vn -0.7224 0.6915 0.0000 +vn -0.6915 0.7224 0.0000 +vn -0.6259 0.7799 0.0000 +vn -0.5913 0.8064 0.0000 +vn -0.5188 0.8549 0.0000 +vn -0.4810 0.8767 0.0000 +vn -0.4027 0.9153 0.0000 +vn -0.3624 0.9320 0.0000 +vn -0.2798 0.9600 0.0000 +vn -0.2377 0.9713 0.0000 +vn -0.8549 0.5188 0.0000 +vn -0.8767 0.4810 0.0000 +vn -0.8969 0.4423 0.0000 +vn -0.9153 0.4027 0.0000 +vn -0.9320 0.3624 0.0000 +vn -0.9469 0.3214 0.0000 +vn -0.9600 0.2798 0.0000 +vn -0.9713 0.2377 0.0000 +vn -0.9808 0.1951 0.0000 +vn -0.9884 0.1521 0.0000 +vn -0.9941 0.1089 0.0000 +vn -0.9979 0.0654 0.0000 +vn -0.9998 -0.0218 -0.0000 +vn -0.9979 -0.0654 0.0000 +vn -0.9941 -0.1089 0.0000 +vn -0.9884 -0.1521 -0.0000 +vn -0.9808 -0.1951 0.0000 +vn -0.9713 -0.2377 0.0000 +vn -0.9600 -0.2798 0.0000 +vn -0.9469 -0.3214 0.0000 +vn -0.9320 -0.3624 0.0000 +vn -0.9153 -0.4027 0.0000 +vn -0.8969 -0.4423 0.0000 +vn -0.8767 -0.4810 0.0000 +vn -0.9645 -0.2640 0.0000 +vn -0.9524 -0.3049 0.0000 +vn -0.9986 -0.0534 0.0000 +vn -0.9795 0.2016 0.0000 +vn -0.9872 0.1596 0.0000 +vn -0.9931 0.1173 0.0000 +vn -0.9972 0.0747 0.0000 +vn -0.9995 0.0321 0.0000 +vn -0.9999 -0.0107 0.0000 +vn -0.9954 -0.0960 0.0000 +vn -0.9904 -0.1385 0.0000 +vn -0.9749 -0.2225 0.0000 +vn -0.9835 -0.1807 0.0000 +vn -0.9699 0.2433 0.0000 +vn -0.9229 -0.3851 0.0000 +vn -0.8549 -0.5188 0.0000 +vn -0.6151 -0.7884 0.0000 +vn -0.5809 -0.8140 0.0000 +vn -0.3950 -0.9187 0.0000 +vn -0.3554 -0.9347 0.0000 +vn -0.3151 -0.9491 0.0000 +vn -0.8064 -0.5913 0.0000 +vn -0.4339 -0.9010 0.0000 +vn -0.4720 -0.8816 0.0000 +vn -0.5092 -0.8606 0.0000 +vn -0.5455 -0.8381 0.0000 +vn -0.8315 -0.5556 0.0000 +vn -0.6482 -0.7614 0.0000 +vn -0.6802 -0.7330 0.0000 +vn -0.7109 -0.7033 0.0000 +vn -0.7403 -0.6723 0.0000 +vn -0.7683 -0.6401 0.0000 +vn -0.7950 -0.6066 0.0000 +vn -0.7683 -0.6400 0.0000 +vn -0.6151 -0.7885 0.0000 +vn -0.5808 -0.8140 0.0000 +vn -0.2743 -0.9617 0.0000 +vn -0.7799 -0.6259 0.0000 +vn -0.7518 -0.6593 0.0000 +vn -0.6593 -0.7518 0.0000 +vn -0.5556 -0.8315 0.0000 +vn -0.4423 -0.8969 0.0000 +vn -0.3214 -0.9469 0.0000 +vn -0.1951 -0.9808 0.0000 +vn -0.0654 -0.9979 0.0000 +vn -0.1089 -0.9941 0.0000 +vn -0.1521 -0.9884 0.0000 +vn -0.2377 -0.9713 0.0000 +vn -0.2798 -0.9600 0.0000 +vn -0.3624 -0.9320 0.0000 +vn -0.4027 -0.9153 0.0000 +vn -0.4810 -0.8767 0.0000 +vn -0.5188 -0.8549 0.0000 +vn -0.5913 -0.8064 0.0000 +vn -0.6259 -0.7799 0.0000 +vn -0.6915 -0.7224 0.0000 +vn -0.7224 -0.6915 0.0000 +vn -0.0218 -0.9998 0.0000 +vn 0.1089 -0.9941 0.0000 +vn 0.1521 -0.9884 0.0000 +vn 0.1951 -0.9808 0.0000 +vn 0.2377 -0.9713 0.0000 +vn 0.2798 -0.9600 0.0000 +vn 0.3214 -0.9469 0.0000 +vn 0.3624 -0.9320 0.0000 +vn 0.4027 -0.9153 0.0000 +vn 0.4423 -0.8969 0.0000 +vn 0.4810 -0.8767 0.0000 +vn 0.5188 -0.8549 0.0000 +vn 0.5556 -0.8315 0.0000 +vn 0.5913 -0.8064 0.0000 +vn 0.6259 -0.7799 0.0000 +vn 0.6593 -0.7518 0.0000 +vn 0.6915 -0.7224 0.0000 +vn 0.7224 -0.6915 0.0000 +vn 0.7518 -0.6593 0.0000 +vn 0.7799 -0.6259 0.0000 +vn 0.6594 -0.7518 0.0000 +vn 0.8549 -0.5188 0.0000 +vn 0.8767 -0.4810 0.0000 +vn 0.9884 -0.1521 0.0000 +vn 0.9941 -0.1088 0.0000 +vn 0.9153 -0.4027 0.0000 +vn 0.8969 -0.4423 0.0000 +vn 0.8065 -0.5913 0.0000 +vn 0.8315 -0.5556 0.0000 +vn 0.9320 -0.3625 0.0000 +vn 0.7519 -0.6593 0.0000 +vn 0.5913 -0.8065 0.0000 +vn 0.4028 -0.9153 0.0000 +vn 0.8064 -0.5913 0.0000 +vn 0.9941 0.1088 0.0000 +vn 0.9601 0.2798 0.0000 +vn -0.9601 -0.2798 0.0000 +vn 0.1951 0.9808 0.0000 +vn 0.2377 0.9713 0.0000 +vn 0.2798 0.9600 0.0000 +vn 0.3214 0.9469 0.0000 +vn 0.3624 0.9320 0.0000 +vn 0.4027 0.9153 0.0000 +vn 0.4423 0.8969 0.0000 +vn 0.4810 0.8767 0.0000 +vn 0.5188 0.8549 0.0000 +vn 0.5556 0.8315 0.0000 +vn 0.5913 0.8064 0.0000 +vn 0.6259 0.7799 0.0000 +vn 0.6593 0.7518 0.0000 +vn 0.6915 0.7224 0.0000 +vn 0.7224 0.6915 0.0000 +vn 0.7518 0.6593 0.0000 +vn 0.7799 0.6259 0.0000 +vn 0.8064 0.5913 0.0000 +vn 0.8315 0.5556 0.0000 +vn 0.9601 -0.2798 0.0000 +usemtl Default_OBJ +s off +f 1/1/1 2/2/1 3/3/1 +f 4/4/1 5/5/1 6/6/1 +f 7/7/2 8/8/2 9/9/2 +f 10/10/3 11/11/3 12/12/3 +f 13/13/1 14/14/1 15/15/1 +f 16/16/1 17/17/1 18/18/1 +f 19/19/1 20/20/1 21/21/1 +f 22/22/1 23/23/1 24/24/1 +f 25/25/1 26/26/1 27/27/1 +f 28/28/1 29/29/1 30/30/1 +f 31/31/1 32/32/1 33/33/1 +f 34/34/4 35/35/4 36/36/4 +f 37/37/5 38/38/5 39/39/5 +f 40/40/5 41/41/5 42/42/5 +f 43/43/6 44/44/6 45/45/6 +f 46/46/6 47/47/6 48/48/6 +f 49/49/1 50/50/1 51/51/1 +f 52/52/1 53/53/1 54/54/1 +f 55/55/1 56/56/1 57/57/1 +f 58/58/1 59/59/1 60/60/1 +f 61/61/1 62/62/1 63/63/1 +f 64/64/1 65/65/1 66/66/1 +f 67/67/1 68/68/1 69/69/1 +f 70/70/1 71/71/1 72/72/1 +f 73/73/1 74/74/1 75/75/1 +f 76/76/1 77/77/1 78/78/1 +f 79/79/1 80/80/1 81/81/1 +f 82/82/1 83/83/1 84/84/1 +f 85/85/1 86/86/1 87/87/1 +f 88/88/1 89/89/1 90/90/1 +f 91/91/1 92/92/1 93/93/1 +f 94/94/1 95/95/1 96/96/1 +f 97/97/1 98/98/1 99/99/1 +f 100/100/1 101/101/1 102/102/1 +f 103/103/1 104/104/1 105/105/1 +f 106/106/1 107/107/1 108/108/1 +f 109/109/1 110/110/1 111/111/1 +f 112/112/7 113/113/7 114/114/7 +f 115/115/4 116/116/4 117/117/4 +f 118/118/4 119/119/4 120/120/4 +f 121/121/1 122/122/1 123/123/1 +f 124/124/1 125/125/1 126/126/1 +f 127/127/1 128/128/1 129/129/1 +f 130/130/1 131/131/1 132/132/1 +f 133/133/1 134/134/1 135/135/1 +f 136/136/1 137/137/1 138/138/1 +f 139/139/1 140/140/1 141/141/1 +f 142/142/1 143/143/1 144/144/1 +f 145/145/1 146/146/1 147/147/1 +f 148/148/1 149/149/1 150/150/1 +f 151/151/1 152/152/1 153/153/1 +f 154/154/1 155/155/1 156/156/1 +f 157/157/8 158/158/8 159/159/8 +f 160/160/9 161/161/9 162/162/9 +f 163/163/9 164/164/9 165/165/9 +f 166/166/8 167/167/8 168/168/8 +f 169/169/1 170/170/1 171/171/1 +f 172/172/1 173/173/1 174/174/1 +f 175/175/1 176/176/1 177/177/1 +f 178/178/1 179/179/1 180/180/1 +f 181/181/1 182/182/1 183/183/1 +f 184/184/1 185/185/1 186/186/1 +f 187/187/1 188/188/1 189/189/1 +f 190/190/1 191/191/1 192/192/1 +f 193/193/1 194/194/1 195/195/1 +f 196/196/1 197/197/1 198/198/1 +f 199/199/1 200/200/1 201/201/1 +f 202/202/10 203/203/10 204/204/10 +f 205/205/11 206/206/11 207/207/11 +f 208/208/12 209/209/12 210/210/12 +f 211/211/13 212/212/13 213/213/13 +f 214/214/14 215/215/14 216/216/14 +f 217/217/15 218/218/15 219/219/15 +f 220/220/16 221/221/16 222/222/16 +f 223/223/17 224/224/17 225/225/17 +f 226/226/18 227/227/18 228/228/18 +f 229/229/18 230/230/18 231/231/18 +f 232/232/17 233/233/17 234/234/17 +f 235/235/16 236/236/16 237/237/16 +f 238/238/15 239/239/15 240/240/15 +f 241/241/14 242/242/14 243/243/14 +f 244/244/13 245/245/13 246/246/13 +f 247/247/12 248/248/12 249/249/12 +f 250/250/11 251/251/11 252/252/11 +f 253/253/19 254/254/19 255/255/19 +f 256/256/20 257/257/20 258/258/20 +f 259/259/20 260/260/20 261/261/20 +f 262/262/1 263/263/1 264/264/1 +f 265/265/1 266/266/1 267/267/1 +f 268/268/1 269/269/1 270/270/1 +f 271/271/1 272/272/1 273/273/1 +f 274/274/1 275/275/1 276/276/1 +f 277/277/1 278/278/1 279/279/1 +f 280/280/1 281/281/1 282/282/1 +f 283/283/1 284/284/1 285/285/1 +f 286/286/1 287/287/1 288/288/1 +f 289/289/1 290/290/1 291/291/1 +f 292/292/1 293/293/1 294/294/1 +f 295/295/1 296/296/1 297/297/1 +f 298/298/1 299/299/1 300/300/1 +f 301/301/1 302/302/1 303/303/1 +f 304/304/1 305/305/1 306/306/1 +f 307/307/1 308/308/1 309/309/1 +f 310/310/1 311/311/1 312/312/1 +f 313/313/1 314/314/1 315/315/1 +f 316/316/1 317/317/1 318/318/1 +f 319/319/1 320/320/1 321/321/1 +f 322/322/1 323/323/1 324/324/1 +f 325/325/1 326/326/1 327/327/1 +f 328/328/1 329/329/1 330/330/1 +f 331/331/1 332/332/1 333/333/1 +f 334/334/1 335/335/1 336/336/1 +f 337/337/1 338/338/1 339/339/1 +f 340/340/1 341/341/1 342/342/1 +f 343/343/1 344/344/1 345/345/1 +f 346/346/1 347/347/1 348/348/1 +f 349/349/1 350/350/1 351/351/1 +f 352/352/1 353/353/1 354/354/1 +f 355/355/1 356/356/1 357/357/1 +f 358/358/1 359/359/1 360/360/1 +f 361/361/1 362/362/1 363/363/1 +f 364/364/1 365/365/1 366/366/1 +f 367/367/1 368/368/1 369/369/1 +f 370/370/1 371/371/1 372/372/1 +f 373/373/1 374/374/1 375/375/1 +f 376/376/1 377/377/1 378/378/1 +f 379/379/1 380/380/1 381/381/1 +f 382/382/1 383/383/1 384/384/1 +f 385/385/1 386/386/1 387/387/1 +f 388/388/1 389/389/1 390/390/1 +f 391/391/1 392/392/1 393/393/1 +f 394/394/1 395/395/1 396/396/1 +f 397/397/1 398/398/1 399/399/1 +f 400/400/1 401/401/1 402/402/1 +f 403/403/1 404/404/1 405/405/1 +f 406/406/1 407/407/1 408/408/1 +f 409/409/1 410/410/1 411/411/1 +f 412/412/1 413/413/1 414/414/1 +f 415/415/1 416/416/1 417/417/1 +f 418/418/1 419/419/1 420/420/1 +f 421/421/1 422/422/1 423/423/1 +f 424/424/1 425/425/1 426/426/1 +f 427/427/1 428/428/1 429/429/1 +f 430/430/1 431/431/1 432/432/1 +f 433/433/1 434/434/1 435/435/1 +f 436/436/1 437/437/1 438/438/1 +f 439/439/1 440/440/1 441/441/1 +f 442/442/1 443/443/1 444/444/1 +f 445/445/1 446/446/1 447/447/1 +f 448/448/1 449/449/1 450/450/1 +f 451/451/1 452/452/1 453/453/1 +f 454/454/1 455/455/1 456/456/1 +f 457/457/1 458/458/1 459/459/1 +f 460/460/1 461/461/1 462/462/1 +f 463/463/1 464/464/1 465/465/1 +f 466/466/1 467/467/1 468/468/1 +f 469/469/1 470/470/1 471/471/1 +f 472/472/1 473/473/1 474/474/1 +f 475/475/1 476/476/1 477/477/1 +f 478/478/1 479/479/1 480/480/1 +f 481/481/1 482/482/1 483/483/1 +f 484/484/1 485/485/1 486/486/1 +f 487/487/1 488/488/1 489/489/1 +f 490/490/1 491/491/1 492/492/1 +f 493/493/1 494/494/1 495/495/1 +f 496/496/1 497/497/1 498/498/1 +f 499/499/1 500/500/1 501/501/1 +f 502/502/1 503/503/1 504/504/1 +f 505/505/1 506/506/1 507/507/1 +f 508/508/1 509/509/1 510/510/1 +f 511/511/1 512/512/1 513/513/1 +f 514/514/1 515/515/1 516/516/1 +f 517/517/1 518/518/1 519/519/1 +f 520/520/1 521/521/1 522/522/1 +f 523/523/1 524/524/1 525/525/1 +f 526/526/1 527/527/1 528/528/1 +f 529/529/1 530/530/1 531/531/1 +f 532/532/1 533/533/1 534/534/1 +f 535/535/1 536/536/1 537/537/1 +f 538/538/1 539/539/1 540/540/1 +f 541/541/1 542/542/1 543/543/1 +f 544/544/1 545/545/1 546/546/1 +f 547/547/1 548/548/1 549/549/1 +f 550/550/1 551/551/1 552/552/1 +f 553/553/1 554/554/1 555/555/1 +f 556/556/1 557/557/1 558/558/1 +f 559/559/1 560/560/1 561/561/1 +f 562/562/1 563/563/1 564/564/1 +f 565/565/1 566/566/1 567/567/1 +f 568/568/1 569/569/1 570/570/1 +f 571/571/1 572/572/1 573/573/1 +f 574/574/1 575/575/1 576/576/1 +f 577/577/1 578/578/1 579/579/1 +f 580/580/1 581/581/1 582/582/1 +f 583/583/1 584/584/1 585/585/1 +f 586/586/1 587/587/1 588/588/1 +f 589/589/1 590/590/1 591/591/1 +f 592/592/1 593/593/1 594/594/1 +f 595/595/1 596/596/1 597/597/1 +f 598/598/1 599/599/1 600/600/1 +f 601/601/1 602/602/1 603/603/1 +f 604/604/1 605/605/1 606/606/1 +f 607/607/1 608/608/1 609/609/1 +f 610/610/1 611/611/1 612/612/1 +f 613/613/1 614/614/1 615/615/1 +f 616/616/1 617/617/1 618/618/1 +f 619/619/1 620/620/1 621/621/1 +f 622/622/1 623/623/1 624/624/1 +f 625/625/1 626/626/1 627/627/1 +f 628/628/1 629/629/1 630/630/1 +f 631/631/1 632/632/1 633/633/1 +f 634/634/1 635/635/1 636/636/1 +f 637/637/1 638/638/1 639/639/1 +f 640/640/1 641/641/1 642/642/1 +f 643/643/1 644/644/1 645/645/1 +f 646/646/1 647/647/1 648/648/1 +f 649/649/21 650/650/21 651/651/21 +f 652/652/22 653/653/22 654/654/22 +f 655/655/23 656/656/23 657/657/23 +f 658/658/24 659/659/24 660/660/24 +f 661/661/24 662/662/24 663/663/24 +f 664/664/25 665/665/25 666/666/25 +f 667/667/25 668/668/25 669/669/25 +f 670/670/1 671/671/1 672/672/1 +f 673/673/1 674/674/1 675/675/1 +f 676/676/1 677/677/1 678/678/1 +f 679/679/20 680/680/20 681/681/20 +f 682/682/20 683/683/20 684/684/20 +f 685/685/26 686/686/26 687/687/26 +f 688/688/26 689/689/26 690/690/26 +f 691/691/26 692/692/26 693/693/26 +f 694/694/26 695/695/26 696/696/26 +f 697/697/26 698/698/26 699/699/26 +f 700/700/26 701/701/26 702/702/26 +f 703/703/26 704/704/26 705/705/26 +f 706/706/26 707/707/26 708/708/26 +f 709/709/26 710/710/26 711/711/26 +f 712/712/26 713/713/26 714/714/26 +f 715/715/26 716/716/26 717/717/26 +f 718/718/26 719/719/26 720/720/26 +f 721/721/26 722/722/26 723/723/26 +f 724/724/26 725/725/26 726/726/26 +f 727/727/26 728/728/26 729/729/26 +f 730/730/26 731/731/26 732/732/26 +f 733/733/26 734/734/26 735/735/26 +f 736/736/27 737/737/27 738/738/27 +f 739/739/28 740/740/28 741/741/28 +f 742/742/1 743/743/1 744/744/1 +f 745/745/1 746/746/1 747/747/1 +f 748/748/1 749/749/1 750/750/1 +f 751/751/1 752/752/1 753/753/1 +f 754/754/1 755/755/1 756/756/1 +f 757/757/1 758/758/1 759/759/1 +f 760/760/1 761/761/1 762/762/1 +f 763/763/1 764/764/1 765/765/1 +f 766/766/1 767/767/1 768/768/1 +f 769/769/1 770/770/1 771/771/1 +f 772/772/1 773/773/1 774/774/1 +f 775/775/1 776/776/1 777/777/1 +f 778/778/1 779/779/1 780/780/1 +f 781/781/1 782/782/1 783/783/1 +f 784/784/1 785/785/1 786/786/1 +f 787/787/1 788/788/1 789/789/1 +f 790/790/1 791/791/1 792/792/1 +f 793/793/1 794/794/1 795/795/1 +f 796/796/1 797/797/1 798/798/1 +f 799/799/1 800/800/1 801/801/1 +f 802/802/1 803/803/1 804/804/1 +f 805/805/1 806/806/1 807/807/1 +f 808/808/29 809/809/29 810/810/29 +f 811/811/29 812/812/29 813/813/29 +f 814/814/26 815/815/26 816/816/26 +f 817/817/30 818/818/30 819/819/30 +f 820/820/1 821/821/1 822/822/1 +f 823/823/1 824/824/1 825/825/1 +f 826/826/1 827/827/1 828/828/1 +f 829/829/31 830/830/31 831/831/31 +f 832/832/31 833/833/31 834/834/31 +f 835/835/32 836/836/32 837/837/32 +f 838/838/32 839/839/32 840/840/32 +f 841/841/33 842/842/33 843/843/33 +f 844/844/1 845/845/1 846/846/1 +f 847/847/1 848/848/1 849/849/1 +f 850/850/1 851/851/1 852/852/1 +f 853/853/34 854/854/34 855/855/34 +f 856/856/35 857/857/35 858/858/35 +f 859/859/26 860/860/26 861/861/26 +f 862/862/26 863/863/26 864/864/26 +f 865/865/26 866/866/26 867/867/26 +f 868/868/26 869/869/26 870/870/26 +f 871/871/26 872/872/26 873/873/26 +f 874/874/26 875/875/26 876/876/26 +f 877/877/26 878/878/26 879/879/26 +f 880/880/26 881/881/26 882/882/26 +f 883/883/26 884/884/26 885/885/26 +f 886/886/26 887/887/26 888/888/26 +f 889/889/26 890/890/26 891/891/26 +f 892/892/26 893/893/26 894/894/26 +f 895/895/26 896/896/26 897/897/26 +f 898/898/26 899/899/26 900/900/26 +f 901/901/26 902/902/26 903/903/26 +f 904/904/26 905/905/26 906/906/26 +f 907/907/26 908/908/26 909/909/26 +f 910/910/26 911/911/26 912/912/26 +f 913/913/26 914/914/26 915/915/26 +f 916/916/36 917/917/36 918/918/36 +f 919/919/37 920/920/37 921/921/37 +f 922/922/1 923/923/1 924/924/1 +f 925/925/1 926/926/1 927/927/1 +f 928/928/38 929/929/38 930/930/38 +f 931/931/38 932/932/38 933/933/38 +f 934/934/39 935/935/39 936/936/39 +f 937/937/39 938/938/39 939/939/39 +f 940/940/40 941/941/40 942/942/40 +f 943/943/1 944/944/1 945/945/1 +f 946/946/1 947/947/1 948/948/1 +f 949/949/1 950/950/1 951/951/1 +f 952/952/41 953/953/41 954/954/41 +f 955/955/42 956/956/42 957/957/42 +f 958/958/26 959/959/26 960/960/26 +f 961/961/26 962/962/26 963/963/26 +f 964/964/26 965/965/26 966/966/26 +f 967/967/26 968/968/26 969/969/26 +f 970/970/43 971/971/43 972/972/43 +f 973/973/44 974/974/44 975/975/44 +f 976/976/1 977/977/1 978/978/1 +f 979/979/1 980/980/1 981/981/1 +f 982/982/45 983/983/45 984/984/45 +f 985/985/45 986/986/45 987/987/45 +f 988/988/46 989/989/46 990/990/46 +f 991/991/46 992/992/46 993/993/46 +f 994/994/47 995/995/47 996/996/47 +f 997/997/1 998/998/1 999/999/1 +f 1000/1000/1 1001/1001/1 1002/1002/1 +f 1003/1003/1 1004/1004/1 1005/1005/1 +f 1006/1006/1 1007/1007/1 1008/1008/1 +f 1009/1009/1 1010/1010/1 1011/1011/1 +f 1012/1012/1 1013/1013/1 1014/1014/1 +f 1015/1015/1 1016/1016/1 1017/1017/1 +f 1018/1018/1 1019/1019/1 1020/1020/1 +f 1021/1021/1 1022/1022/1 1023/1023/1 +f 1024/1024/1 1025/1025/1 1026/1026/1 +f 1027/1027/1 1028/1028/1 1029/1029/1 +f 1030/1030/48 1031/1031/48 1032/1032/48 +f 1033/1033/1 1034/1034/1 1035/1035/1 +f 1036/1036/1 1037/1037/1 1038/1038/1 +f 1039/1039/1 1040/1040/1 1041/1041/1 +f 1042/1042/1 1043/1043/1 1044/1044/1 +f 1045/1045/1 1046/1046/1 1047/1047/1 +f 1048/1048/1 1049/1049/1 1050/1050/1 +f 1051/1051/1 1052/1052/1 1053/1053/1 +f 1054/1054/1 1055/1055/1 1056/1056/1 +f 1057/1057/1 1058/1058/1 1059/1059/1 +f 1060/1060/1 1061/1061/1 1062/1062/1 +f 1063/1063/1 1064/1064/1 1065/1065/1 +f 1066/1066/1 1067/1067/1 1068/1068/1 +f 1069/1069/49 1070/1070/49 1071/1071/49 +f 1072/1072/50 1073/1073/50 1074/1074/50 +f 1075/1075/26 1076/1076/26 1077/1077/26 +f 1078/1078/26 1079/1079/26 1080/1080/26 +f 1081/1081/49 1082/1082/49 1083/1083/49 +f 1084/1084/26 1085/1085/26 1086/1086/26 +f 1087/1087/51 1088/1088/51 1089/1089/51 +f 1090/1090/1 1091/1091/1 1092/1092/1 +f 1093/1093/1 1094/1094/1 1095/1095/1 +f 1096/1096/1 1097/1097/1 1098/1098/1 +f 1099/1099/52 1100/1100/52 1101/1101/52 +f 1102/1102/52 1103/1103/52 1104/1104/52 +f 1105/1105/53 1106/1106/53 1107/1107/53 +f 1108/1108/53 1109/1109/53 1110/1110/53 +f 1111/1111/54 1112/1112/54 1113/1113/54 +f 1114/1114/1 1115/1115/1 1116/1116/1 +f 1117/1117/1 1118/1118/1 1119/1119/1 +f 1120/1120/1 1121/1121/1 1122/1122/1 +f 1123/1123/55 1124/1124/55 1125/1125/55 +f 1126/1126/56 1127/1127/56 1128/1128/56 +f 1129/1129/26 1130/1130/26 1131/1131/26 +f 1132/1132/26 1133/1133/26 1134/1134/26 +f 1135/1135/26 1136/1136/26 1137/1137/26 +f 1138/1138/26 1139/1139/26 1140/1140/26 +f 1141/1141/26 1142/1142/26 1143/1143/26 +f 1144/1144/26 1145/1145/26 1146/1146/26 +f 1147/1147/26 1148/1148/26 1149/1149/26 +f 1150/1150/26 1151/1151/26 1152/1152/26 +f 1153/1153/26 1154/1154/26 1155/1155/26 +f 1156/1156/26 1157/1157/26 1158/1158/26 +f 1159/1159/26 1160/1160/26 1161/1161/26 +f 1162/1162/26 1163/1163/26 1164/1164/26 +f 1165/1165/26 1166/1166/26 1167/1167/26 +f 1168/1168/26 1169/1169/26 1170/1170/26 +f 1171/1171/26 1172/1172/26 1173/1173/26 +f 1174/1174/57 1175/1175/57 1176/1176/57 +f 1177/1177/58 1178/1178/58 1179/1179/58 +f 1180/1180/1 1181/1181/1 1182/1182/1 +f 1183/1183/1 1184/1184/1 1185/1185/1 +f 1186/1186/59 1187/1187/59 1188/1188/59 +f 1189/1189/1 1190/1190/1 1191/1191/1 +f 1192/1192/60 1193/1193/60 1194/1194/60 +f 1195/1195/60 1196/1196/60 1197/1197/60 +f 1198/1198/61 1199/1199/61 1200/1200/61 +f 1201/1201/61 1202/1202/61 1203/1203/61 +f 1204/1204/62 1205/1205/62 1206/1206/62 +f 1207/1207/1 1208/1208/1 1209/1209/1 +f 1210/1210/1 1211/1211/1 1212/1212/1 +f 1213/1213/1 1214/1214/1 1215/1215/1 +f 1216/1216/63 1217/1217/63 1218/1218/63 +f 1219/1219/64 1220/1220/64 1221/1221/64 +f 1222/1222/26 1223/1223/26 1224/1224/26 +f 1225/1225/26 1226/1226/26 1227/1227/26 +f 1228/1228/26 1229/1229/26 1230/1230/26 +f 1231/1231/26 1232/1232/26 1233/1233/26 +f 1234/1234/26 1235/1235/26 1236/1236/26 +f 1237/1237/26 1238/1238/26 1239/1239/26 +f 1240/1240/26 1241/1241/26 1242/1242/26 +f 1243/1243/26 1244/1244/26 1245/1245/26 +f 1246/1246/26 1247/1247/26 1248/1248/26 +f 1249/1249/26 1250/1250/26 1251/1251/26 +f 1252/1252/26 1253/1253/26 1254/1254/26 +f 1255/1255/65 1256/1256/65 1257/1257/65 +f 1258/1258/66 1259/1259/66 1260/1260/66 +f 1261/1261/65 1262/1262/65 1263/1263/65 +f 1264/1264/1 1265/1265/1 1266/1266/1 +f 1267/1267/1 1268/1268/1 1269/1269/1 +f 1270/1270/67 1271/1271/67 1272/1272/67 +f 1273/1273/1 1274/1274/1 1275/1275/1 +f 1276/1276/1 1277/1277/1 1278/1278/1 +f 1279/1279/1 1280/1280/1 1281/1281/1 +f 1282/1282/1 1283/1283/1 1284/1284/1 +f 1285/1285/1 1286/1286/1 1287/1287/1 +f 1288/1288/1 1289/1289/1 1290/1290/1 +f 1291/1291/68 1292/1292/68 1293/1293/68 +f 1294/1294/69 1295/1295/69 1296/1296/69 +f 1297/1297/70 1298/1298/70 1299/1299/70 +f 1300/1300/71 1301/1301/71 1302/1302/71 +f 1303/1303/72 1304/1304/72 1305/1305/72 +f 1306/1306/73 1307/1307/73 1308/1308/73 +f 1309/1309/73 1310/1310/73 1311/1311/73 +f 1312/1312/72 1313/1313/72 1314/1314/72 +f 1315/1315/71 1316/1316/71 1317/1317/71 +f 1318/1318/70 1319/1319/70 1320/1320/70 +f 1321/1321/69 1322/1322/69 1323/1323/69 +f 1324/1324/74 1325/1325/74 1326/1326/74 +f 1327/1327/74 1328/1328/74 1329/1329/74 +f 1330/1330/63 1331/1331/63 1332/1332/63 +f 1333/1333/1 1334/1334/1 1335/1335/1 +f 1336/1336/64 1337/1337/64 1338/1338/64 +f 1339/1339/62 1340/1340/62 1341/1341/62 +f 1342/1342/26 1343/1343/26 1344/1344/26 +f 1345/1345/26 1346/1346/26 1347/1347/26 +f 1348/1348/26 1349/1349/26 1350/1350/26 +f 1351/1351/26 1352/1352/26 1353/1353/26 +f 1354/1354/1 1355/1355/1 1356/1356/1 +f 1357/1357/1 1358/1358/1 1359/1359/1 +f 1360/1360/1 1361/1361/1 1362/1362/1 +f 1363/1363/1 1364/1364/1 1365/1365/1 +f 1366/1366/1 1367/1367/1 1368/1368/1 +f 1369/1369/1 1370/1370/1 1371/1371/1 +f 1372/1372/1 1373/1373/1 1374/1374/1 +f 1375/1375/75 1376/1376/75 1377/1377/75 +f 1378/1378/1 1379/1379/1 1380/1380/1 +f 1381/1381/1 1382/1382/1 1383/1383/1 +f 1384/1384/1 1385/1385/1 1386/1386/1 +f 1387/1387/1 1388/1388/1 1389/1389/1 +f 1390/1390/1 1391/1391/1 1392/1392/1 +f 1393/1393/1 1394/1394/1 1395/1395/1 +f 1396/1396/1 1397/1397/1 1398/1398/1 +f 1399/1399/1 1400/1400/1 1401/1401/1 +f 1402/1402/1 1403/1403/1 1404/1404/1 +f 1405/1405/76 1406/1406/76 1407/1407/76 +f 1408/1408/77 1409/1409/77 1410/1410/77 +f 1411/1411/77 1412/1412/77 1413/1413/77 +f 1414/1414/1 1415/1415/1 1416/1416/1 +f 1417/1417/1 1418/1418/1 1419/1419/1 +f 1420/1420/1 1421/1421/1 1422/1422/1 +f 1423/1423/78 1424/1424/78 1425/1425/78 +f 1426/1426/78 1427/1427/78 1428/1428/78 +f 1429/1429/26 1430/1430/26 1431/1431/26 +f 1432/1432/26 1433/1433/26 1434/1434/26 +f 1435/1435/26 1436/1436/26 1437/1437/26 +f 1438/1438/26 1439/1439/26 1440/1440/26 +f 1441/1441/26 1442/1442/26 1443/1443/26 +f 1444/1444/79 1445/1445/79 1446/1446/79 +f 1447/1447/80 1448/1448/80 1449/1449/80 +f 1450/1450/81 1451/1451/81 1452/1452/81 +f 1453/1453/82 1454/1454/82 1455/1455/82 +f 1456/1456/26 1457/1457/26 1458/1458/26 +f 1459/1459/26 1460/1460/26 1461/1461/26 +f 1462/1462/83 1463/1463/83 1464/1464/83 +f 1465/1465/26 1466/1466/26 1467/1467/26 +f 1468/1468/84 1469/1469/84 1470/1470/84 +f 1471/1471/26 1472/1472/26 1473/1473/26 +f 1474/1474/85 1475/1475/85 1476/1476/85 +f 1477/1477/26 1478/1478/26 1479/1479/26 +f 1480/1480/86 1481/1481/86 1482/1482/86 +f 1483/1483/1 1484/1484/1 1485/1485/1 +f 1486/1486/1 1487/1487/1 1488/1488/1 +f 1489/1489/87 1490/1490/87 1491/1491/87 +f 1492/1492/1 1493/1493/1 1494/1494/1 +f 1495/1495/1 1496/1496/1 1497/1497/1 +f 1498/1498/88 1499/1499/88 1500/1500/88 +f 1501/1501/1 1502/1502/1 1503/1503/1 +f 1504/1504/1 1505/1505/1 1506/1506/1 +f 1507/1507/1 1508/1508/1 1509/1509/1 +f 1510/1510/1 1511/1511/1 1512/1512/1 +f 1513/1513/1 1514/1514/1 1515/1515/1 +f 1516/1516/1 1517/1517/1 1518/1518/1 +f 1519/1519/89 1520/1520/89 1521/1521/89 +f 1522/1522/1 1523/1523/1 1524/1524/1 +f 1525/1525/1 1526/1526/1 1527/1527/1 +f 1528/1528/90 1529/1529/90 1530/1530/90 +f 1531/1531/91 1532/1532/91 1533/1533/91 +f 1534/1534/92 1535/1535/92 1536/1536/92 +f 1537/1537/93 1538/1538/93 1539/1539/93 +f 1540/1540/94 1541/1541/94 1542/1542/94 +f 1543/1543/95 1544/1544/95 1545/1545/95 +f 1546/1546/96 1547/1547/96 1548/1548/96 +f 1549/1549/97 1550/1550/97 1551/1551/97 +f 1552/1552/98 1553/1553/98 1554/1554/98 +f 1555/1555/99 1556/1556/99 1557/1557/99 +f 1558/1558/99 1559/1559/99 1560/1560/99 +f 1561/1561/26 1562/1562/26 1563/1563/26 +f 1564/1564/26 1565/1565/26 1566/1566/26 +f 1567/1567/26 1568/1568/26 1569/1569/26 +f 1570/1570/26 1571/1571/26 1572/1572/26 +f 1573/1573/100 1574/1574/100 1575/1575/100 +f 1576/1576/101 1577/1577/101 1578/1578/101 +f 1579/1579/102 1580/1580/102 1581/1581/102 +f 1582/1582/76 1583/1583/76 1584/1584/76 +f 1585/1585/1 1586/1586/1 1587/1587/1 +f 1588/1588/103 1589/1589/103 1590/1590/103 +f 1591/1591/102 1592/1592/102 1593/1593/102 +f 1594/1594/101 1595/1595/101 1596/1596/101 +f 1597/1597/100 1598/1598/100 1599/1599/100 +f 1600/1600/86 1601/1601/86 1602/1602/86 +f 1603/1603/85 1604/1604/85 1605/1605/85 +f 1606/1606/84 1607/1607/84 1608/1608/84 +f 1609/1609/83 1610/1610/83 1611/1611/83 +f 1612/1612/82 1613/1613/82 1614/1614/82 +f 1615/1615/81 1616/1616/81 1617/1617/81 +f 1618/1618/80 1619/1619/80 1620/1620/80 +f 1621/1621/79 1622/1622/79 1623/1623/79 +f 1624/1624/104 1625/1625/104 1626/1626/104 +f 1627/1627/104 1628/1628/104 1629/1629/104 +f 1630/1630/58 1631/1631/58 1632/1632/58 +f 1633/1633/57 1634/1634/57 1635/1635/57 +f 1636/1636/26 1637/1637/26 1638/1638/26 +f 1639/1639/98 1640/1640/98 1641/1641/98 +f 1642/1642/87 1643/1643/87 1644/1644/87 +f 1645/1645/88 1646/1646/88 1647/1647/88 +f 1648/1648/96 1649/1649/96 1650/1650/96 +f 1651/1651/95 1652/1652/95 1653/1653/95 +f 1654/1654/94 1655/1655/94 1656/1656/94 +f 1657/1657/93 1658/1658/93 1659/1659/93 +f 1660/1660/92 1661/1661/92 1662/1662/92 +f 1663/1663/91 1664/1664/91 1665/1665/91 +f 1666/1666/90 1667/1667/90 1668/1668/90 +f 1669/1669/105 1670/1670/105 1671/1671/105 +f 1672/1672/105 1673/1673/105 1674/1674/105 +f 1675/1675/55 1676/1676/55 1677/1677/55 +f 1678/1678/1 1679/1679/1 1680/1680/1 +f 1681/1681/56 1682/1682/56 1683/1683/56 +f 1684/1684/1 1685/1685/1 1686/1686/1 +f 1687/1687/106 1688/1688/106 1689/1689/106 +f 1690/1690/54 1691/1691/54 1692/1692/54 +f 1693/1693/26 1694/1694/26 1695/1695/26 +f 1696/1696/26 1697/1697/26 1698/1698/26 +f 1699/1699/1 1700/1700/1 1701/1701/1 +f 1702/1702/107 1703/1703/107 1704/1704/107 +f 1705/1705/1 1706/1706/1 1707/1707/1 +f 1708/1708/1 1709/1709/1 1710/1710/1 +f 1711/1711/1 1712/1712/1 1713/1713/1 +f 1714/1714/108 1715/1715/108 1716/1716/108 +f 1717/1717/1 1718/1718/1 1719/1719/1 +f 1720/1720/1 1721/1721/1 1722/1722/1 +f 1723/1723/1 1724/1724/1 1725/1725/1 +f 1726/1726/109 1727/1727/109 1728/1728/109 +f 1729/1729/1 1730/1730/1 1731/1731/1 +f 1732/1732/1 1733/1733/1 1734/1734/1 +f 1735/1735/1 1736/1736/1 1737/1737/1 +f 1738/1738/110 1739/1739/110 1740/1740/110 +f 1741/1741/1 1742/1742/1 1743/1743/1 +f 1744/1744/1 1745/1745/1 1746/1746/1 +f 1747/1747/1 1748/1748/1 1749/1749/1 +f 1750/1750/111 1751/1751/111 1752/1752/111 +f 1753/1753/1 1754/1754/1 1755/1755/1 +f 1756/1756/1 1757/1757/1 1758/1758/1 +f 1759/1759/1 1760/1760/1 1761/1761/1 +f 1762/1762/112 1763/1763/112 1764/1764/112 +f 1765/1765/1 1766/1766/1 1767/1767/1 +f 1768/1768/1 1769/1769/1 1770/1770/1 +f 1771/1771/1 1772/1772/1 1773/1773/1 +f 1774/1774/113 1775/1775/113 1776/1776/113 +f 1777/1777/114 1778/1778/114 1779/1779/114 +f 1780/1780/115 1781/1781/115 1782/1782/115 +f 1783/1783/116 1784/1784/116 1785/1785/116 +f 1786/1786/117 1787/1787/117 1788/1788/117 +f 1789/1789/118 1790/1790/118 1791/1791/118 +f 1792/1792/119 1793/1793/119 1794/1794/119 +f 1795/1795/120 1796/1796/120 1797/1797/120 +f 1798/1798/121 1799/1799/121 1800/1800/121 +f 1801/1801/122 1802/1802/122 1803/1803/122 +f 1804/1804/123 1805/1805/123 1806/1806/123 +f 1807/1807/124 1808/1808/124 1809/1809/124 +f 1810/1810/125 1811/1811/125 1812/1812/125 +f 1813/1813/51 1814/1814/51 1815/1815/51 +f 1816/1816/1 1817/1817/1 1818/1818/1 +f 1819/1819/126 1820/1820/126 1821/1821/126 +f 1822/1822/127 1823/1823/127 1824/1824/127 +f 1825/1825/128 1826/1826/128 1827/1827/128 +f 1828/1828/129 1829/1829/129 1830/1830/129 +f 1831/1831/130 1832/1832/130 1833/1833/130 +f 1834/1834/131 1835/1835/131 1836/1836/131 +f 1837/1837/132 1838/1838/132 1839/1839/132 +f 1840/1840/133 1841/1841/133 1842/1842/133 +f 1843/1843/134 1844/1844/134 1845/1845/134 +f 1846/1846/135 1847/1847/135 1848/1848/135 +f 1849/1849/136 1850/1850/136 1851/1851/136 +f 1852/1852/137 1853/1853/137 1854/1854/137 +f 1855/1855/138 1856/1856/138 1857/1857/138 +f 1858/1858/139 1859/1859/139 1860/1860/139 +f 1861/1861/140 1862/1862/140 1863/1863/140 +f 1864/1864/141 1865/1865/141 1866/1866/141 +f 1867/1867/142 1868/1868/142 1869/1869/142 +f 1870/1870/143 1871/1871/143 1872/1872/143 +f 1873/1873/144 1874/1874/144 1875/1875/144 +f 1876/1876/145 1877/1877/145 1878/1878/145 +f 1879/1879/50 1880/1880/50 1881/1881/50 +f 1882/1882/1 1883/1883/1 1884/1884/1 +f 1885/1885/146 1886/1886/146 1887/1887/146 +f 1888/1888/47 1889/1889/47 1890/1890/47 +f 1891/1891/26 1892/1892/26 1893/1893/26 +f 1894/1894/26 1895/1895/26 1896/1896/26 +f 1897/1897/26 1898/1898/26 1899/1899/26 +f 1900/1900/26 1901/1901/26 1902/1902/26 +f 1903/1903/1 1904/1904/1 1905/1905/1 +f 1906/1906/1 1907/1907/1 1908/1908/1 +f 1909/1909/1 1910/1910/1 1911/1911/1 +f 1912/1912/1 1913/1913/1 1914/1914/1 +f 1915/1915/1 1916/1916/1 1917/1917/1 +f 1918/1918/147 1919/1919/147 1920/1920/147 +f 1921/1921/1 1922/1922/1 1923/1923/1 +f 1924/1924/1 1925/1925/1 1926/1926/1 +f 1927/1927/1 1928/1928/1 1929/1929/1 +f 1930/1930/1 1931/1931/1 1932/1932/1 +f 1933/1933/1 1934/1934/1 1935/1935/1 +f 1936/1936/1 1937/1937/1 1938/1938/1 +f 1939/1939/1 1940/1940/1 1941/1941/1 +f 1942/1942/1 1943/1943/1 1944/1944/1 +f 1945/1945/148 1946/1946/148 1947/1947/148 +f 1948/1948/1 1949/1949/1 1950/1950/1 +f 1951/1951/1 1952/1952/1 1953/1953/1 +f 1954/1954/1 1955/1955/1 1956/1956/1 +f 1957/1957/1 1958/1958/1 1959/1959/1 +f 1960/1960/1 1961/1961/1 1962/1962/1 +f 1963/1963/149 1964/1964/149 1965/1965/149 +f 1966/1966/150 1967/1967/150 1968/1968/150 +f 1969/1969/151 1970/1970/151 1971/1971/151 +f 1972/1972/151 1973/1973/151 1974/1974/151 +f 1975/1975/26 1976/1976/26 1977/1977/26 +f 1978/1978/26 1979/1979/26 1980/1980/26 +f 1981/1981/26 1982/1982/26 1983/1983/26 +f 1984/1984/26 1985/1985/26 1986/1986/26 +f 1987/1987/152 1988/1988/152 1989/1989/152 +f 1990/1990/26 1991/1991/26 1992/1992/26 +f 1993/1993/26 1994/1994/26 1995/1995/26 +f 1996/1996/26 1997/1997/26 1998/1998/26 +f 1999/1999/26 2000/2000/26 2001/2001/26 +f 2002/2002/26 2003/2003/26 2004/2004/26 +f 2005/2005/26 2006/2006/26 2007/2007/26 +f 2008/2008/153 2009/2009/153 2010/2010/153 +f 2011/2011/154 2012/2012/154 2013/2013/154 +f 2014/2014/155 2015/2015/155 2016/2016/155 +f 2017/2017/156 2018/2018/156 2019/2019/156 +f 2020/2020/157 2021/2021/157 2022/2022/157 +f 2023/2023/158 2024/2024/158 2025/2025/158 +f 2026/2026/159 2027/2027/159 2028/2028/159 +f 2029/2029/160 2030/2030/160 2031/2031/160 +f 2032/2032/26 2033/2033/26 2034/2034/26 +f 2035/2035/26 2036/2036/26 2037/2037/26 +f 2038/2038/161 2039/2039/161 2040/2040/161 +f 2041/2041/162 2042/2042/162 2043/2043/162 +f 2044/2044/150 2045/2045/150 2046/2046/150 +f 2047/2047/161 2048/2048/161 2049/2049/161 +f 2050/2050/162 2051/2051/162 2052/2052/162 +f 2053/2053/160 2054/2054/160 2055/2055/160 +f 2056/2056/159 2057/2057/159 2058/2058/159 +f 2059/2059/152 2060/2060/152 2061/2061/152 +f 2062/2062/158 2063/2063/158 2064/2064/158 +f 2065/2065/157 2066/2066/157 2067/2067/157 +f 2068/2068/156 2069/2069/156 2070/2070/156 +f 2071/2071/155 2072/2072/155 2073/2073/155 +f 2074/2074/154 2075/2075/154 2076/2076/154 +f 2077/2077/153 2078/2078/153 2079/2079/153 +f 2080/2080/163 2081/2081/163 2082/2082/163 +f 2083/2083/163 2084/2084/163 2085/2085/163 +f 2086/2086/44 2087/2087/44 2088/2088/44 +f 2089/2089/43 2090/2090/43 2091/2091/43 +f 2092/2092/26 2093/2093/26 2094/2094/26 +f 2095/2095/41 2096/2096/41 2097/2097/41 +f 2098/2098/1 2099/2099/1 2100/2100/1 +f 2101/2101/164 2102/2102/164 2103/2103/164 +f 2104/2104/40 2105/2105/40 2106/2106/40 +f 2107/2107/26 2108/2108/26 2109/2109/26 +f 2110/2110/26 2111/2111/26 2112/2112/26 +f 2113/2113/1 2114/2114/1 2115/2115/1 +f 2116/2116/1 2117/2117/1 2118/2118/1 +f 2119/2119/1 2120/2120/1 2121/2121/1 +f 2122/2122/1 2123/2123/1 2124/2124/1 +f 2125/2125/1 2126/2126/1 2127/2127/1 +f 2128/2128/165 2129/2129/165 2130/2130/165 +f 2131/2131/1 2132/2132/1 2133/2133/1 +f 2134/2134/1 2135/2135/1 2136/2136/1 +f 2137/2137/1 2138/2138/1 2139/2139/1 +f 2140/2140/1 2141/2141/1 2142/2142/1 +f 2143/2143/1 2144/2144/1 2145/2145/1 +f 2146/2146/166 2147/2147/166 2148/2148/166 +f 2149/2149/1 2150/2150/1 2151/2151/1 +f 2152/2152/1 2153/2153/1 2154/2154/1 +f 2155/2155/167 2156/2156/167 2157/2157/167 +f 2158/2158/1 2159/2159/1 2160/2160/1 +f 2161/2161/1 2162/2162/1 2163/2163/1 +f 2164/2164/1 2165/2165/1 2166/2166/1 +f 2167/2167/1 2168/2168/1 2169/2169/1 +f 2170/2170/1 2171/2171/1 2172/2172/1 +f 2173/2173/168 2174/2174/168 2175/2175/168 +f 2176/2176/1 2177/2177/1 2178/2178/1 +f 2179/2179/1 2180/2180/1 2181/2181/1 +f 2182/2182/169 2183/2183/169 2184/2184/169 +f 2185/2185/1 2186/2186/1 2187/2187/1 +f 2188/2188/170 2189/2189/170 2190/2190/170 +f 2191/2191/171 2192/2192/171 2193/2193/171 +f 2194/2194/172 2195/2195/172 2196/2196/172 +f 2197/2197/173 2198/2198/173 2199/2199/173 +f 2200/2200/174 2201/2201/174 2202/2202/174 +f 2203/2203/175 2204/2204/175 2205/2205/175 +f 2206/2206/176 2207/2207/176 2208/2208/176 +f 2209/2209/177 2210/2210/177 2211/2211/177 +f 2212/2212/178 2213/2213/178 2214/2214/178 +f 2215/2215/179 2216/2216/179 2217/2217/179 +f 2218/2218/180 2219/2219/180 2220/2220/180 +f 2221/2221/181 2222/2222/181 2223/2223/181 +f 2224/2224/182 2225/2225/182 2226/2226/182 +f 2227/2227/37 2228/2228/37 2229/2229/37 +f 2230/2230/36 2231/2231/36 2232/2232/36 +f 2233/2233/26 2234/2234/26 2235/2235/26 +f 2236/2236/182 2237/2237/182 2238/2238/182 +f 2239/2239/183 2240/2240/183 2241/2241/183 +f 2242/2242/180 2243/2243/180 2244/2244/180 +f 2245/2245/179 2246/2246/179 2247/2247/179 +f 2248/2248/178 2249/2249/178 2250/2250/178 +f 2251/2251/177 2252/2252/177 2253/2253/177 +f 2254/2254/184 2255/2255/184 2256/2256/184 +f 2257/2257/185 2258/2258/185 2259/2259/185 +f 2260/2260/175 2261/2261/175 2262/2262/175 +f 2263/2263/174 2264/2264/174 2265/2265/174 +f 2266/2266/173 2267/2267/173 2268/2268/173 +f 2269/2269/172 2270/2270/172 2271/2271/172 +f 2272/2272/168 2273/2273/168 2274/2274/168 +f 2275/2275/169 2276/2276/169 2277/2277/169 +f 2278/2278/170 2279/2279/170 2280/2280/170 +f 2281/2281/186 2282/2282/186 2283/2283/186 +f 2284/2284/186 2285/2285/186 2286/2286/186 +f 2287/2287/26 2288/2288/26 2289/2289/26 +f 2290/2290/34 2291/2291/34 2292/2292/34 +f 2293/2293/1 2294/2294/1 2295/2295/1 +f 2296/2296/35 2297/2297/35 2298/2298/35 +f 2299/2299/1 2300/2300/1 2301/2301/1 +f 2302/2302/187 2303/2303/187 2304/2304/187 +f 2305/2305/33 2306/2306/33 2307/2307/33 +f 2308/2308/26 2309/2309/26 2310/2310/26 +f 2311/2311/26 2312/2312/26 2313/2313/26 +f 2314/2314/26 2315/2315/26 2316/2316/26 +f 2317/2317/1 2318/2318/1 2319/2319/1 +f 2320/2320/188 2321/2321/188 2322/2322/188 +f 2323/2323/1 2324/2324/1 2325/2325/1 +f 2326/2326/1 2327/2327/1 2328/2328/1 +f 2329/2329/1 2330/2330/1 2331/2331/1 +f 2332/2332/189 2333/2333/189 2334/2334/189 +f 2335/2335/1 2336/2336/1 2337/2337/1 +f 2338/2338/1 2339/2339/1 2340/2340/1 +f 2341/2341/1 2342/2342/1 2343/2343/1 +f 2344/2344/190 2345/2345/190 2346/2346/190 +f 2347/2347/1 2348/2348/1 2349/2349/1 +f 2350/2350/1 2351/2351/1 2352/2352/1 +f 2353/2353/1 2354/2354/1 2355/2355/1 +f 2356/2356/191 2357/2357/191 2358/2358/191 +f 2359/2359/1 2360/2360/1 2361/2361/1 +f 2362/2362/1 2363/2363/1 2364/2364/1 +f 2365/2365/1 2366/2366/1 2367/2367/1 +f 2368/2368/192 2369/2369/192 2370/2370/192 +f 2371/2371/1 2372/2372/1 2373/2373/1 +f 2374/2374/1 2375/2375/1 2376/2376/1 +f 2377/2377/1 2378/2378/1 2379/2379/1 +f 2380/2380/193 2381/2381/193 2382/2382/193 +f 2383/2383/1 2384/2384/1 2385/2385/1 +f 2386/2386/1 2387/2387/1 2388/2388/1 +f 2389/2389/1 2390/2390/1 2391/2391/1 +f 2392/2392/194 2393/2393/194 2394/2394/194 +f 2395/2395/195 2396/2396/195 2397/2397/195 +f 2398/2398/196 2399/2399/196 2400/2400/196 +f 2401/2401/197 2402/2402/197 2403/2403/197 +f 2404/2404/198 2405/2405/198 2406/2406/198 +f 2407/2407/199 2408/2408/199 2409/2409/199 +f 2410/2410/200 2411/2411/200 2412/2412/200 +f 2413/2413/201 2414/2414/201 2415/2415/201 +f 2416/2416/202 2417/2417/202 2418/2418/202 +f 2419/2419/203 2420/2420/203 2421/2421/203 +f 2422/2422/204 2423/2423/204 2424/2424/204 +f 2425/2425/205 2426/2426/205 2427/2427/205 +f 2428/2428/206 2429/2429/206 2430/2430/206 +f 2431/2431/30 2432/2432/30 2433/2433/30 +f 2434/2434/1 2435/2435/1 2436/2436/1 +f 2437/2437/207 2438/2438/207 2439/2439/207 +f 2440/2440/28 2441/2441/28 2442/2442/28 +f 2443/2443/27 2444/2444/27 2445/2445/27 +f 2446/2446/208 2447/2447/208 2448/2448/208 +f 2449/2449/209 2450/2450/209 2451/2451/209 +f 2452/2452/210 2453/2453/210 2454/2454/210 +f 2455/2455/211 2456/2456/211 2457/2457/211 +f 2458/2458/212 2459/2459/212 2460/2460/212 +f 2461/2461/213 2462/2462/213 2463/2463/213 +f 2464/2464/214 2465/2465/214 2466/2466/214 +f 2467/2467/215 2468/2468/215 2469/2469/215 +f 2470/2470/216 2471/2471/216 2472/2472/216 +f 2473/2473/217 2474/2474/217 2475/2475/217 +f 2476/2476/218 2477/2477/218 2478/2478/218 +f 2479/2479/219 2480/2480/219 2481/2481/219 +f 2482/2482/220 2483/2483/220 2484/2484/220 +f 2485/2485/221 2486/2486/221 2487/2487/221 +f 2488/2488/222 2489/2489/222 2490/2490/222 +f 2491/2491/223 2492/2492/223 2493/2493/223 +f 2494/2494/224 2495/2495/224 2496/2496/224 +f 2497/2497/225 2498/2498/225 2499/2499/225 +f 2500/2500/1 2501/2501/1 2502/2502/1 +f 2503/2503/1 2504/2504/1 2505/2505/1 +f 2506/2506/226 2507/2507/226 2508/2508/226 +f 2509/2509/1 2510/2510/1 2511/2511/1 +f 2512/2512/1 2513/2513/1 2514/2514/1 +f 2515/2515/1 2516/2516/1 2517/2517/1 +f 2518/2518/1 2519/2519/1 2520/2520/1 +f 2521/2521/1 2522/2522/1 2523/2523/1 +f 2524/2524/1 2525/2525/1 2526/2526/1 +f 2527/2527/213 2528/2528/213 2529/2529/213 +f 2530/2530/214 2531/2531/214 2532/2532/214 +f 2533/2533/214 2534/2534/214 2535/2535/214 +f 2536/2536/1 2537/2537/1 2538/2538/1 +f 2539/2539/1 2540/2540/1 2541/2541/1 +f 2542/2542/1 2543/2543/1 2544/2544/1 +f 2545/2545/1 2546/2546/1 2547/2547/1 +f 2548/2548/1 2549/2549/1 2550/2550/1 +f 2551/2551/1 2552/2552/1 2553/2553/1 +f 2554/2554/1 2555/2555/1 2556/2556/1 +f 2557/2557/1 2558/2558/1 2559/2559/1 +f 2560/2560/1 2561/2561/1 2562/2562/1 +f 2563/2563/221 2564/2564/221 2565/2565/221 +f 2566/2566/222 2567/2567/222 2568/2568/222 +f 2569/2569/227 2570/2570/227 2571/2571/227 +f 2572/2572/223 2573/2573/223 2574/2574/223 +f 2575/2575/223 2576/2576/223 2577/2577/223 +f 2578/2578/1 2579/2579/1 2580/2580/1 +f 2581/2581/1 2582/2582/1 2583/2583/1 +f 2584/2584/1 2585/2585/1 2586/2586/1 +f 2587/2587/1 2588/2588/1 2589/2589/1 +f 2590/2590/228 2591/2591/228 2592/2592/228 +f 2593/2593/1 2594/2594/1 2595/2595/1 +f 2596/2596/1 2597/2597/1 2598/2598/1 +f 2599/2599/1 2600/2600/1 2601/2601/1 +f 2602/2602/1 2603/2603/1 2604/2604/1 +f 2605/2605/1 2606/2606/1 2607/2607/1 +f 2608/2608/1 2609/2609/1 2610/2610/1 +f 2611/2611/1 2612/2612/1 2613/2613/1 +f 2614/2614/1 2615/2615/1 2616/2616/1 +f 2617/2617/1 2618/2618/1 2619/2619/1 +f 2620/2620/229 2621/2621/229 2622/2622/229 +f 2623/2623/1 2624/2624/1 2625/2625/1 +f 2626/2626/1 2627/2627/1 2628/2628/1 +f 2629/2629/1 2630/2630/1 2631/2631/1 +f 2632/2632/1 2633/2633/1 2634/2634/1 +f 2635/2635/1 2636/2636/1 2637/2637/1 +f 2638/2638/230 2639/2639/230 2640/2640/230 +f 2641/2641/1 2642/2642/1 2643/2643/1 +f 2644/2644/1 2645/2645/1 2646/2646/1 +f 2647/2647/231 2648/2648/231 2649/2649/231 +f 2650/2650/1 2651/2651/1 2652/2652/1 +f 2653/2653/1 2654/2654/1 2655/2655/1 +f 2656/2656/1 2657/2657/1 2658/2658/1 +f 2659/2659/1 2660/2660/1 2661/2661/1 +f 2662/2662/1 2663/2663/1 2664/2664/1 +f 2665/2665/17 2666/2666/17 2667/2667/17 +f 2668/2668/1 2669/2669/1 2670/2670/1 +f 2671/2671/1 2672/2672/1 2673/2673/1 +f 2674/2674/16 2675/2675/16 2676/2676/16 +f 2677/2677/1 2678/2678/1 2679/2679/1 +f 2680/2680/1 2681/2681/1 2682/2682/1 +f 2683/2683/1 2684/2684/1 2685/2685/1 +f 2686/2686/1 2687/2687/1 2688/2688/1 +f 2689/2689/12 2690/2690/12 2691/2691/12 +f 2692/2692/13 2693/2693/13 2694/2694/13 +f 2695/2695/14 2696/2696/14 2697/2697/14 +f 2698/2698/15 2699/2699/15 2700/2700/15 +f 2701/2701/232 2702/2702/232 2703/2703/232 +f 2704/2704/18 2705/2705/18 2706/2706/18 +f 2707/2707/8 2708/2708/8 2709/2709/8 +f 2710/2710/9 2711/2711/9 2712/2712/9 +f 2713/2713/3 2714/2714/3 2715/2715/3 +f 2716/2716/233 2717/2717/233 2718/2718/233 +f 2719/2719/21 2720/2720/21 2721/2721/21 +f 2722/2722/21 2723/2723/21 2724/2724/21 +f 2725/2725/26 2726/2726/26 2727/2727/26 +f 2728/2728/26 2729/2729/26 2730/2730/26 +f 2731/2731/26 2732/2732/26 2733/2733/26 +f 2734/2734/26 2735/2735/26 2736/2736/26 +f 2737/2737/26 2738/2738/26 2739/2739/26 +f 2740/2740/26 2741/2741/26 2742/2742/26 +f 2743/2743/26 2744/2744/26 2745/2745/26 +f 2746/2746/26 2747/2747/26 2748/2748/26 +f 2749/2749/216 2750/2750/216 2751/2751/216 +f 2752/2752/217 2753/2753/217 2754/2754/217 +f 2755/2755/218 2756/2756/218 2757/2757/218 +f 2758/2758/219 2759/2759/219 2760/2760/219 +f 2761/2761/220 2762/2762/220 2763/2763/220 +f 2764/2764/26 2765/2765/26 2766/2766/26 +f 2767/2767/26 2768/2768/26 2769/2769/26 +f 2770/2770/26 2771/2771/26 2772/2772/26 +f 2773/2773/26 2774/2774/26 2775/2775/26 +f 2776/2776/26 2777/2777/26 2778/2778/26 +f 2779/2779/26 2780/2780/26 2781/2781/26 +f 2782/2782/26 2783/2783/26 2784/2784/26 +f 2785/2785/26 2786/2786/26 2787/2787/26 +f 2788/2788/26 2789/2789/26 2790/2790/26 +f 2791/2791/26 2792/2792/26 2793/2793/26 +f 2794/2794/26 2795/2795/26 2796/2796/26 +f 2797/2797/26 2798/2798/26 2799/2799/26 +f 2800/2800/26 2801/2801/26 2802/2802/26 +f 2803/2803/225 2804/2804/225 2805/2805/225 +f 2806/2806/226 2807/2807/226 2808/2808/226 +f 2809/2809/234 2810/2810/234 2811/2811/234 +f 2812/2812/235 2813/2813/235 2814/2814/235 +f 2815/2815/228 2816/2816/228 2817/2817/228 +f 2818/2818/229 2819/2819/229 2820/2820/229 +f 2821/2821/233 2822/2822/233 2823/2823/233 +f 2824/2824/232 2825/2825/232 2826/2826/232 +f 2827/2827/236 2828/2828/236 2829/2829/236 +f 2830/2830/24 2831/2831/24 2832/2832/24 +f 2833/2833/23 2834/2834/23 2835/2835/23 +f 2836/2836/22 2837/2837/22 2838/2838/22 +f 2839/2839/22 2840/2840/22 2841/2841/22 +f 2842/2842/23 2843/2843/23 2844/2844/23 +f 2845/2845/24 2846/2846/24 2847/2847/24 +f 2848/2848/25 2849/2849/25 2850/2850/25 +f 2851/2851/232 2852/2852/232 2853/2853/232 +f 2854/2854/233 2855/2855/233 2856/2856/233 +f 2857/2857/229 2858/2858/229 2859/2859/229 +f 2860/2860/228 2861/2861/228 2862/2862/228 +f 2863/2863/235 2864/2864/235 2865/2865/235 +f 2866/2866/234 2867/2867/234 2868/2868/234 +f 2869/2869/226 2870/2870/226 2871/2871/226 +f 2872/2872/237 2873/2873/237 2874/2874/237 +f 2875/2875/224 2876/2876/224 2877/2877/224 +f 2878/2878/224 2879/2879/224 2880/2880/224 +f 2881/2881/26 2882/2882/26 2883/2883/26 +f 2884/2884/221 2885/2885/221 2886/2886/221 +f 2887/2887/1 2888/2888/1 2889/2889/1 +f 2890/2890/235 2891/2891/235 2892/2892/235 +f 2893/2893/238 2894/2894/238 2895/2895/238 +f 2896/2896/219 2897/2897/219 2898/2898/219 +f 2899/2899/218 2900/2900/218 2901/2901/218 +f 2902/2902/217 2903/2903/217 2904/2904/217 +f 2905/2905/216 2906/2906/216 2907/2907/216 +f 2908/2908/239 2909/2909/239 2910/2910/239 +f 2911/2911/215 2912/2912/215 2913/2913/215 +f 2914/2914/26 2915/2915/26 2916/2916/26 +f 2917/2917/26 2918/2918/26 2919/2919/26 +f 2920/2920/26 2921/2921/26 2922/2922/26 +f 2923/2923/26 2924/2924/26 2925/2925/26 +f 2926/2926/26 2927/2927/26 2928/2928/26 +f 2929/2929/26 2930/2930/26 2931/2931/26 +f 2932/2932/209 2933/2933/209 2934/2934/209 +f 2935/2935/210 2936/2936/210 2937/2937/210 +f 2938/2938/211 2939/2939/211 2940/2940/211 +f 2941/2941/212 2942/2942/212 2943/2943/212 +f 2944/2944/213 2945/2945/213 2946/2946/213 +f 2947/2947/1 2948/2948/1 2949/2949/1 +f 2950/2950/240 2951/2951/240 2952/2952/240 +f 2953/2953/212 2954/2954/212 2955/2955/212 +f 2956/2956/211 2957/2957/211 2958/2958/211 +f 2959/2959/210 2960/2960/210 2961/2961/210 +f 2962/2962/209 2963/2963/209 2964/2964/209 +f 2965/2965/208 2966/2966/208 2967/2967/208 +f 2968/2968/208 2969/2969/208 2970/2970/208 +f 2971/2971/27 2972/2972/27 2973/2973/27 +f 2974/2974/26 2975/2975/26 2976/2976/26 +f 2977/2977/28 2978/2978/28 2979/2979/28 +f 2980/2980/230 2981/2981/230 2982/2982/230 +f 2983/2983/2 2984/2984/2 2985/2985/2 +f 2986/2986/3 2987/2987/3 2988/2988/3 +f 2989/2989/9 2990/2990/9 2991/2991/9 +f 2992/2992/8 2993/2993/8 2994/2994/8 +f 2995/2995/18 2996/2996/18 2997/2997/18 +f 2998/2998/241 2999/2999/241 3000/3000/241 +f 3001/3001/16 3002/3002/16 3003/3003/16 +f 3004/3004/15 3005/3005/15 3006/3006/15 +f 3007/3007/14 3008/3008/14 3009/3009/14 +f 3010/3010/242 3011/3011/242 3012/3012/242 +f 3013/3013/12 3014/3014/12 3015/3015/12 +f 3016/3016/11 3017/3017/11 3018/3018/11 +f 3019/3019/11 3020/3020/11 3021/3021/11 +f 3022/3022/19 3023/3023/19 3024/3024/19 +f 3025/3025/26 3026/3026/26 3027/3027/26 +f 3028/3028/19 3029/3029/19 3030/3030/19 +f 3031/3031/1 3032/3032/1 3033/3033/1 +f 3034/3034/232 3035/3035/232 3036/3036/232 +f 3037/3037/233 3038/3038/233 3039/3039/233 +f 3040/3040/229 3041/3041/229 3042/3042/229 +f 3043/3043/228 3044/3044/228 3045/3045/228 +f 3046/3046/235 3047/3047/235 3048/3048/235 +f 3049/3049/240 3050/3050/240 3051/3051/240 +f 3052/3052/226 3053/3053/226 3054/3054/226 +f 3055/3055/225 3056/3056/225 3057/3057/225 +f 3058/3058/224 3059/3059/224 3060/3060/224 +f 3061/3061/223 3062/3062/223 3063/3063/223 +f 3064/3064/222 3065/3065/222 3066/3066/222 +f 3067/3067/221 3068/3068/221 3069/3069/221 +f 3070/3070/220 3071/3071/220 3072/3072/220 +f 3073/3073/219 3074/3074/219 3075/3075/219 +f 3076/3076/218 3077/3077/218 3078/3078/218 +f 3079/3079/217 3080/3080/217 3081/3081/217 +f 3082/3082/216 3083/3083/216 3084/3084/216 +f 3085/3085/215 3086/3086/215 3087/3087/215 +f 3088/3088/214 3089/3089/214 3090/3090/214 +f 3091/3091/213 3092/3092/213 3093/3093/213 +f 3094/3094/212 3095/3095/212 3096/3096/212 +f 3097/3097/211 3098/3098/211 3099/3099/211 +f 3100/3100/210 3101/3101/210 3102/3102/210 +f 3103/3103/209 3104/3104/209 3105/3105/209 +f 3106/3106/208 3107/3107/208 3108/3108/208 +f 3109/3109/27 3110/3110/27 3111/3111/27 +f 3112/3112/28 3113/3113/28 3114/3114/28 +f 3115/3115/207 3116/3116/207 3117/3117/207 +f 3118/3118/194 3119/3119/194 3120/3120/194 +f 3121/3121/195 3122/3122/195 3123/3123/195 +f 3124/3124/196 3125/3125/196 3126/3126/196 +f 3127/3127/193 3128/3128/193 3129/3129/193 +f 3130/3130/197 3131/3131/197 3132/3132/197 +f 3133/3133/198 3134/3134/198 3135/3135/198 +f 3136/3136/192 3137/3137/192 3138/3138/192 +f 3139/3139/199 3140/3140/199 3141/3141/199 +f 3142/3142/200 3143/3143/200 3144/3144/200 +f 3145/3145/191 3146/3146/191 3147/3147/191 +f 3148/3148/201 3149/3149/201 3150/3150/201 +f 3151/3151/202 3152/3152/202 3153/3153/202 +f 3154/3154/190 3155/3155/190 3156/3156/190 +f 3157/3157/203 3158/3158/203 3159/3159/203 +f 3160/3160/204 3161/3161/204 3162/3162/204 +f 3163/3163/189 3164/3164/189 3165/3165/189 +f 3166/3166/205 3167/3167/205 3168/3168/205 +f 3169/3169/206 3170/3170/206 3171/3171/206 +f 3172/3172/188 3173/3173/188 3174/3174/188 +f 3175/3175/187 3176/3176/187 3177/3177/187 +f 3178/3178/171 3179/3179/171 3180/3180/171 +f 3181/3181/176 3182/3182/176 3183/3183/176 +f 3184/3184/165 3185/3185/165 3186/3186/165 +f 3187/3187/149 3188/3188/149 3189/3189/149 +f 3190/3190/148 3191/3191/148 3192/3192/148 +f 3193/3193/147 3194/3194/147 3195/3195/147 +f 3196/3196/146 3197/3197/146 3198/3198/146 +f 3199/3199/145 3200/3200/145 3201/3201/145 +f 3202/3202/243 3203/3203/243 3204/3204/243 +f 3205/3205/143 3206/3206/143 3207/3207/143 +f 3208/3208/142 3209/3209/142 3210/3210/142 +f 3211/3211/141 3212/3212/141 3213/3213/141 +f 3214/3214/140 3215/3215/140 3216/3216/140 +f 3217/3217/139 3218/3218/139 3219/3219/139 +f 3220/3220/138 3221/3221/138 3222/3222/138 +f 3223/3223/48 3224/3224/48 3225/3225/48 +f 3226/3226/137 3227/3227/137 3228/3228/137 +f 3229/3229/136 3230/3230/136 3231/3231/136 +f 3232/3232/135 3233/3233/135 3234/3234/135 +f 3235/3235/134 3236/3236/134 3237/3237/134 +f 3238/3238/133 3239/3239/133 3240/3240/133 +f 3241/3241/132 3242/3242/132 3243/3243/132 +f 3244/3244/131 3245/3245/131 3246/3246/131 +f 3247/3247/130 3248/3248/130 3249/3249/130 +f 3250/3250/129 3251/3251/129 3252/3252/129 +f 3253/3253/128 3254/3254/128 3255/3255/128 +f 3256/3256/127 3257/3257/127 3258/3258/127 +f 3259/3259/126 3260/3260/126 3261/3261/126 +f 3262/3262/113 3263/3263/113 3264/3264/113 +f 3265/3265/114 3266/3266/114 3267/3267/114 +f 3268/3268/115 3269/3269/115 3270/3270/115 +f 3271/3271/112 3272/3272/112 3273/3273/112 +f 3274/3274/116 3275/3275/116 3276/3276/116 +f 3277/3277/117 3278/3278/117 3279/3279/117 +f 3280/3280/111 3281/3281/111 3282/3282/111 +f 3283/3283/118 3284/3284/118 3285/3285/118 +f 3286/3286/119 3287/3287/119 3288/3288/119 +f 3289/3289/110 3290/3290/110 3291/3291/110 +f 3292/3292/120 3293/3293/120 3294/3294/120 +f 3295/3295/121 3296/3296/121 3297/3297/121 +f 3298/3298/109 3299/3299/109 3300/3300/109 +f 3301/3301/122 3302/3302/122 3303/3303/122 +f 3304/3304/123 3305/3305/123 3306/3306/123 +f 3307/3307/108 3308/3308/108 3309/3309/108 +f 3310/3310/124 3311/3311/124 3312/3312/124 +f 3313/3313/125 3314/3314/125 3315/3315/125 +f 3316/3316/107 3317/3317/107 3318/3318/107 +f 3319/3319/106 3320/3320/106 3321/3321/106 +f 3322/3322/89 3323/3323/89 3324/3324/89 +f 3325/3325/97 3326/3326/97 3327/3327/97 +f 3328/3328/103 3329/3329/103 3330/3330/103 +f 3331/3331/75 3332/3332/75 3333/3333/75 +f 3334/3334/59 3335/3335/59 3336/3336/59 +f 3337/3337/68 3338/3338/68 3339/3339/68 +f 3340/3340/67 3341/3341/67 3342/3342/67 +f 3343/3343/244 3344/3344/244 3345/3345/244 +f 3346/3346/245 3347/3347/245 3348/3348/245 +f 3349/3349/246 3350/3350/246 3351/3351/246 +f 3352/3352/247 3353/3353/247 3354/3354/247 +f 3355/3355/248 3356/3356/248 3357/3357/248 +f 3358/3358/249 3359/3359/249 3360/3360/249 +f 3361/3361/250 3362/3362/250 3363/3363/250 +f 3364/3364/251 3365/3365/251 3366/3366/251 +f 3367/3367/252 3368/3368/252 3369/3369/252 +f 3370/3370/253 3371/3371/253 3372/3372/253 +f 3373/3373/254 3374/3374/254 3375/3375/254 +f 3376/3376/255 3377/3377/255 3378/3378/255 +f 3379/3379/256 3380/3380/256 3381/3381/256 +f 3382/3382/257 3383/3383/257 3384/3384/257 +f 3385/3385/258 3386/3386/258 3387/3387/258 +f 3388/3388/259 3389/3389/259 3390/3390/259 +f 3391/3391/260 3392/3392/260 3393/3393/260 +f 3394/3394/261 3395/3395/261 3396/3396/261 +f 3397/3397/262 3398/3398/262 3399/3399/262 +f 3400/3400/7 3401/3401/7 3402/3402/7 +f 3403/3403/262 3404/3404/262 3405/3405/262 +f 3406/3406/261 3407/3407/261 3408/3408/261 +f 3409/3409/260 3410/3410/260 3411/3411/260 +f 3412/3412/259 3413/3413/259 3414/3414/259 +f 3415/3415/258 3416/3416/258 3417/3417/258 +f 3418/3418/257 3419/3419/257 3420/3420/257 +f 3421/3421/256 3422/3422/256 3423/3423/256 +f 3424/3424/255 3425/3425/255 3426/3426/255 +f 3427/3427/254 3428/3428/254 3429/3429/254 +f 3430/3430/253 3431/3431/253 3432/3432/253 +f 3433/3433/252 3434/3434/252 3435/3435/252 +f 3436/3436/251 3437/3437/251 3438/3438/251 +f 3439/3439/250 3440/3440/250 3441/3441/250 +f 3442/3442/249 3443/3443/249 3444/3444/249 +f 3445/3445/248 3446/3446/248 3447/3447/248 +f 3448/3448/247 3449/3449/247 3450/3450/247 +f 3451/3451/246 3452/3452/246 3453/3453/246 +f 3454/3454/245 3455/3455/245 3456/3456/245 +f 3457/3457/244 3458/3458/244 3459/3459/244 +f 3460/3460/1 3461/3461/1 3462/3462/1 +f 3463/3463/66 3464/3464/66 3465/3465/66 +f 3466/3466/26 3467/3467/26 3468/3468/26 +f 3469/3469/1 3470/3470/1 3471/3471/1 +f 3472/3472/26 3473/3473/26 3474/3474/26 +f 3475/3475/4 3476/3476/4 3477/3477/4 +f 3478/3478/1 3479/3479/1 3480/3480/1 +f 3481/3481/263 3482/3482/263 3483/3483/263 +f 3484/3484/22 3485/3485/22 3486/3486/22 +f 3487/3487/21 3488/3488/21 3489/3489/21 +f 3490/3490/230 3491/3491/230 3492/3492/230 +f 3493/3493/230 3494/3494/230 3495/3495/230 +f 3496/3496/1 3497/3497/1 3498/3498/1 +f 3499/3499/2 3500/3500/2 3501/3501/2 +f 3502/3502/1 3503/3503/1 3504/3504/1 +f 3505/3505/1 3506/3506/1 3507/3507/1 +f 3508/3508/3 3509/3509/3 3510/3510/3 diff --git a/resources/meshes/ratrig_vcore3_200.stl b/resources/meshes/ratrig_vcore3_200.stl new file mode 100644 index 0000000000..b44e099eb3 Binary files /dev/null and b/resources/meshes/ratrig_vcore3_200.stl differ diff --git a/resources/meshes/ratrig_vcore3_300.stl b/resources/meshes/ratrig_vcore3_300.stl new file mode 100644 index 0000000000..454efe9012 Binary files /dev/null and b/resources/meshes/ratrig_vcore3_300.stl differ diff --git a/resources/meshes/ratrig_vcore3_400.stl b/resources/meshes/ratrig_vcore3_400.stl new file mode 100644 index 0000000000..dd1b801714 Binary files /dev/null and b/resources/meshes/ratrig_vcore3_400.stl differ diff --git a/resources/meshes/ratrig_vcore3_500.stl b/resources/meshes/ratrig_vcore3_500.stl new file mode 100644 index 0000000000..268c73ca00 Binary files /dev/null and b/resources/meshes/ratrig_vcore3_500.stl differ diff --git a/resources/meshes/ratrig_vminion.stl b/resources/meshes/ratrig_vminion.stl new file mode 100644 index 0000000000..1bfbd6a41c Binary files /dev/null and b/resources/meshes/ratrig_vminion.stl differ diff --git a/resources/meshes/ultimaker_factor4_platform.obj b/resources/meshes/ultimaker_factor4_platform.obj new file mode 100644 index 0000000000..c41d2d48f5 --- /dev/null +++ b/resources/meshes/ultimaker_factor4_platform.obj @@ -0,0 +1,13023 @@ +# Blender v2.91.0 OBJ File: 'textured s7- simplified.blend' +# www.blender.org +mtllib textured s7- simplifiedflipped.mtl +o 3MF_Object.024_3MF_Mesh.009 +v 5.860987 205.709488 -25.501549 +v 2.385324 214.590286 -25.293251 +v 0.022585 205.363449 -25.499138 +v -5.911014 205.881241 -25.507286 +v 15.578476 208.296188 -25.445625 +v -13.803374 208.923111 -25.414757 +v -94.749763 209.176697 -25.211662 +v -90.598045 208.853424 -25.286583 +v -33.604111 208.268478 -25.327812 +v -3.935779 203.745865 -25.497627 +v 4.018570 203.123093 -25.497643 +v 137.339615 200.167816 -25.499138 +v 139.783234 208.256363 -25.146339 +v -137.294449 200.167908 -25.499138 +v -139.663101 208.108398 -25.147072 +v 5.956297 194.454300 -25.507500 +v -5.173001 200.167862 -25.499138 +v 4.589656 198.964813 -25.497841 +v -139.040848 193.650528 -25.499138 +v 139.086014 193.650436 -25.499138 +v -5.690777 194.234329 -25.508064 +v -3.555439 196.209503 -25.497871 +v -93.430428 159.381149 -25.478630 +v 1.494420 195.675140 -25.498375 +v 3.921325 158.696243 -25.474327 +v 132.782959 150.065384 -25.445625 +v 143.857056 188.879379 -25.499138 +v -143.811890 188.879471 -25.499138 +v -154.901184 153.535507 -25.478172 +v 151.920288 187.069275 -25.557167 +v -151.757324 187.040710 -25.683769 +v 156.677338 150.286682 -25.356483 +v 106.775673 158.742706 -25.481895 +v 24.071791 158.723831 -25.450462 +v 10.747665 150.004990 -25.499123 +v -131.699966 149.167358 -25.116432 +v 109.781166 149.360596 -25.201164 +v -109.623741 149.238708 -25.205666 +v -131.738983 141.282333 -25.229164 +v 150.047638 146.032303 -25.463173 +v 154.738541 148.265106 -25.420738 +v -154.676041 148.229630 -25.431404 +v -151.393265 149.328781 -25.496071 +v 131.771118 141.097137 -25.230827 +v 109.864250 141.394897 -25.148247 +v 5.061268 135.945602 -25.419319 +v 0.088336 142.239609 -25.404259 +v -110.750694 141.348404 -25.031334 +v -147.033737 147.411346 -25.316048 +v -153.932785 145.755783 -25.476891 +v 159.291321 143.931381 -25.546867 +v -159.179703 143.835358 -25.505241 +v -173.400467 136.831268 -25.041954 +v -164.814285 -134.563034 -25.479134 +v 170.201065 -128.442627 -25.500694 +v -149.940887 142.481628 -25.459618 +v 173.924225 136.501389 -24.817589 +v 3.515829 140.988586 -25.346199 +v -3.754595 140.700699 -25.364388 +v -4.996486 137.286316 -25.404274 +v 164.145660 -134.565323 -25.442146 +v -3.453289 133.438507 -25.370201 +v -173.874710 -123.416550 -25.335686 +v 1.635656 132.326920 -25.396355 +v -169.505035 -129.456436 -25.404305 +v -172.570389 -126.873329 -25.390205 +v 174.229416 -123.342117 -25.319527 +v 174.993652 -126.893379 -25.339104 +v -176.397446 -127.528816 -25.437752 +v 169.022903 -133.479752 -25.382072 +v -168.859009 -133.047516 -25.401970 +v 172.652969 -136.973709 -25.421776 +v -172.438446 -137.232834 -25.478844 +v 173.393311 -137.613342 -25.233894 +v -175.198517 -137.161591 -25.503517 +v -176.922928 -130.831512 -18.192589 +v -174.962158 -128.870667 -15.966057 +v -172.806854 -128.870712 -18.194366 +v -171.574402 -129.821060 -15.977112 +v -170.805542 -133.170776 -18.172684 +v -176.909042 -133.052216 -15.964828 +v -170.921066 -132.865677 -15.976883 +v -175.161560 -134.784622 -18.206093 +v -173.231216 -134.953842 -15.976738 +v 170.890991 -130.831635 -18.192596 +v 172.851776 -128.870819 -15.966530 +v 175.007095 -128.870834 -18.192589 +v 176.239517 -129.821182 -15.976158 +v 177.008362 -133.170975 -18.172676 +v 170.904892 -133.052368 -15.965698 +v 176.892853 -132.865799 -15.976883 +v 172.652206 -134.784821 -18.210098 +v 174.582703 -134.953964 -15.977104 +v 0.994006 140.230148 -15.976128 +v 1.386298 140.432175 -18.174553 +v -2.696982 139.212982 -15.973724 +v -2.411579 139.420792 -18.181259 +v 3.114663 137.884048 -15.976128 +v 3.036331 135.805389 -18.210747 +v -3.099975 136.212662 -18.181259 +v -2.323520 135.099884 -15.976128 +v 1.387322 134.327393 -15.946861 +v -0.665840 134.012421 -18.181259 +v -177.720459 -127.529480 -15.988594 +v -175.035919 -126.004654 -8.462013 +v -172.345596 -126.487106 -15.981163 +v -170.942291 -126.813248 -8.459229 +v -168.429169 -130.180222 -15.974098 +v -175.572037 -125.871033 -6.708855 +v -180.328278 -130.236023 -6.445251 +v -167.975403 -130.650009 -8.475739 +v -179.352753 -133.676636 -15.973999 +v -180.005646 -133.493500 -6.625427 +v -169.075012 -134.725571 -15.972931 +v -170.304016 -136.932373 -8.485153 +v -172.140060 -137.356873 -15.970619 +v -176.700912 -136.718582 -15.972931 +v -175.921600 -138.171494 -6.506210 +v -173.675491 -137.843582 -6.854126 +v 175.132889 -126.109024 -8.457695 +v 177.906586 -127.847252 -15.972664 +v 172.210602 -126.414589 -15.979607 +v 170.987244 -126.813370 -8.459229 +v 175.638657 -125.826591 -6.692383 +v 168.179276 -130.049393 -8.431602 +v 168.340515 -130.679138 -15.974075 +v 179.189178 -128.743271 -6.784256 +v 179.502792 -131.943588 -15.972931 +v 180.225159 -132.056870 -6.496109 +v 178.226135 -135.700073 -15.974846 +v 169.934967 -136.704849 -8.502090 +v 169.911270 -135.885010 -15.976952 +v 178.555298 -136.526535 -6.584206 +v 174.004532 -137.452805 -15.967361 +v 173.263443 -137.930267 -6.608742 +v -151.096802 147.521301 -23.220833 +v -148.816299 146.795044 -23.155602 +v -151.814865 145.317017 -23.186562 +v -149.605072 144.555649 -23.186546 +v 136.819519 151.963394 -21.791519 +v 149.262512 151.196884 -21.002541 +v 146.805069 149.685623 -22.488113 +v 152.599472 150.605453 -21.582954 +v 158.030197 150.812622 -21.423561 +v 155.374359 147.892990 -22.090553 +v 144.220917 152.177475 -20.158760 +v 135.560867 153.660797 -20.721100 +v 159.603821 152.126282 -19.028328 +v 150.383835 146.029648 -23.188408 +v 72.533478 -44.517212 -20.202187 +v 72.937782 -43.349434 -7.361664 +v 69.264336 -43.385269 -7.393120 +v 69.042862 -44.972454 -19.688271 +v -72.563751 -43.139473 -7.403000 +v -72.496475 -44.567028 -20.240814 +v -68.982971 -44.967403 -19.688263 +v -69.168488 -43.371918 -7.297516 +v 1.851158 -131.141724 -20.300171 +v -1.774940 -132.751434 -7.411209 +v -1.593923 -131.149353 -20.466057 +v 1.927811 -132.604141 -7.407585 +v 70.825340 -40.422913 -6.540070 +v -71.178009 -40.119747 -6.472839 +v 0.088357 -135.880478 -6.575195 +v 65.470718 -38.400539 -21.835922 +v 1.214519 6.506308 -21.881134 +v 6.099281 34.430176 -21.197113 +v -4.901570 32.485874 -21.847557 +v -1.211144 6.454718 -21.866783 +v -65.547363 -38.268429 -21.794327 +v 1.232241 -1.147531 -21.850609 +v -1.165418 -1.180292 -21.855385 +v 0.015106 -129.939423 -21.920036 +v 159.954422 152.570602 -11.528969 +v 161.055420 154.624710 -6.616859 +v 162.183365 154.918396 -12.748314 +v 159.635513 153.303711 -6.891357 +v -161.061340 154.581985 -6.798996 +v -159.893265 152.566681 -11.554298 +v -161.931458 154.734436 -11.534363 +v -159.704300 153.458221 -6.530960 +v -160.548996 191.197067 2.651169 +v -161.202499 170.626389 -6.828094 +v -158.123718 170.637863 -6.636147 +v -167.437225 160.932755 -6.630463 +v -169.194656 162.439255 -6.841843 +v -165.494751 151.220505 -11.426704 +v -178.537292 138.697495 -13.305962 +v -160.717468 156.118546 -13.510216 +v -165.620560 150.426590 -6.541855 +v -178.253555 137.955551 -6.644943 +v -167.439651 160.143524 -11.558136 +v -169.422150 161.996246 -11.466301 +v -178.151306 -123.547821 -20.563866 +v -126.543816 -139.344543 -2.755997 +v -137.052704 -141.478470 -6.703285 +v -136.770432 -138.538574 -6.578850 +v -182.264313 -129.397751 -7.072647 +v -181.514664 -129.224731 -20.514732 +v -182.303391 -134.879288 -7.039963 +v -181.614044 -135.003372 -20.203903 +v -176.943420 -140.308197 -7.104393 +v -176.851151 -139.554306 -20.239571 +v -143.261353 -140.758316 -21.276733 +v -164.144379 148.896713 -6.712646 +v -175.324677 136.648224 -6.736641 +v -178.822922 -123.033577 -6.772324 +v -160.964249 169.538864 -17.123825 +v -178.095093 152.132385 -16.862183 +v -173.015579 158.518005 -10.332787 +v -177.802292 153.584488 -9.332634 +v -178.197662 138.700546 -16.949608 +v -178.710876 149.349289 -9.305649 +v -178.533478 148.526672 -13.375534 +v 125.187515 -141.446335 -2.838600 +v 121.193810 -138.763718 -2.730759 +v 137.016083 -141.658264 -6.861809 +v 136.762405 -140.859253 -21.123222 +v -124.781265 -141.820648 -3.221420 +v 161.162170 170.709061 -6.769806 +v 160.602646 191.217224 2.667336 +v 167.504974 160.977478 -6.583878 +v 169.290573 162.443161 -6.947716 +v 158.223175 170.411819 -6.683296 +v 165.560715 151.237549 -11.442207 +v 178.579865 138.733170 -13.344040 +v 178.348114 137.910095 -6.667839 +v 164.949875 149.696793 -6.536827 +v 167.475998 160.149811 -11.540215 +v 169.467285 161.996140 -11.466301 +v 178.053101 -123.388802 -20.951309 +v 178.973404 -123.392303 -6.890442 +v 137.137177 -138.594040 -6.522949 +v 181.606140 -129.163162 -20.146194 +v 182.398392 -130.263382 -6.786545 +v 181.788712 -134.739609 -20.011169 +v 182.089767 -135.727020 -7.042419 +v 176.790833 -139.743256 -19.942543 +v 177.145203 -140.112915 -6.944420 +v 175.328293 137.037521 -6.690842 +v 172.830521 158.645020 -11.391129 +v 160.985580 169.562668 -17.128799 +v 178.184799 151.912323 -16.857933 +v 178.373352 152.749329 -9.344032 +v 173.143539 158.292053 -9.306511 +v 178.233490 138.459885 -17.217819 +v 178.580658 148.556946 -13.334953 +v 178.549072 149.483505 -9.213463 +v 4.292582 215.197006 -21.158554 +v -2.779376 215.475754 -20.286385 +v 35.124550 212.944061 -20.740456 +v 1.656116 216.223953 -5.248520 +v -35.485786 213.626465 -5.199699 +v -34.611435 212.522491 -21.489769 +v -90.716835 212.250015 -22.710617 +v -92.717674 213.797531 -6.823242 +v -94.702232 212.161911 -22.601624 +v -163.742676 200.139297 4.310905 +v -163.977417 204.531723 -7.322243 +v -164.122086 196.448227 -7.510689 +v -138.363327 -120.907356 -8.576401 +v -138.388107 -120.474228 -6.660919 +v -161.130203 156.601730 -17.318184 +v -159.879456 166.946869 -13.883270 +v -157.490906 157.239029 -16.292175 +v -157.533340 169.734772 -16.714340 +v -171.558731 156.564560 -9.246140 +v -157.791687 155.881027 -6.654831 +v -155.370209 148.051254 -22.038857 +v -159.164459 144.846451 -22.016647 +v -165.075989 151.418777 -18.916351 +v -159.627975 152.144211 -18.971344 +v -162.376770 154.277710 -18.859512 +v -162.071487 148.313980 -19.788956 +v -164.261230 149.420715 -23.612434 +v -157.904648 150.866043 -21.412254 +v -160.050095 153.363174 -23.320900 +v -163.391144 149.097687 -11.436684 +v -170.960999 156.641678 -11.439194 +v -2.245835 215.150818 -24.497337 +v -8.468756 212.949921 -23.868935 +v -145.333633 211.887909 -29.336601 +v -151.215073 212.930237 -29.325066 +v -156.515579 211.275787 -29.096184 +v -160.758804 207.575623 -29.288231 +v -138.849289 206.129944 -29.294472 +v -162.878113 201.869553 -29.380501 +v -137.755722 198.244675 -29.342140 +v -162.326065 195.539566 -29.231178 +v -140.144363 192.506439 -29.299492 +v -156.475113 188.882812 -29.348824 +v -147.549255 187.608185 -29.277229 +v -134.745560 154.937546 -6.632454 +v -131.114044 44.460217 -6.633171 +v -134.129669 -111.515366 -6.641815 +v -148.036026 152.773178 -6.691193 +v -68.499062 -38.227455 -6.743797 +v -6.313785 36.295158 -6.627113 +v 0.022429 -138.401993 -6.422340 +v -131.325882 -104.388931 -6.790306 +v -8.545619 38.256367 -6.604256 +v -129.417343 -105.602371 -6.661530 +v -11.687520 44.691334 -6.682350 +v -146.500534 186.751373 2.634109 +v -143.801437 187.840866 2.824577 +v -138.558121 168.308853 -6.655876 +v -103.432625 192.967636 -6.665916 +v -103.410339 210.042908 -6.661377 +v -106.211830 182.716354 -6.619385 +v -6.087251 56.321293 -6.565613 +v -144.746368 213.295197 -5.082672 +v -138.173813 207.603790 -5.462387 +v -136.742142 210.196106 -5.092682 +v -37.431084 210.414246 -5.221313 +v -8.953523 139.050766 -13.650070 +v -70.611809 138.944122 -13.375092 +v -66.263649 135.259094 -13.744614 +v -8.960551 135.410995 -13.623070 +v -113.083496 143.951523 -13.764191 +v -130.769028 143.837982 -13.272629 +v -107.018066 209.625519 -6.617348 +v -105.681175 197.910370 -6.660545 +v -107.936119 186.243805 -6.608582 +v -110.065834 185.324554 -6.827385 +v -135.768173 194.948639 3.307732 +v -137.110245 196.904953 3.847084 +v -116.455574 170.765427 -6.640526 +v -110.939171 179.281250 -6.778351 +v -123.467606 164.419785 -6.707214 +v -132.446106 160.954086 -6.599930 +v -130.502518 160.515274 -6.784340 +v -138.160309 193.468445 3.677650 +v -111.268661 182.184021 -6.731468 +v -136.216614 169.230789 -6.677757 +v -5.307908 -133.450836 -6.655022 +v -6.953038 -138.081635 -6.669586 +v -7.405159 -138.418106 -6.521301 +v -166.519653 -95.717827 -8.664833 +v -175.118881 -94.684158 -8.603493 +v -147.153503 -106.010246 -8.635620 +v -157.159988 -98.802414 -8.941696 +v -139.511841 -117.047668 -8.591309 +v -141.545883 -123.154305 -8.594070 +v -164.687256 -130.434006 -8.604431 +v -165.609360 -137.303589 -8.725487 +v -137.020508 -130.135269 -8.703712 +v -8.403294 54.466404 -6.683388 +v -11.712500 47.620602 -6.609306 +v -107.005226 178.705048 -6.637146 +v -131.079498 47.837345 -6.735466 +v -146.819077 184.867371 -18.919006 +v -135.470978 159.719925 -6.660057 +v -138.200363 158.258194 -18.716606 +v -136.839447 160.655319 -19.236084 +v -137.295456 157.482819 -6.739059 +v -131.342804 161.742432 -20.052299 +v -141.792557 187.097275 -19.415276 +v -137.125870 191.624435 -19.411766 +v -111.832253 180.766891 -20.074463 +v -135.434845 196.951248 -19.287659 +v -108.312241 187.742203 -18.070656 +v -109.800789 186.497055 -19.992874 +v -108.230881 208.890884 -19.911133 +v -136.239685 208.103989 -20.795570 +v -134.998672 209.278259 -19.678520 +v -157.837845 186.108566 0.096344 +v -156.261658 185.345474 -20.116676 +v -155.453445 187.396957 0.842529 +v -151.983795 185.380432 -18.970566 +v -7.331655 -135.019058 -21.576698 +v -134.846161 -135.101700 -21.558380 +v -8.966310 -137.401230 -19.395996 +v -136.661850 -137.406418 -19.213875 +v -174.350266 135.320114 -19.160851 +v -171.970551 139.467026 -19.101089 +v -171.655273 135.656662 -21.539978 +v -171.348679 -92.293518 -21.679703 +v -174.125443 -93.709190 -20.062416 +v -154.182602 159.099289 -21.710800 +v -153.442474 182.415680 -21.932869 +v -157.008392 157.018066 -18.849205 +v -174.139114 -121.897011 -19.931396 +v -173.550125 -98.818779 -20.690895 +v -170.589523 -120.793434 -21.842896 +v -140.750336 -134.616776 -21.695602 +v -164.668610 -136.196945 -20.353630 +v -163.119629 -131.540863 -21.314667 +v -141.025421 -137.343216 -19.105476 +v -172.631439 -138.492294 -23.379356 +v -167.491882 -136.482147 -24.977760 +v -179.066513 -129.941437 -25.480324 +v -179.061020 -134.076767 -25.473671 +v -101.340927 187.713318 -22.059891 +v -100.815598 207.178680 -21.701698 +v -104.704979 182.956482 -20.904892 +v -102.353851 192.947708 -20.256477 +v -102.301811 208.977249 -20.307297 +v -70.387566 140.182632 -21.377914 +v -9.835221 139.999786 -20.829033 +v -5.748727 58.253963 -21.377113 +v -64.050415 133.084198 -21.645638 +v -65.618126 134.188843 -20.308731 +v -9.563220 134.630051 -20.535896 +v -10.181370 132.203934 -21.849350 +v -164.728958 -124.309105 -21.883553 +v -165.240051 -126.268570 -20.583885 +v -169.071762 -123.246063 -19.968849 +v -143.917770 -119.000458 -20.827805 +v -161.789978 -102.611801 -21.838760 +v -150.326431 -110.578407 -21.761230 +v -163.296921 -100.522995 -20.296623 +v -154.329514 -105.088196 -20.201454 +v -147.633102 -111.579117 -20.130669 +v -141.598618 -124.671471 -21.348961 +v -148.933105 151.174805 -21.069923 +v -135.636810 153.043472 -21.357422 +v -146.138428 148.896606 -22.030190 +v -153.463043 150.215393 -21.841667 +v -144.588852 152.112000 -20.179390 +v -135.217224 -111.210915 -20.270538 +v -138.857193 -112.989227 -21.989510 +v -139.318710 -115.228424 -20.341400 +v -158.158157 -95.034927 -21.898949 +v -145.426895 -104.498726 -21.713188 +v -144.338348 -108.100342 -20.290253 +v -161.106018 -96.198456 -20.244781 +v -151.716278 -101.131233 -20.248199 +v -80.776810 143.346191 -20.360863 +v -82.813034 144.310577 -21.810455 +v -106.724258 174.828979 -21.787155 +v -107.275032 176.984634 -20.441803 +v -110.992912 142.459000 -20.078598 +v -110.699646 144.432556 -21.882080 +v -116.272240 163.193665 -21.840759 +v -113.534187 168.702240 -20.285461 +v -121.299850 161.481247 -20.272766 +v -129.806549 155.777100 -21.191994 +v -130.271408 148.145035 -20.935043 +v -129.950867 43.407894 -21.176712 +v -12.025169 43.267239 -20.982658 +v -128.674347 -101.459709 -21.578522 +v -129.562119 -103.291534 -20.254791 +v -9.760796 38.915634 -21.228149 +v -12.957077 49.107662 -21.231682 +v -10.032494 54.389465 -20.843307 +v -75.691383 136.846283 -21.310738 +v -130.124680 48.949783 -20.253258 +v -128.826004 50.202030 -21.733658 +v -129.836929 136.750854 -20.812698 +v -136.962387 -121.453659 -21.113983 +v -71.303207 -45.873814 -21.711525 +v -136.036957 -130.038193 -20.269424 +v -67.168602 -38.445755 -20.201584 +v -6.021089 35.041809 -20.337669 +v -176.820801 137.434341 -22.193024 +v -37.292976 209.325104 -19.716324 +v -0.234127 211.921402 -19.857712 +v -38.803570 206.908234 -21.861176 +v -109.977554 207.366348 -21.613998 +v -132.841125 205.188507 -21.850853 +v -6.959792 -132.678146 -19.567520 +v -165.527679 -127.548019 -8.628059 +v -175.188126 -122.417038 -8.682922 +v -142.498856 -119.495834 -8.675682 +v -6.473370 130.011612 -20.250168 +v -130.533142 137.738190 -13.470398 +v -79.733627 143.875488 -12.713425 +v -75.252892 137.907669 -13.300110 +v -80.165985 142.209076 -13.718025 +v -66.686569 133.574875 -12.731956 +v -156.870163 188.838776 -24.602272 +v -160.367386 191.406265 -20.912674 +v -160.094406 156.575729 -21.607002 +v -139.978729 -138.150421 -8.706970 +v -137.587540 -138.304214 -8.701851 +v -130.838165 142.175537 -16.979195 +v -112.773109 142.194595 -16.959251 +v -112.761124 144.140961 -16.844063 +v -130.808472 144.199356 -16.756821 +v -110.680687 148.300232 -21.990921 +v -167.292694 -98.539597 -8.718567 +v -175.274307 -97.818741 -8.677689 +v -155.663361 -102.901573 -8.713165 +v -147.054581 -110.937515 -8.705833 +v -169.656845 -124.058090 -8.719093 +v -139.438538 -117.961868 -6.760674 +v -113.046028 141.930740 -13.723366 +v -117.426361 171.552856 -19.240387 +v -124.390076 165.137268 -18.927185 +v -117.492210 165.723022 -6.678856 +v -131.308289 156.607529 -6.633759 +v -107.221962 198.502258 -19.882698 +v -155.584244 209.503677 -29.360420 +v -155.776123 209.382950 4.310905 +v -150.205383 210.895187 -29.389015 +v -150.438858 210.871811 4.310913 +v -144.901566 209.372910 -29.311287 +v -145.072235 209.492554 4.310905 +v -140.997803 205.427109 -29.358833 +v -159.548325 205.622681 -29.359138 +v -159.653946 205.424927 4.310905 +v -141.114182 205.614777 4.310905 +v -139.600525 200.046967 -29.390862 +v -161.041656 200.281158 -29.360527 +v -161.033142 200.058334 4.310905 +v -139.625366 200.277512 4.310905 +v -141.110199 194.713120 -29.359123 +v -159.683090 194.913620 -29.389397 +v -159.544327 194.721039 4.310905 +v -141.004578 194.910889 4.310905 +v -145.074280 190.832138 -29.360420 +v -155.756943 190.962906 -29.311272 +v -155.586288 190.843277 4.310905 +v -144.882385 190.952881 4.310905 +v -150.453125 189.440628 -29.389000 +v -150.219650 189.464035 4.310905 +v -110.927368 189.524429 -21.715942 +v -133.356125 198.127167 -21.451050 +v -115.087784 179.054550 -21.795609 +v -129.924332 164.100250 -21.547409 +v -137.414490 187.971405 -21.978989 +v -139.563583 160.206238 -21.429840 +v -145.353699 212.522629 -21.409119 +v -150.329254 214.200745 -6.454567 +v -157.345673 212.320709 -6.454567 +v -161.470016 191.502243 -6.286118 +v -135.539734 202.112305 -19.076508 +v -147.513138 155.625198 -6.753746 +v -147.811935 156.772507 -19.167503 +v -106.727242 159.071732 -21.987465 +v -5.911671 194.453323 -22.182114 +v -5.691106 206.101791 -22.185738 +v -145.416840 144.489761 -21.983658 +v -154.147537 142.589752 -21.990929 +v -149.249359 141.008759 -21.990929 +v -150.195114 213.017365 4.310913 +v -156.642761 211.331131 4.310913 +v -161.502182 206.590210 4.310905 +v -137.436981 200.235168 4.310905 +v -161.543854 193.775314 4.310905 +v -150.333771 187.254196 4.310905 +v -139.283524 206.681213 4.310905 +v -143.958878 211.304337 4.310913 +v -156.787643 189.086227 4.310905 +v -139.204697 193.667694 4.310905 +v -143.883957 189.073608 4.310905 +v -163.128525 200.177658 4.310905 +v 163.776978 200.461960 4.310905 +v 164.147766 203.875793 -7.477638 +v 163.911407 196.227371 -7.367752 +v 161.351288 156.917053 -17.231216 +v 157.630356 169.658737 -16.647331 +v 157.802109 157.288513 -15.551605 +v 156.984711 157.084961 -19.054047 +v 159.946167 166.934326 -13.769234 +v 171.621078 156.557327 -9.224022 +v 157.837631 155.951248 -6.703140 +v 159.523575 145.139450 -22.075165 +v 162.469757 148.845413 -19.069099 +v 162.421783 154.305008 -18.838562 +v 165.150177 151.424210 -18.883682 +v 164.155380 149.275009 -23.611534 +v 160.762909 153.695114 -23.013489 +v 163.429047 149.079147 -11.423531 +v 171.014587 156.663544 -11.446541 +v 9.674154 208.876724 -21.861069 +v 0.022587 211.694839 -22.191391 +v -6.394768 209.739807 -21.921707 +v -10.347285 205.519913 -22.142242 +v 5.862553 206.152130 -22.178185 +v -1.059555 205.210861 -22.190346 +v 3.848861 203.626495 -22.189873 +v -4.885955 201.752090 -22.191231 +v 4.929917 198.581970 -22.182350 +v 7.571854 194.868347 -22.193092 +v -3.803720 196.709229 -22.190231 +v 1.104703 195.124878 -22.190224 +v 5.503792 192.661942 -22.170013 +v 131.330109 148.727509 -24.294884 +v 9.161175 212.634048 -24.015251 +v 158.572891 209.895599 -29.315483 +v 150.635269 213.089615 -29.255821 +v 143.150314 210.636078 -29.316856 +v 162.424271 204.382797 -29.270302 +v 138.050430 204.001007 -29.301262 +v 162.759415 196.384079 -29.282249 +v 138.403610 195.821976 -29.319023 +v 157.464355 189.572266 -29.298409 +v 142.160950 190.423584 -29.272194 +v 150.218872 187.311615 -29.317436 +v -3.964236 54.180027 -6.835030 +v 0.963475 55.017479 -6.597519 +v 5.292083 53.270729 -6.701561 +v 8.053016 49.920444 -6.635902 +v -7.876510 50.383583 -6.587997 +v 8.841575 44.333378 -6.702499 +v -8.789863 46.197147 -6.604973 +v -7.924628 42.190102 -6.610580 +v 5.313136 39.159691 -6.677528 +v -4.145678 38.245773 -6.714729 +v 1.246693 37.451061 -6.660019 +v 134.188431 -111.515060 -6.648651 +v 131.271683 44.508575 -6.635986 +v 134.905289 154.778473 -6.632812 +v 150.608185 152.795792 -6.665970 +v 6.365237 36.285835 -6.635536 +v 68.520401 -38.139568 -6.707047 +v -0.497014 34.744537 -6.670921 +v 128.742432 -105.259445 -6.628502 +v 8.604385 38.249012 -6.586662 +v 11.708475 44.720119 -6.619606 +v 145.112076 185.381149 2.051086 +v 147.193481 186.889252 2.891350 +v 138.556610 168.283676 -6.677299 +v 103.646851 209.967850 -6.686440 +v 102.991211 198.599442 -6.625725 +v 106.067642 182.552383 -6.600357 +v 6.215384 56.269577 -6.610374 +v 0.100162 57.497532 -6.706436 +v 39.776573 213.408478 -5.144119 +v 145.318588 213.394318 -5.115936 +v 136.616760 210.243408 -5.066475 +v 138.242310 207.537415 -5.591957 +v 37.307308 210.394165 -5.301765 +v 0.681795 213.189774 -5.169701 +v -4.169261 145.116623 -13.690987 +v 66.160744 135.193420 -13.759041 +v 66.717758 133.576477 -12.748726 +v 9.013790 135.359024 -13.661545 +v -4.448413 129.428177 -13.668404 +v 130.820847 143.851318 -13.281700 +v 113.063492 143.915863 -13.778397 +v 107.270195 209.667908 -6.941322 +v 137.074097 196.195282 3.674377 +v 138.061966 193.697128 3.834724 +v 110.119781 185.178101 -6.755440 +v 115.981972 171.214188 -6.578094 +v 111.004967 179.227020 -6.776718 +v 121.166237 166.222122 -6.714737 +v 132.519836 160.997925 -6.566330 +v 130.761108 160.600647 -6.784752 +v 136.247269 169.282440 -6.654945 +v 143.592621 188.005997 2.674347 +v 7.119488 -138.180847 -6.864021 +v 5.265780 -133.534348 -6.613327 +v 138.373688 -120.388748 -6.599388 +v 165.527710 -127.538223 -8.667831 +v 142.656509 -119.732552 -8.655533 +v 175.188034 -94.595039 -8.641533 +v 163.127243 -96.249886 -8.823257 +v 152.035202 -102.083313 -8.614868 +v 144.732971 -109.288467 -8.628487 +v 139.575836 -116.926231 -8.566360 +v 141.544373 -123.175293 -8.628883 +v 164.617599 -130.468796 -8.601265 +v 165.667984 -137.265930 -8.755608 +v 11.658736 47.602062 -6.588333 +v 8.473352 54.484299 -6.622986 +v 107.103966 178.736145 -6.702545 +v 131.243683 47.882088 -6.739136 +v 131.346420 156.623795 -6.610062 +v 117.910904 165.339447 -6.667320 +v 147.049133 185.014984 -18.865822 +v 135.793213 158.694504 -6.722626 +v 136.498520 160.381317 -17.775612 +v 138.206589 158.575699 -19.536224 +v 129.471207 161.712769 -18.179031 +v 131.479309 161.915451 -20.044724 +v 141.860550 186.938675 -19.422592 +v 137.297073 191.631409 -19.410431 +v 111.234497 181.993881 -6.677956 +v 111.991226 181.008362 -20.046074 +v 135.549622 196.896423 -19.353706 +v 109.522430 186.577133 -20.010109 +v 107.719139 187.041672 -6.744041 +v 108.129768 209.006363 -19.853180 +v 135.779373 208.720764 -20.767891 +v 136.820923 206.896011 -19.336014 +v 157.892273 186.161591 0.164352 +v 156.287003 185.326309 -20.182487 +v 155.507401 187.395462 0.903572 +v 152.212173 185.387955 -18.984032 +v 134.535309 -134.682419 -21.757393 +v 7.349079 -135.027695 -21.531502 +v 8.801372 -137.263870 -19.583405 +v 136.682556 -137.401749 -19.471397 +v 173.905853 136.899261 -19.236992 +v 171.677643 135.835510 -21.543739 +v 174.136032 -93.770981 -20.065468 +v 170.962418 -92.333443 -21.822792 +v 153.880859 182.498520 -21.903931 +v 154.004745 159.088928 -21.714745 +v 171.667450 -100.194130 -21.691376 +v 173.697556 -121.574272 -20.533577 +v 167.956421 -121.805908 -21.949585 +v 174.389526 -98.576515 -19.450218 +v 164.686920 -136.183319 -20.357185 +v 140.799698 -134.493454 -21.711487 +v 162.013611 -132.506607 -21.908752 +v 141.072067 -137.305008 -19.242119 +v 168.473434 -137.152969 -24.581749 +v 179.291824 -132.727066 -25.463295 +v 178.834885 -129.510925 -25.495323 +v 177.457031 -136.123123 -25.492073 +v 101.901169 198.605179 -20.229187 +v 100.336609 206.858154 -21.806580 +v 103.191338 183.040268 -21.825333 +v 104.721794 182.778702 -20.551651 +v 102.597069 209.001358 -20.199417 +v 70.544029 140.298660 -21.361679 +v 9.529513 139.738678 -20.328453 +v 10.666842 141.576202 -21.877815 +v 6.595777 146.975464 -21.897682 +v 0.240258 148.471924 -21.764893 +v -0.073387 146.954208 -20.281822 +v 6.485283 144.525299 -20.320900 +v -6.451054 146.401382 -21.820602 +v -5.810882 144.927414 -20.325790 +v 1.564306 52.325787 -21.730461 +v 5.995152 47.888664 -21.828041 +v -7.174526 46.245335 -21.177559 +v -4.729176 50.064999 -21.848450 +v 3.684542 40.874756 -21.832649 +v -4.346519 41.711464 -21.780731 +v -1.954695 53.820606 -20.261002 +v 5.567412 51.759987 -20.271179 +v -6.586926 50.034092 -20.226860 +v 7.668138 46.167225 -20.226791 +v -6.610544 42.388493 -20.226845 +v 5.308502 40.421764 -20.324127 +v -2.145041 38.702789 -20.332909 +v 0.486515 59.214108 -21.371986 +v 5.638361 58.018211 -21.291145 +v 65.691246 134.121918 -20.301651 +v 63.744923 133.483551 -21.674477 +v 10.144151 134.410278 -20.970619 +v -5.576184 127.394180 -21.808090 +v 3.581550 126.297829 -21.740662 +v 5.591251 129.124161 -20.236107 +v -1.259079 127.676979 -20.349670 +v 165.103683 -125.940002 -21.177567 +v 168.572632 -123.576584 -20.117851 +v 144.382309 -119.085472 -21.068153 +v 143.690125 -118.021210 -20.167358 +v 150.073090 -111.083870 -21.802071 +v 160.251541 -103.253273 -21.792419 +v 167.214111 -99.393028 -20.158661 +v 158.827438 -102.352325 -20.265266 +v 150.585800 -108.438423 -20.347023 +v 163.803116 -131.312073 -20.337509 +v 141.741028 -124.591103 -21.306541 +v 135.289047 -111.153938 -20.324257 +v 138.591949 -112.941772 -21.933968 +v 139.163879 -115.238411 -20.349152 +v 161.176941 -94.752571 -21.615341 +v 151.375595 -97.472633 -21.990913 +v 148.105240 -101.933144 -21.633972 +v 160.889328 -96.212296 -20.254082 +v 151.654175 -101.156929 -20.228409 +v 144.284012 -108.179527 -20.259781 +v 80.757660 143.379898 -20.325470 +v 82.900925 144.233078 -21.798576 +v 107.085548 173.978012 -21.956505 +v 107.161362 176.848862 -20.678329 +v 110.746651 144.387909 -21.881660 +v 111.096939 142.420044 -19.898735 +v 118.237526 161.655304 -21.837692 +v 117.191254 164.671539 -20.128876 +v 130.025467 155.855026 -20.894005 +v 130.658768 147.945282 -19.963684 +v 128.601074 148.288361 -21.918381 +v 129.996094 43.457169 -21.079597 +v 12.126481 43.090393 -21.270790 +v 130.212753 -102.592026 -20.477074 +v 128.247650 -100.841614 -21.717056 +v 9.753262 38.985340 -21.081909 +v 128.358368 -103.077766 -20.014992 +v 12.728791 49.100163 -21.178001 +v 10.039973 54.378143 -20.886436 +v 75.670387 136.712296 -21.332863 +v 129.742310 49.175961 -21.029976 +v 129.981323 136.830368 -20.736351 +v 137.148361 -121.405403 -20.815125 +v 71.340210 -45.928299 -21.770782 +v 136.097275 -129.992508 -20.257462 +v 67.183220 -38.290020 -20.315948 +v 0.144105 33.641582 -20.208618 +v 176.759949 137.737869 -22.255150 +v 38.668621 209.289780 -19.747826 +v 109.965714 207.429367 -21.585030 +v 133.042191 204.788727 -21.863312 +v 7.010648 -132.660904 -19.550392 +v 175.221085 -122.397202 -8.732147 +v 130.838455 -105.306984 -6.707581 +v 9.024637 139.063339 -13.744987 +v 130.568115 137.655457 -13.389244 +v 79.793350 143.892563 -12.714653 +v 80.295410 142.209747 -13.760292 +v 75.379494 137.977936 -13.327591 +v 70.678337 138.927704 -13.346230 +v 34.215714 209.976013 -24.350395 +v 145.000046 212.321960 -21.530785 +v 156.915329 188.838669 -24.602272 +v 159.595428 156.243668 -22.727386 +v 160.345154 191.385422 -21.108635 +v 140.081223 -138.163528 -8.713135 +v 137.688324 -138.306229 -8.613075 +v 112.815361 144.184341 -16.769897 +v 112.803619 142.198654 -16.965546 +v 130.867615 144.098785 -16.872955 +v 130.883301 142.175446 -16.979195 +v 110.725822 148.300156 -21.990921 +v 175.319443 -97.778183 -8.611496 +v 167.085098 -98.557785 -8.701279 +v 155.941360 -102.755760 -8.737816 +v 146.992966 -111.133377 -8.727089 +v 138.410919 -120.966415 -8.668976 +v 137.063980 -130.138809 -8.700378 +v 169.828064 -124.008560 -8.666565 +v 139.505783 -117.962143 -6.811073 +v 113.175972 141.911102 -13.696899 +v 115.408173 174.141922 -18.927223 +v 121.801582 167.236511 -19.250145 +v 106.911491 197.961563 -19.137573 +v 105.730415 197.819962 -6.667847 +v 4.300131 141.090210 -13.459641 +v 0.021214 142.836945 -13.471100 +v 4.308707 145.063171 -13.648087 +v 5.638952 137.221909 -13.471031 +v -3.845173 141.499725 -13.471031 +v -5.593826 137.219208 -13.471039 +v 3.890235 132.941757 -13.477333 +v -4.254326 133.350403 -13.475052 +v 3.950388 129.235764 -13.732201 +v 0.023912 131.604172 -13.471100 +v 145.122955 209.524612 -29.390465 +v 144.927551 209.382858 4.310905 +v 150.491211 210.878998 -29.358879 +v 150.264816 210.871704 4.310913 +v 155.802109 209.372803 -29.311287 +v 155.631454 209.492447 4.310905 +v 159.728271 205.422089 -29.389397 +v 141.155350 205.622589 -29.359138 +v 141.049744 205.424835 4.310905 +v 159.589508 205.614685 4.310905 +v 161.086823 200.054550 -29.360527 +v 139.662033 200.281082 -29.360527 +v 139.670532 200.058228 4.310905 +v 161.078308 200.277405 4.310905 +v 159.593491 194.713013 -29.359138 +v 141.037369 194.915558 -29.359886 +v 141.159348 194.720947 4.310905 +v 159.699112 194.910797 4.310905 +v 155.629410 190.832031 -29.360420 +v 144.903076 190.939774 -29.389107 +v 145.117401 190.843185 4.310905 +v 155.821289 190.952774 4.310905 +v 150.264008 189.456589 -29.359337 +v 150.484024 189.463928 4.310905 +v 110.630531 190.177567 -21.797333 +v 133.445404 198.176941 -21.451454 +v 129.348663 164.873917 -21.795540 +v 114.357361 179.673523 -21.547394 +v 138.164124 187.241943 -21.992943 +v 138.716232 160.837570 -21.219070 +v 150.374420 214.200653 -6.454567 +v 157.390839 212.320602 -6.454567 +v 162.527161 207.184235 -6.454575 +v 161.491089 191.462936 -5.970657 +v 23.998932 159.121658 -21.993187 +v 5.425064 160.354660 -21.988777 +v 2.858457 160.369919 -21.990929 +v 2.638996 157.789032 -21.979301 +v 5.205447 157.773453 -21.990929 +v 135.565552 202.339172 -19.037224 +v 147.574188 155.611877 -6.695641 +v 147.855225 156.766907 -19.151581 +v 106.772377 159.071671 -21.987610 +v 145.333298 144.987106 -21.979103 +v 153.825775 142.222748 -21.991631 +v 148.793320 141.142944 -21.990738 +v 150.300507 213.057449 4.310913 +v 156.885254 211.217102 4.310913 +v 161.582489 206.475555 4.310905 +v 161.566040 193.747559 4.310905 +v 137.478989 200.150909 4.310905 +v 150.433685 187.267319 4.310905 +v 139.251785 206.567230 4.310905 +v 143.872208 211.222794 4.310913 +v 156.840302 189.089951 4.310905 +v 139.300720 193.627426 4.310905 +v 144.004471 189.035065 4.310905 +v 163.174622 200.156128 4.310905 +v 0.286651 5.984797 -15.078590 +v -0.241313 -0.671797 -15.079079 +v -148.567001 183.217865 -21.316322 +v 148.114471 183.267090 -21.182137 +v 1.576821 142.015381 -18.181870 +v -3.355484 140.963226 -18.181625 +v 4.276042 139.676300 -18.182007 +v 4.827993 135.657761 -18.181976 +v -4.888930 137.220566 -18.182007 +v -3.720098 133.842514 -18.181664 +v 1.189475 132.299637 -18.181740 +v -172.315140 -127.103737 -18.182022 +v -176.340225 -127.655678 -18.181984 +v -169.631027 -129.453415 -18.181984 +v -178.689163 -130.349426 -18.182671 +v -169.089188 -133.466599 -18.181747 +v -177.627411 -135.287033 -18.181480 +v -172.836411 -136.842178 -18.181274 +v 177.692886 -128.537369 -18.182640 +v 173.929428 -126.997780 -18.181984 +v 170.553925 -128.162674 -18.182083 +v 178.722702 -133.467819 -18.181656 +v 169.004333 -133.069305 -18.181686 +v 176.385178 -136.162735 -18.181976 +v 172.356201 -136.714005 -18.182083 +v 151.730820 150.979553 -22.989319 +v 155.235397 147.773865 -23.018501 +v 145.331955 147.107742 -23.011848 +v 154.192642 142.589615 -22.993195 +v 146.923035 142.222763 -22.993202 +v 150.374405 141.029419 -22.993271 +v -146.806229 149.681122 -23.008011 +v -151.847397 150.977554 -22.997025 +v -155.360229 147.229263 -23.015709 +v -145.291382 144.977448 -22.990540 +v -153.780655 142.222870 -22.993202 +v -148.748199 141.143051 -22.992989 +v -4.254067 141.086029 -15.977013 +v 1.231829 142.856964 -15.976852 +v 5.508458 138.991516 -15.976845 +v -5.463331 135.449600 -15.976883 +v 4.299209 133.355133 -15.976776 +v -1.186682 131.584167 -15.976807 +v 174.389526 -98.576515 -19.450218 +v 175.319443 -97.778183 -8.611496 +v 175.319443 -97.778183 -8.611496 +v 143.150314 210.636078 -29.316856 +v 138.050430 204.001007 -29.301262 +v 139.086014 193.650436 -25.499138 +v 143.857056 188.879379 -25.499138 +v 151.920288 187.069275 -25.557167 +v -7.924628 42.190102 -6.610580 +v -4.145678 38.245773 -6.714729 +v 135.560867 153.660797 -20.721100 +v 135.560867 153.660797 -20.721100 +v 135.560867 153.660797 -20.721100 +v 134.905289 154.778473 -6.632812 +v 134.905289 154.778473 -6.632812 +v 150.608185 152.795792 -6.665970 +v 159.635513 153.303711 -6.891357 +v 159.635513 153.303711 -6.891357 +v 63.744923 133.483551 -21.674477 +v 63.744923 133.483551 -21.674477 +v 10.144151 134.410278 -20.970619 +v 10.144151 134.410278 -20.970619 +v 39.776573 213.408478 -5.144119 +v 145.318588 213.394318 -5.115936 +v -172.438446 -137.232834 -25.478844 +v -175.198517 -137.161591 -25.503517 +v -175.161560 -134.784622 -18.206093 +v -175.161560 -134.784622 -18.206093 +v -175.161560 -134.784622 -18.206093 +v -176.909042 -133.052216 -15.964828 +v -176.909042 -133.052216 -15.964828 +v -176.909042 -133.052216 -15.964828 +v -173.231216 -134.953842 -15.976738 +v -173.231216 -134.953842 -15.976738 +v 170.904892 -133.052368 -15.965698 +v 170.904892 -133.052368 -15.965698 +v 170.904892 -133.052368 -15.965698 +v 174.582703 -134.953964 -15.977104 +v 174.582703 -134.953964 -15.977104 +v 164.617599 -130.468796 -8.601265 +v 164.617599 -130.468796 -8.601265 +v 165.667984 -137.265930 -8.755608 +v 165.667984 -137.265930 -8.755608 +v 143.592621 188.005997 2.674347 +v 143.592621 188.005997 2.674347 +v 138.061966 193.697128 3.834724 +v 138.061966 193.697128 3.834724 +v -169.075012 -134.725571 -15.972931 +v -172.140060 -137.356873 -15.970619 +v 175.638657 -125.826591 -6.692383 +v 175.638657 -125.826591 -6.692383 +v 179.189178 -128.743271 -6.784256 +v 178.555298 -136.526535 -6.584206 +v 178.555298 -136.526535 -6.584206 +v 173.263443 -137.930267 -6.608742 +v 173.263443 -137.930267 -6.608742 +v 152.599472 150.605453 -21.582954 +v 155.374359 147.892990 -22.090553 +v 155.374359 147.892990 -22.090553 +v 72.533478 -44.517212 -20.202187 +v 72.937782 -43.349434 -7.361664 +v 72.937782 -43.349434 -7.361664 +v 1.232241 -1.147531 -21.850609 +v 1.232241 -1.147531 -21.850609 +v -1.165418 -1.180292 -21.855385 +v -1.165418 -1.180292 -21.855385 +v -169.194656 162.439255 -6.841843 +v -169.194656 162.439255 -6.841843 +v -169.422150 161.996246 -11.466301 +v -169.422150 161.996246 -11.466301 +v 9.013790 135.359024 -13.661545 +v 9.013790 135.359024 -13.661545 +v -6.473370 130.011612 -20.250168 +v -1.259079 127.676979 -20.349670 +v 142.656509 -119.732552 -8.655533 +v 142.656509 -119.732552 -8.655533 +v 143.690125 -118.021210 -20.167358 +v -126.543816 -139.344543 -2.755997 +v -126.543816 -139.344543 -2.755997 +v -126.543816 -139.344543 -2.755997 +v 121.193810 -138.763718 -2.730759 +v 170.962418 -92.333443 -21.822792 +v 161.176941 -94.752571 -21.615341 +v 151.375595 -97.472633 -21.990913 +v 151.375595 -97.472633 -21.990913 +v 129.996094 43.457169 -21.079597 +v 129.996094 43.457169 -21.079597 +v 12.126481 43.090393 -21.270790 +v 12.126481 43.090393 -21.270790 +v 130.212753 -102.592026 -20.477074 +v 130.212753 -102.592026 -20.477074 +v 75.670387 136.712296 -21.332863 +v 75.670387 136.712296 -21.332863 +v 129.981323 136.830368 -20.736351 +v 129.981323 136.830368 -20.736351 +v 136.762405 -140.859253 -21.123222 +v 112.815361 144.184341 -16.769897 +v 112.815361 144.184341 -16.769897 +v 112.803619 142.198654 -16.965546 +v 112.803619 142.198654 -16.965546 +v 130.867615 144.098785 -16.872955 +v 130.867615 144.098785 -16.872955 +v 3.950388 129.235764 -13.732201 +v 159.589508 205.614685 4.310905 +v 161.078308 200.277405 4.310905 +v -103.432625 192.967636 -6.665916 +v -103.410339 210.042908 -6.661377 +v -103.410339 210.042908 -6.661377 +v -106.211830 182.716354 -6.619385 +v -106.211830 182.716354 -6.619385 +v 144.004471 189.035065 4.310905 +v -7.405159 -138.418106 -6.521301 +v -6.953038 -138.081635 -6.669586 +v -6.953038 -138.081635 -6.669586 +v -110.065834 185.324554 -6.827385 +v -110.065834 185.324554 -6.827385 +v -109.800789 186.497055 -19.992874 +v -136.239685 208.103989 -20.795570 +v -136.239685 208.103989 -20.795570 +v -136.239685 208.103989 -20.795570 +v -134.998672 209.278259 -19.678520 +v -172.570389 -126.873329 -25.390205 +v -172.570389 -126.873329 -25.390205 +v -172.315140 -127.103737 -18.182022 +v -172.315140 -127.103737 -18.182022 +v -176.340225 -127.655678 -18.181984 +v -178.689163 -130.349426 -18.182671 +v -178.689163 -130.349426 -18.182671 +v 144.927551 209.382858 4.310905 +v 141.049744 205.424835 4.310905 +v -164.668610 -136.196945 -20.353630 +v -163.119629 -131.540863 -21.314667 +v -163.119629 -131.540863 -21.314667 +v -146.806229 149.681122 -23.008011 +v -151.847397 150.977554 -22.997025 +v -151.847397 150.977554 -22.997025 +v -151.847397 150.977554 -22.997025 +v -159.627975 152.144211 -18.971344 +v -135.636810 153.043472 -21.357422 +v -135.636810 153.043472 -21.357422 +v -139.511841 -117.047668 -8.591309 +v -139.511841 -117.047668 -8.591309 +v -139.511841 -117.047668 -8.591309 +v -139.438538 -117.961868 -6.760674 +v -139.438538 -117.961868 -6.760674 +v -145.072235 209.492554 4.310905 +v -141.114182 205.614777 4.310905 +v -139.283524 206.681213 4.310905 +v -143.958878 211.304337 4.310913 +v 157.802109 157.288513 -15.551605 +v 157.802109 157.288513 -15.551605 +v 156.984711 157.084961 -19.054047 +v 157.837631 155.951248 -6.703140 +v 157.837631 155.951248 -6.703140 +v 5.508458 138.991516 -15.976845 +v 4.299209 133.355133 -15.976776 +v 4.299209 133.355133 -15.976776 +v -1.059555 205.210861 -22.190346 +v -1.059555 205.210861 -22.190346 +v 3.848861 203.626495 -22.189873 +v 3.848861 203.626495 -22.189873 +v 137.339615 200.167816 -25.499138 +v 139.783234 208.256363 -25.146339 +v 158.572891 209.895599 -29.315483 +v 150.635269 213.089615 -29.255821 +v 162.424271 204.382797 -29.270302 +v 142.160950 190.423584 -29.272194 +v 150.218872 187.311615 -29.317436 +v -179.061020 -134.076767 -25.473671 +v -179.061020 -134.076767 -25.473671 +v -177.627411 -135.287033 -18.181480 +v -177.627411 -135.287033 -18.181480 +v -6.313785 36.295158 -6.627113 +v -6.313785 36.295158 -6.627113 +v -0.497014 34.744537 -6.670921 +v 8.604385 38.249012 -6.586662 +v 8.604385 38.249012 -6.586662 +v 11.708475 44.720119 -6.619606 +v 11.708475 44.720119 -6.619606 +v -109.623741 149.238708 -25.205666 +v -109.623741 149.238708 -25.205666 +v -110.750694 141.348404 -25.031334 +v -110.750694 141.348404 -25.031334 +v 5.061268 135.945602 -25.419319 +v 5.061268 135.945602 -25.419319 +v 3.515829 140.988586 -25.346199 +v 170.890991 -130.831635 -18.192596 +v 170.890991 -130.831635 -18.192596 +v 170.890991 -130.831635 -18.192596 +v 172.851776 -128.870819 -15.966530 +v 172.851776 -128.870819 -15.966530 +v 172.851776 -128.870819 -15.966530 +v 175.007095 -128.870834 -18.192589 +v 175.007095 -128.870834 -18.192589 +v 175.007095 -128.870834 -18.192589 +v 1.386298 140.432175 -18.174553 +v 1.386298 140.432175 -18.174553 +v 3.036331 135.805389 -18.210747 +v 3.036331 135.805389 -18.210747 +v 3.036331 135.805389 -18.210747 +v -172.345596 -126.487106 -15.981163 +v -168.429169 -130.180222 -15.974098 +v -168.429169 -130.180222 -15.974098 +v 131.330109 148.727509 -24.294884 +v 130.658768 147.945282 -19.963684 +v 137.297073 191.631409 -19.410431 +v 111.991226 181.008362 -20.046074 +v 111.991226 181.008362 -20.046074 +v 180.225159 -132.056870 -6.496109 +v 131.771118 141.097137 -25.230827 +v 109.864250 141.394897 -25.148247 +v 109.864250 141.394897 -25.148247 +v 69.264336 -43.385269 -7.393120 +v 69.264336 -43.385269 -7.393120 +v 70.825340 -40.422913 -6.540070 +v 70.825340 -40.422913 -6.540070 +v 70.825340 -40.422913 -6.540070 +v 161.055420 154.624710 -6.616859 +v 161.055420 154.624710 -6.616859 +v 162.183365 154.918396 -12.748314 +v 162.183365 154.918396 -12.748314 +v 162.183365 154.918396 -12.748314 +v 162.183365 154.918396 -12.748314 +v -178.095093 152.132385 -16.862183 +v -178.197662 138.700546 -16.949608 +v 80.757660 143.379898 -20.325470 +v 80.757660 143.379898 -20.325470 +v 175.328293 137.037521 -6.690842 +v 161.162170 170.709061 -6.769806 +v 161.162170 170.709061 -6.769806 +v 160.985580 169.562668 -17.128799 +v 160.985580 169.562668 -17.128799 +v 12.728791 49.100163 -21.178001 +v 12.728791 49.100163 -21.178001 +v 10.039973 54.378143 -20.886436 +v 10.039973 54.378143 -20.886436 +v 129.742310 49.175961 -21.029976 +v 129.742310 49.175961 -21.029976 +v 131.271683 44.508575 -6.635986 +v 131.271683 44.508575 -6.635986 +v 79.793350 143.892563 -12.714653 +v 79.793350 143.892563 -12.714653 +v 80.295410 142.209747 -13.760292 +v 80.295410 142.209747 -13.760292 +v -138.849289 206.129944 -29.294472 +v -137.755722 198.244675 -29.342140 +v 155.631454 209.492447 4.310905 +v 155.821289 190.952774 4.310905 +v 150.484024 189.463928 4.310905 +v -66.263649 135.259094 -13.744614 +v -66.263649 135.259094 -13.744614 +v -8.960551 135.410995 -13.623070 +v -8.960551 135.410995 -13.623070 +v 137.074097 196.195282 3.674377 +v 137.074097 196.195282 3.674377 +v 137.478989 200.150909 4.310905 +v 150.433685 187.267319 4.310905 +v 156.840302 189.089951 4.310905 +v -0.241313 -0.671797 -15.079079 +v -0.241313 -0.671797 -15.079079 +v -111.268661 182.184021 -6.731468 +v -111.268661 182.184021 -6.731468 +v -111.832253 180.766891 -20.074463 +v -111.832253 180.766891 -20.074463 +v -3.453289 133.438507 -25.370201 +v -3.453289 133.438507 -25.370201 +v 1.635656 132.326920 -25.396355 +v 1.635656 132.326920 -25.396355 +v -3.845173 141.499725 -13.471031 +v -3.845173 141.499725 -13.471031 +v -4.254067 141.086029 -15.977013 +v -4.254067 141.086029 -15.977013 +v 138.591949 -112.941772 -21.933968 +v -174.125443 -93.709190 -20.062416 +v -174.125443 -93.709190 -20.062416 +v -161.106018 -96.198456 -20.244781 +v -131.325882 -104.388931 -6.790306 +v -131.325882 -104.388931 -6.790306 +v -129.562119 -103.291534 -20.254791 +v -129.562119 -103.291534 -20.254791 +v -129.417343 -105.602371 -6.661530 +v -129.417343 -105.602371 -6.661530 +v -9.563220 134.630051 -20.535896 +v -139.978729 -138.150421 -8.706970 +v -139.978729 -138.150421 -8.706970 +v -137.587540 -138.304214 -8.701851 +v -137.587540 -138.304214 -8.701851 +v -141.545883 -123.154305 -8.594070 +v -141.545883 -123.154305 -8.594070 +v -139.625366 200.277512 4.310905 +v -137.110245 196.904953 3.847084 +v -137.436981 200.235168 4.310905 +v 4.929917 198.581970 -22.182350 +v 4.929917 198.581970 -22.182350 +v 1.104703 195.124878 -22.190224 +v 1.104703 195.124878 -22.190224 +v 138.403610 195.821976 -29.319023 +v 156.677338 150.286682 -25.356483 +v 150.047638 146.032303 -25.463173 +v 150.047638 146.032303 -25.463173 +v -174.962158 -128.870667 -15.966057 +v -174.962158 -128.870667 -15.966057 +v -174.962158 -128.870667 -15.966057 +v -171.574402 -129.821060 -15.977112 +v -171.574402 -129.821060 -15.977112 +v 176.239517 -129.821182 -15.976158 +v 176.239517 -129.821182 -15.976158 +v 177.008362 -133.170975 -18.172676 +v 177.008362 -133.170975 -18.172676 +v -2.696982 139.212982 -15.973724 +v -2.696982 139.212982 -15.973724 +v -2.323520 135.099884 -15.976128 +v -2.323520 135.099884 -15.976128 +v -177.720459 -127.529480 -15.988594 +v -177.720459 -127.529480 -15.988594 +v -179.352753 -133.676636 -15.973999 +v -179.352753 -133.676636 -15.973999 +v 102.597069 209.001358 -20.199417 +v 102.597069 209.001358 -20.199417 +v 102.597069 209.001358 -20.199417 +v -159.893265 152.566681 -11.554298 +v -159.893265 152.566681 -11.554298 +v -161.931458 154.734436 -11.534363 +v -161.931458 154.734436 -11.534363 +v -159.704300 153.458221 -6.530960 +v -159.704300 153.458221 -6.530960 +v -159.704300 153.458221 -6.530960 +v -173.015579 158.518005 -10.332787 +v -173.015579 158.518005 -10.332787 +v -173.015579 158.518005 -10.332787 +v 178.373352 152.749329 -9.344032 +v 173.143539 158.292053 -9.306511 +v 173.143539 158.292053 -9.306511 +v 131.243683 47.882088 -6.739136 +v 131.243683 47.882088 -6.739136 +v 134.535309 -134.682419 -21.757393 +v 137.148361 -121.405403 -20.815125 +v -4.901570 32.485874 -21.847557 +v 0.144105 33.641582 -20.208618 +v 130.568115 137.655457 -13.389244 +v 130.568115 137.655457 -13.389244 +v -157.490906 157.239029 -16.292175 +v -157.791687 155.881027 -6.654831 +v -157.791687 155.881027 -6.654831 +v -157.791687 155.881027 -6.654831 +v -163.391144 149.097687 -11.436684 +v -163.391144 149.097687 -11.436684 +v 155.941360 -102.755760 -8.737816 +v 146.992966 -111.133377 -8.727089 +v 107.719139 187.041672 -6.744041 +v 105.730415 197.819962 -6.667847 +v 138.716232 160.837570 -21.219070 +v 148.114471 183.267090 -21.182137 +v -140.144363 192.506439 -29.299492 +v 150.264816 210.871704 4.310913 +v 0.088357 -135.880478 -6.575195 +v 0.088357 -135.880478 -6.575195 +v 0.088357 -135.880478 -6.575195 +v -68.499062 -38.227455 -6.743797 +v -68.499062 -38.227455 -6.743797 +v -131.114044 44.460217 -6.633171 +v -131.114044 44.460217 -6.633171 +v 159.699112 194.910797 4.310905 +v 156.885254 211.217102 4.310913 +v 161.582489 206.475555 4.310905 +v 125.187515 -141.446335 -2.838600 +v -124.781265 -141.820648 -3.221420 +v -166.519653 -95.717827 -8.664833 +v -175.118881 -94.684158 -8.603493 +v -175.118881 -94.684158 -8.603493 +v -3.355484 140.963226 -18.181625 +v -3.355484 140.963226 -18.181625 +v -4.888930 137.220566 -18.182007 +v -168.859009 -133.047516 -25.401970 +v -168.859009 -133.047516 -25.401970 +v -169.089188 -133.466599 -18.181747 +v -169.089188 -133.466599 -18.181747 +v -172.836411 -136.842178 -18.181274 +v -165.609360 -137.303589 -8.725487 +v -165.609360 -137.303589 -8.725487 +v -70.387566 140.182632 -21.377914 +v -70.387566 140.182632 -21.377914 +v -9.835221 139.999786 -20.829033 +v -151.716278 -101.131233 -20.248199 +v -131.699966 149.167358 -25.116432 +v -131.699966 149.167358 -25.116432 +v -130.271408 148.145035 -20.935043 +v -130.271408 148.145035 -20.935043 +v -8.545619 38.256367 -6.604256 +v -8.545619 38.256367 -6.604256 +v -9.760796 38.915634 -21.228149 +v -9.760796 38.915634 -21.228149 +v -12.957077 49.107662 -21.231682 +v -12.957077 49.107662 -21.231682 +v -10.032494 54.389465 -20.843307 +v -10.032494 54.389465 -20.843307 +v -72.496475 -44.567028 -20.240814 +v -72.496475 -44.567028 -20.240814 +v -130.769028 143.837982 -13.272629 +v -130.769028 143.837982 -13.272629 +v -130.533142 137.738190 -13.470398 +v -130.533142 137.738190 -13.470398 +v -112.773109 142.194595 -16.959251 +v -112.773109 142.194595 -16.959251 +v -112.761124 144.140961 -16.844063 +v -112.761124 144.140961 -16.844063 +v -175.188126 -122.417038 -8.682922 +v -175.188126 -122.417038 -8.682922 +v -169.656845 -124.058090 -8.719093 +v -113.046028 141.930740 -13.723366 +v -113.046028 141.930740 -13.723366 +v -117.492210 165.723022 -6.678856 +v -131.308289 156.607529 -6.633759 +v -131.308289 156.607529 -6.633759 +v -141.004578 194.910889 4.310905 +v -154.147537 142.589752 -21.990929 +v -154.147537 142.589752 -21.990929 +v -149.249359 141.008759 -21.990929 +v -149.249359 141.008759 -21.990929 +v 9.674154 208.876724 -21.861069 +v 9.674154 208.876724 -21.861069 +v 0.022587 211.694839 -22.191391 +v 4.018570 203.123093 -25.497643 +v 4.018570 203.123093 -25.497643 +v 4.589656 198.964813 -25.497841 +v 4.589656 198.964813 -25.497841 +v -3.964236 54.180027 -6.835030 +v 0.963475 55.017479 -6.597519 +v 6.365237 36.285835 -6.635536 +v 6.365237 36.285835 -6.635536 +v 68.520401 -38.139568 -6.707047 +v 68.520401 -38.139568 -6.707047 +v 130.820847 143.851318 -13.281700 +v 130.820847 143.851318 -13.281700 +v 113.063492 143.915863 -13.778397 +v 113.063492 143.915863 -13.778397 +v -176.922928 -130.831512 -18.192589 +v -176.922928 -130.831512 -18.192589 +v -176.922928 -130.831512 -18.192589 +v 8.473352 54.484299 -6.622986 +v 8.473352 54.484299 -6.622986 +v 107.103966 178.736145 -6.702545 +v 107.103966 178.736145 -6.702545 +v 1.387322 134.327393 -15.946861 +v 1.387322 134.327393 -15.946861 +v 1.387322 134.327393 -15.946861 +v -0.665840 134.012421 -18.181259 +v -0.665840 134.012421 -18.181259 +v 138.556610 168.283676 -6.677299 +v 135.793213 158.694504 -6.722626 +v 135.793213 158.694504 -6.722626 +v 132.519836 160.997925 -6.566330 +v 132.519836 160.997925 -6.566330 +v 131.479309 161.915451 -20.044724 +v 131.479309 161.915451 -20.044724 +v 110.119781 185.178101 -6.755440 +v 110.119781 185.178101 -6.755440 +v 109.522430 186.577133 -20.010109 +v 177.906586 -127.847252 -15.972664 +v 172.210602 -126.414589 -15.979607 +v 158.223175 170.411819 -6.683296 +v 157.892273 186.161591 0.164352 +v 157.892273 186.161591 0.164352 +v 175.188034 -94.595039 -8.641533 +v 175.188034 -94.595039 -8.641533 +v 3.581550 126.297829 -21.740662 +v 3.581550 126.297829 -21.740662 +v -69.168488 -43.371918 -7.297516 +v -69.168488 -43.371918 -7.297516 +v -71.178009 -40.119747 -6.472839 +v -71.178009 -40.119747 -6.472839 +v -161.202499 170.626389 -6.828094 +v -136.770432 -138.538574 -6.578850 +v 165.103683 -125.940002 -21.177567 +v 165.103683 -125.940002 -21.177567 +v 144.382309 -119.085472 -21.068153 +v 102.991211 198.599442 -6.625725 +v 106.067642 182.552383 -6.600357 +v 106.067642 182.552383 -6.600357 +v 178.348114 137.910095 -6.667839 +v 178.348114 137.910095 -6.667839 +v 164.949875 149.696793 -6.536827 +v 164.949875 149.696793 -6.536827 +v 164.949875 149.696793 -6.536827 +v 178.973404 -123.392303 -6.890442 +v 110.746651 144.387909 -21.881660 +v 111.096939 142.420044 -19.898735 +v 128.247650 -100.841614 -21.717056 +v 178.580658 148.556946 -13.334953 +v 178.580658 148.556946 -13.334953 +v 178.549072 149.483505 -9.213463 +v 178.549072 149.483505 -9.213463 +v -138.363327 -120.907356 -8.576401 +v -138.363327 -120.907356 -8.576401 +v -138.363327 -120.907356 -8.576401 +v -138.388107 -120.474228 -6.660919 +v -138.388107 -120.474228 -6.660919 +v 130.838455 -105.306984 -6.707581 +v 130.838455 -105.306984 -6.707581 +v 110.725822 148.300156 -21.990921 +v 110.725822 148.300156 -21.990921 +v -147.549255 187.608185 -29.277229 +v -136.742142 210.196106 -5.092682 +v -136.742142 210.196106 -5.092682 +v -136.742142 210.196106 -5.092682 +v -136.742142 210.196106 -5.092682 +v -37.431084 210.414246 -5.221313 +v 147.574188 155.611877 -6.695641 +v -137.020508 -130.135269 -8.703712 +v -8.403294 54.466404 -6.683388 +v -8.403294 54.466404 -6.683388 +v -11.712500 47.620602 -6.609306 +v -11.712500 47.620602 -6.609306 +v -107.005226 178.705048 -6.637146 +v -107.005226 178.705048 -6.637146 +v -146.500534 186.751373 2.634109 +v -146.500534 186.751373 2.634109 +v -146.819077 184.867371 -18.919006 +v -144.882385 190.952881 4.310905 +v -150.219650 189.464035 4.310905 +v -131.342804 161.742432 -20.052299 +v -131.342804 161.742432 -20.052299 +v -141.792557 187.097275 -19.415276 +v 138.206589 158.575699 -19.536224 +v -3.754595 140.700699 -25.364388 +v -3.754595 140.700699 -25.364388 +v 1.576821 142.015381 -18.181870 +v 4.276042 139.676300 -18.182007 +v 148.793320 141.142944 -21.990738 +v 148.793320 141.142944 -21.990738 +v 148.793320 141.142944 -21.990738 +v 146.923035 142.222763 -22.993202 +v 146.923035 142.222763 -22.993202 +v 146.923035 142.222763 -22.993202 +v 0.023912 131.604172 -13.471100 +v 0.023912 131.604172 -13.471100 +v -1.186682 131.584167 -15.976807 +v -1.186682 131.584167 -15.976807 +v -138.857193 -112.989227 -21.989510 +v -139.318710 -115.228424 -20.341400 +v -82.813034 144.310577 -21.810455 +v -106.724258 174.828979 -21.787155 +v -75.691383 136.846283 -21.310738 +v -75.691383 136.846283 -21.310738 +v -129.836929 136.750854 -20.812698 +v -129.836929 136.750854 -20.812698 +v -165.240051 -126.268570 -20.583885 +v -165.240051 -126.268570 -20.583885 +v -165.527679 -127.548019 -8.628059 +v -165.527679 -127.548019 -8.628059 +v 1.656116 216.223953 -5.248520 +v -75.252892 137.907669 -13.300110 +v -75.252892 137.907669 -13.300110 +v -110.680687 148.300232 -21.990921 +v -110.680687 148.300232 -21.990921 +v -167.292694 -98.539597 -8.718567 +v -175.274307 -97.818741 -8.677689 +v -175.274307 -97.818741 -8.677689 +v -155.663361 -102.901573 -8.713165 +v -155.776123 209.382950 4.310905 +v -150.438858 210.871811 4.310913 +v -159.653946 205.424927 4.310905 +v -163.742676 200.139297 4.310905 +v -161.502182 206.590210 4.310905 +v -150.333771 187.254196 4.310905 +v -150.333771 187.254196 4.310905 +v 4.827993 135.657761 -18.181976 +v 4.827993 135.657761 -18.181976 +v 159.946167 166.934326 -13.769234 +v 159.603821 152.126282 -19.028328 +v 8.053016 49.920444 -6.635902 +v 8.841575 44.333378 -6.702499 +v -155.370209 148.051254 -22.038857 +v -155.370209 148.051254 -22.038857 +v -155.360229 147.229263 -23.015709 +v -155.360229 147.229263 -23.015709 +v -5.576184 127.394180 -21.808090 +v -182.264313 -129.397751 -7.072647 +v -182.303391 -134.879288 -7.039963 +v -182.303391 -134.879288 -7.039963 +v 163.803116 -131.312073 -20.337509 +v 182.398392 -130.263382 -6.786545 +v 107.085548 173.978012 -21.956505 +v -153.780655 142.222870 -22.993202 +v -153.780655 142.222870 -22.993202 +v -148.748199 141.143051 -22.992989 +v -148.748199 141.143051 -22.992989 +v 156.915329 188.838669 -24.602272 +v 173.393311 -137.613342 -25.233894 +v -151.215073 212.930237 -29.325066 +v -156.515579 211.275787 -29.096184 +v 162.759415 196.384079 -29.282249 +v -143.811890 188.879471 -25.499138 +v -151.757324 187.040710 -25.683769 +v -131.738983 141.282333 -25.229164 +v -131.738983 141.282333 -25.229164 +v 145.112076 185.381149 2.051086 +v -6.087251 56.321293 -6.565613 +v -6.087251 56.321293 -6.565613 +v 0.100162 57.497532 -6.706436 +v 170.201065 -128.442627 -25.500694 +v 170.201065 -128.442627 -25.500694 +v 170.553925 -128.162674 -18.182083 +v 170.553925 -128.162674 -18.182083 +v 138.242310 207.537415 -5.591957 +v 174.993652 -126.893379 -25.339104 +v 121.166237 166.222122 -6.714737 +v 130.761108 160.600647 -6.784752 +v -180.328278 -130.236023 -6.445251 +v -180.328278 -130.236023 -6.445251 +v -176.700912 -136.718582 -15.972931 +v -176.700912 -136.718582 -15.972931 +v 179.502792 -131.943588 -15.972931 +v 156.287003 185.326309 -20.182487 +v 156.287003 185.326309 -20.182487 +v -107.275032 176.984634 -20.441803 +v -110.992912 142.459000 -20.078598 +v -110.699646 144.432556 -21.882080 +v -1.211144 6.454718 -21.866783 +v -1.211144 6.454718 -21.866783 +v 0.286651 5.984797 -15.078590 +v 0.286651 5.984797 -15.078590 +v -128.674347 -101.459709 -21.578522 +v -128.674347 -101.459709 -21.578522 +v -6.021089 35.041809 -20.337669 +v -65.618126 134.188843 -20.308731 +v -65.618126 134.188843 -20.308731 +v -66.686569 133.574875 -12.731956 +v -140.997803 205.427109 -29.358833 +v -139.600525 200.046967 -29.390862 +v -146.138428 148.896606 -22.030190 +v -145.416840 144.489761 -21.983658 +v -145.416840 144.489761 -21.983658 +v 161.086823 200.054550 -29.360527 +v 159.593491 194.713013 -29.359138 +v -8.953523 139.050766 -13.650070 +v -8.953523 139.050766 -13.650070 +v -70.611809 138.944122 -13.375092 +v -135.768173 194.948639 3.307732 +v 153.825775 142.222748 -21.991631 +v 153.825775 142.222748 -21.991631 +v -138.160309 193.468445 3.677650 +v -138.160309 193.468445 3.677650 +v -143.801437 187.840866 2.824577 +v -143.801437 187.840866 2.824577 +v -137.125870 191.624435 -19.411766 +v 130.883301 142.175446 -16.979195 +v 130.883301 142.175446 -16.979195 +v -169.631027 -129.453415 -18.181984 +v -158.123718 170.637863 -6.636147 +v -157.837845 186.108566 0.096344 +v -157.837845 186.108566 0.096344 +v 178.722702 -133.467819 -18.181656 +v 176.385178 -136.162735 -18.181976 +v -100.815598 207.178680 -21.701698 +v -102.301811 208.977249 -20.307297 +v -102.301811 208.977249 -20.307297 +v 113.175972 141.911102 -13.696899 +v 113.175972 141.911102 -13.696899 +v -141.598618 -124.671471 -21.348961 +v -141.598618 -124.671471 -21.348961 +v 178.834885 -129.510925 -25.495323 +v 178.834885 -129.510925 -25.495323 +v 178.834885 -129.510925 -25.495323 +v 5.638361 58.018211 -21.291145 +v 5.638361 58.018211 -21.291145 +v -165.620560 150.426590 -6.541855 +v -165.620560 150.426590 -6.541855 +v -178.253555 137.955551 -6.644943 +v -178.253555 137.955551 -6.644943 +v -176.943420 -140.308197 -7.104393 +v -164.144379 148.896713 -6.712646 +v -164.144379 148.896713 -6.712646 +v -177.802292 153.584488 -9.332634 +v 167.504974 160.977478 -6.583878 +v 167.504974 160.977478 -6.583878 +v 169.290573 162.443161 -6.947716 +v 169.290573 162.443161 -6.947716 +v 165.560715 151.237549 -11.442207 +v 165.560715 151.237549 -11.442207 +v 167.475998 160.149811 -11.540215 +v 167.475998 160.149811 -11.540215 +v 172.830521 158.645020 -11.391129 +v 172.830521 158.645020 -11.391129 +v 9.753262 38.985340 -21.081909 +v 9.753262 38.985340 -21.081909 +v 141.072067 -137.305008 -19.242119 +v 140.081223 -138.163528 -8.713135 +v 140.081223 -138.163528 -8.713135 +v 137.688324 -138.306229 -8.613075 +v 137.688324 -138.306229 -8.613075 +v -170.960999 156.641678 -11.439194 +v -170.960999 156.641678 -11.439194 +v 138.373688 -120.388748 -6.599388 +v 138.373688 -120.388748 -6.599388 +v 139.505783 -117.962143 -6.811073 +v 139.505783 -117.962143 -6.811073 +v 6.215384 56.269577 -6.610374 +v 6.215384 56.269577 -6.610374 +v 0.088336 142.239609 -25.404259 +v -4.169261 145.116623 -13.690987 +v 66.160744 135.193420 -13.759041 +v 66.160744 135.193420 -13.759041 +v 66.717758 133.576477 -12.748726 +v 115.981972 171.214188 -6.578094 +v 111.004967 179.227020 -6.776718 +v -172.806854 -128.870712 -18.194366 +v -172.806854 -128.870712 -18.194366 +v -172.806854 -128.870712 -18.194366 +v 141.544373 -123.175293 -8.628883 +v 141.544373 -123.175293 -8.628883 +v -2.411579 139.420792 -18.181259 +v -2.411579 139.420792 -18.181259 +v -170.942291 -126.813248 -8.459229 +v -167.975403 -130.650009 -8.475739 +v -167.975403 -130.650009 -8.475739 +v 111.234497 181.993881 -6.677956 +v 111.234497 181.993881 -6.677956 +v -175.921600 -138.171494 -6.506210 +v -175.921600 -138.171494 -6.506210 +v 135.779373 208.720764 -20.767891 +v 135.779373 208.720764 -20.767891 +v -130.808472 144.199356 -16.756821 +v -130.808472 144.199356 -16.756821 +v 178.226135 -135.700073 -15.974846 +v 178.226135 -135.700073 -15.974846 +v -129.950867 43.407894 -21.176712 +v -129.950867 43.407894 -21.176712 +v 138.410919 -120.966415 -8.668976 +v 138.410919 -120.966415 -8.668976 +v 138.410919 -120.966415 -8.668976 +v 7.119488 -138.180847 -6.864021 +v 7.119488 -138.180847 -6.864021 +v 8.801372 -137.263870 -19.583405 +v 8.801372 -137.263870 -19.583405 +v -141.110199 194.713120 -29.359123 +v 171.014587 156.663544 -11.446541 +v 171.014587 156.663544 -11.446541 +v -5.593826 137.219208 -13.471039 +v 159.728271 205.422089 -29.389397 +v -116.455574 170.765427 -6.640526 +v -110.939171 179.281250 -6.778351 +v -123.467606 164.419785 -6.707214 +v 139.251785 206.567230 4.310905 +v 143.872208 211.222794 4.310913 +v -3.720098 133.842514 -18.181664 +v -3.720098 133.842514 -18.181664 +v 1.189475 132.299637 -18.181740 +v 1.189475 132.299637 -18.181740 +v -8.966310 -137.401230 -19.395996 +v 177.692886 -128.537369 -18.182640 +v 177.692886 -128.537369 -18.182640 +v -157.008392 157.018066 -18.849205 +v 154.192642 142.589615 -22.993195 +v 154.192642 142.589615 -22.993195 +v 150.374405 141.029419 -22.993271 +v 150.374405 141.029419 -22.993271 +v 1.231829 142.856964 -15.976852 +v 1.231829 142.856964 -15.976852 +v -5.748727 58.253963 -21.377113 +v -5.748727 58.253963 -21.377113 +v 100.336609 206.858154 -21.806580 +v 100.336609 206.858154 -21.806580 +v 65.470718 -38.400539 -21.835922 +v 6.099281 34.430176 -21.197113 +v 6.099281 34.430176 -21.197113 +v 0.486515 59.214108 -21.371986 +v -165.494751 151.220505 -11.426704 +v -165.494751 151.220505 -11.426704 +v -178.822922 -123.033577 -6.772324 +v 175.221085 -122.397202 -8.732147 +v 175.221085 -122.397202 -8.732147 +v -161.130203 156.601730 -17.318184 +v -4.448413 129.428177 -13.668404 +v 157.464355 189.572266 -29.298409 +v -4.996486 137.286316 -25.404274 +v -170.805542 -133.170776 -18.172684 +v -170.805542 -133.170776 -18.172684 +v 5.265780 -133.534348 -6.613327 +v 176.892853 -132.865799 -15.976883 +v 176.892853 -132.865799 -15.976883 +v 3.114663 137.884048 -15.976128 +v 3.114663 137.884048 -15.976128 +v 131.346420 156.623795 -6.610062 +v 131.346420 156.623795 -6.610062 +v 117.910904 165.339447 -6.667320 +v -175.572037 -125.871033 -6.708855 +v -175.572037 -125.871033 -6.708855 +v -180.005646 -133.493500 -6.625427 +v -180.005646 -133.493500 -6.625427 +v 135.549622 196.896423 -19.353706 +v 136.682556 -137.401749 -19.471397 +v 136.682556 -137.401749 -19.471397 +v -129.806549 155.777100 -21.191994 +v -129.806549 155.777100 -21.191994 +v -128.826004 50.202030 -21.733658 +v -128.826004 50.202030 -21.733658 +v -136.962387 -121.453659 -21.113983 +v -136.962387 -121.453659 -21.113983 +v -7.331655 -135.019058 -21.576698 +v -174.139114 -121.897011 -19.931396 +v 75.379494 137.977936 -13.327591 +v 75.379494 137.977936 -13.327591 +v -145.074280 190.832138 -29.360420 +v -147.513138 155.625198 -6.753746 +v 171.621078 156.557327 -9.224022 +v 171.621078 156.557327 -9.224022 +v 163.429047 149.079147 -11.423531 +v 163.429047 149.079147 -11.423531 +v -134.745560 154.937546 -6.632454 +v -134.745560 154.937546 -6.632454 +v -134.129669 -111.515366 -6.641815 +v 150.491211 210.878998 -29.358879 +v 155.802109 209.372803 -29.311287 +v -11.687520 44.691334 -6.682350 +v -11.687520 44.691334 -6.682350 +v 155.629410 190.832031 -29.360420 +v 150.264008 189.456589 -29.359337 +v -130.502518 160.515274 -6.784340 +v -173.550125 -98.818779 -20.690895 +v 155.235397 147.773865 -23.018501 +v 155.235397 147.773865 -23.018501 +v -143.917770 -119.000458 -20.827805 +v 103.646851 209.967850 -6.686440 +v 103.646851 209.967850 -6.686440 +v -137.052704 -141.478470 -6.703285 +v -175.324677 136.648224 -6.736641 +v 137.137177 -138.594040 -6.522949 +v 67.183220 -38.290020 -20.315948 +v 167.085098 -98.557785 -8.701279 +v 4.300131 141.090210 -13.459641 +v 0.021214 142.836945 -13.471100 +v 0.021214 142.836945 -13.471100 +v -5.173001 200.167862 -25.499138 +v -3.555439 196.209503 -25.497871 +v -3.555439 196.209503 -25.497871 +v 5.292083 53.270729 -6.701561 +v -136.216614 169.230789 -6.677757 +v 169.022903 -133.479752 -25.382072 +v 169.022903 -133.479752 -25.382072 +v 172.652969 -136.973709 -25.421776 +v 172.652969 -136.973709 -25.421776 +v 136.616760 210.243408 -5.066475 +v 136.616760 210.243408 -5.066475 +v 174.004532 -137.452805 -15.967361 +v -12.025169 43.267239 -20.982658 +v -12.025169 43.267239 -20.982658 +v -108.230881 208.890884 -19.911133 +v -80.776810 143.346191 -20.360863 +v -80.776810 143.346191 -20.360863 +v -79.733627 143.875488 -12.713425 +v -79.733627 143.875488 -12.713425 +v -156.870163 188.838776 -24.602272 +v -156.870163 188.838776 -24.602272 +v -160.050095 153.363174 -23.320900 +v -136.661850 -137.406418 -19.213875 +v -150.205383 210.895187 -29.389015 +v -144.901566 209.372910 -29.311287 +v -150.453125 189.440628 -29.389000 +v 107.161362 176.848862 -20.678329 +v 107.161362 176.848862 -20.678329 +v -161.543854 193.775314 4.310905 +v -105.681175 197.910370 -6.660545 +v -107.936119 186.243805 -6.608582 +v -107.936119 186.243805 -6.608582 +v -157.159988 -98.802414 -8.941696 +v -131.079498 47.837345 -6.735466 +v -131.079498 47.837345 -6.735466 +v -132.446106 160.954086 -6.599930 +v -132.446106 160.954086 -6.599930 +v 146.805069 149.685623 -22.488113 +v 146.805069 149.685623 -22.488113 +v 151.730820 150.979553 -22.989319 +v -64.050415 133.084198 -21.645638 +v 3.890235 132.941757 -13.477333 +v 3.890235 132.941757 -13.477333 +v 139.662033 200.281082 -29.360527 +v 141.037369 194.915558 -29.359886 +v -5.307908 -133.450836 -6.655022 +v -156.261658 185.345474 -20.116676 +v -155.453445 187.396957 0.842529 +v 169.004333 -133.069305 -18.181686 +v 169.004333 -133.069305 -18.181686 +v 172.356201 -136.714005 -18.182083 +v 172.356201 -136.714005 -18.182083 +v -145.291382 144.977448 -22.990540 +v -145.291382 144.977448 -22.990540 +v -104.704979 182.956482 -20.904892 +v -104.704979 182.956482 -20.904892 +v 139.575836 -116.926231 -8.566360 +v 139.575836 -116.926231 -8.566360 +v 139.575836 -116.926231 -8.566360 +v -175.035919 -126.004654 -8.462013 +v -175.035919 -126.004654 -8.462013 +v -80.165985 142.209076 -13.718025 +v -80.165985 142.209076 -13.718025 +v -159.548325 205.622681 -29.359138 +v -161.041656 200.281158 -29.360527 +v 108.129768 209.006363 -19.853180 +v 2.385324 214.590286 -25.293251 +v -4.885955 201.752090 -22.191231 +v 5.313136 39.159691 -6.677528 +v 1.246693 37.451061 -6.660019 +v 109.781166 149.360596 -25.201164 +v 136.247269 169.282440 -6.654945 +v 163.127243 -96.249886 -8.823257 +v 168.179276 -130.049393 -8.431602 +v 168.179276 -130.049393 -8.431602 +v 168.340515 -130.679138 -15.974075 +v 168.340515 -130.679138 -15.974075 +v 164.686920 -136.183319 -20.357185 +v 164.686920 -136.183319 -20.357185 +v 179.291824 -132.727066 -25.463295 +v 177.457031 -136.123123 -25.492073 +v 177.457031 -136.123123 -25.492073 +v 1.927811 -132.604141 -7.407585 +v 1.927811 -132.604141 -7.407585 +v 160.602646 191.217224 2.667336 +v -160.717468 156.118546 -13.510216 +v 169.828064 -124.008560 -8.666565 +v -160.758804 207.575623 -29.288231 +v 141.155350 205.622589 -29.359138 +v -35.485786 213.626465 -5.199699 +v -144.746368 213.295197 -5.082672 +v -4.254326 133.350403 -13.475052 +v -164.687256 -130.434006 -8.604431 +v -164.687256 -130.434006 -8.604431 +v -135.470978 159.719925 -6.660057 +v -135.470978 159.719925 -6.660057 +v -137.295456 157.482819 -6.739059 +v 169.934967 -136.704849 -8.502090 +v 169.934967 -136.704849 -8.502090 +v 169.934967 -136.704849 -8.502090 +v -159.683090 194.913620 -29.389397 +v 134.188431 -111.515060 -6.648651 +v 161.351288 156.917053 -17.231216 +v -3.803720 196.709229 -22.190231 +v -3.803720 196.709229 -22.190231 +v -137.294449 200.167908 -25.499138 +v -139.663101 208.108398 -25.147072 +v -139.040848 193.650528 -25.499138 +v 1.494420 195.675140 -25.498375 +v 1.494420 195.675140 -25.498375 +v 165.527710 -127.538223 -8.667831 +v 165.527710 -127.538223 -8.667831 +v -178.710876 149.349289 -9.305649 +v -178.710876 149.349289 -9.305649 +v 141.741028 -124.591103 -21.306541 +v 139.163879 -115.238411 -20.349152 +v 169.467285 161.996140 -11.466301 +v 169.467285 161.996140 -11.466301 +v 128.601074 148.288361 -21.918381 +v 178.184799 151.912323 -16.857933 +v 160.762909 153.695114 -23.013489 +v 144.903076 190.939774 -29.389107 +v -138.173813 207.603790 -5.462387 +v -138.173813 207.603790 -5.462387 +v 161.566040 193.747559 4.310905 +v 65.691246 134.121918 -20.301651 +v 65.691246 134.121918 -20.301651 +v -107.018066 209.625519 -6.617348 +v -107.018066 209.625519 -6.617348 +v -179.066513 -129.941437 -25.480324 +v -179.066513 -129.941437 -25.480324 +v -179.066513 -129.941437 -25.480324 +v -134.846161 -135.101700 -21.558380 +v 145.331955 147.107742 -23.011848 +v 145.331955 147.107742 -23.011848 +v -153.463043 150.215393 -21.841667 +v -153.463043 150.215393 -21.841667 +v -155.756943 190.962906 -29.311272 +v -150.195114 213.017365 4.310913 +v -156.642761 211.331131 4.310913 +v -3.935779 203.745865 -25.497627 +v -170.921066 -132.865677 -15.976883 +v -170.921066 -132.865677 -15.976883 +v 169.911270 -135.885010 -15.976952 +v 169.911270 -135.885010 -15.976952 +v 1.214519 6.506308 -21.881134 +v 1.214519 6.506308 -21.881134 +v 107.270195 209.667908 -6.941322 +v 107.270195 209.667908 -6.941322 +v -178.533478 148.526672 -13.375534 +v -178.533478 148.526672 -13.375534 +v 178.579865 138.733170 -13.344040 +v 178.579865 138.733170 -13.344040 +v 130.025467 155.855026 -20.894005 +v -171.558731 156.564560 -9.246140 +v -171.558731 156.564560 -9.246140 +v 137.063980 -130.138809 -8.700378 +v 70.678337 138.927704 -13.346230 +v 5.638952 137.221909 -13.471031 +v -138.558121 168.308853 -6.655876 +v 163.776978 200.461960 4.310905 +v -147.153503 -106.010246 -8.635620 +v -130.124680 48.949783 -20.253258 +v -67.168602 -38.445755 -20.201584 +v -142.498856 -119.495834 -8.675682 +v -142.498856 -119.495834 -8.675682 +v 9.024637 139.063339 -13.744987 +v 9.024637 139.063339 -13.744987 +v -156.787643 189.086227 4.310905 +v 172.652206 -134.784821 -18.210098 +v 172.652206 -134.784821 -18.210098 +v 172.652206 -134.784821 -18.210098 +v 170.987244 -126.813370 -8.459229 +v -167.437225 160.932755 -6.630463 +v -167.437225 160.932755 -6.630463 +v 117.191254 164.671539 -20.128876 +v 173.929428 -126.997780 -18.181984 +v -176.397446 -127.528816 -25.437752 +v 4.308707 145.063171 -13.648087 +v -141.025421 -137.343216 -19.105476 +v -161.033142 200.058334 4.310905 +v -143.883957 189.073608 4.310905 +v 139.670532 200.058228 4.310905 +v 141.159348 194.720947 4.310905 +v 0.022429 -138.401993 -6.422340 +v -170.304016 -136.932373 -8.485153 +v 145.122955 209.524612 -29.390465 +v -5.463331 135.449600 -15.976883 +v 159.954422 152.570602 -11.528969 +v 159.954422 152.570602 -11.528969 +v -178.537292 138.697495 -13.305962 +v -178.537292 138.697495 -13.305962 +v -160.964249 169.538864 -17.123825 +v 137.016083 -141.658264 -6.861809 +v 11.658736 47.602062 -6.588333 +v 11.658736 47.602062 -6.588333 +v 177.145203 -140.112915 -6.944420 +v -159.879456 166.946869 -13.883270 +v -162.878113 201.869553 -29.380501 +v 0.022585 205.363449 -25.499138 +v 0.022585 205.363449 -25.499138 +v 155.507401 187.395462 0.903572 +v -169.505035 -129.456436 -25.404305 +v 152.035202 -102.083313 -8.614868 +v 0.994006 140.230148 -15.976128 +v 0.994006 140.230148 -15.976128 +v 144.732971 -109.288467 -8.628487 +v 173.905853 136.899261 -19.236992 +v -130.838165 142.175537 -16.979195 +v -130.838165 142.175537 -16.979195 +v -113.083496 143.951523 -13.764191 +v -113.083496 143.951523 -13.764191 +v -159.544327 194.721039 4.310905 +v 150.300507 213.057449 4.310913 +v 37.307308 210.394165 -5.301765 +v -148.036026 152.773178 -6.691193 +v 145.333298 144.987106 -21.979103 +v 145.333298 144.987106 -21.979103 +v 145.333298 144.987106 -21.979103 +v -72.563751 -43.139473 -7.403000 +v -161.061340 154.581985 -6.798996 +v -161.061340 154.581985 -6.798996 +v -167.439651 160.143524 -11.558136 +v -167.439651 160.143524 -11.558136 +v 5.591251 129.124161 -20.236107 +v 182.089767 -135.727020 -7.042419 +v 178.233490 138.459885 -17.217819 +v -162.326065 195.539566 -29.231178 +v -8.789863 46.197147 -6.604973 +v -3.099975 136.212662 -18.181259 +v -3.099975 136.212662 -18.181259 +v -145.426895 -104.498726 -21.713188 +v -147.054581 -110.937515 -8.705833 +v -155.584244 209.503677 -29.360420 +v -155.586288 190.843277 4.310905 +v 128.742432 -105.259445 -6.628502 +v 128.742432 -105.259445 -6.628502 +v 145.117401 190.843185 4.310905 +v -160.548996 191.197067 2.651169 +v -148.933105 151.174805 -21.069923 +v -148.933105 151.174805 -21.069923 +v -148.933105 151.174805 -21.069923 +v 140.799698 -134.493454 -21.711487 +v -156.475113 188.882812 -29.348824 +v -7.876510 50.383583 -6.587997 +v 159.291321 143.931381 -25.546867 +v 0.681795 213.189774 -5.169701 +v 175.132889 -126.109024 -8.457695 +v 175.132889 -126.109024 -8.457695 +v -140.750336 -134.616776 -21.695602 +v -1.774940 -132.751434 -7.411209 +v -1.774940 -132.751434 -7.411209 +v 7.349079 -135.027695 -21.531502 +v -145.333633 211.887909 -29.336601 +v 141.860550 186.938675 -19.422592 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vt 0.993835 0.333011 +vn 0.0010 0.0002 1.0000 +vn -0.0006 0.0053 1.0000 +vn -0.0076 0.0045 1.0000 +vn 0.0007 0.0007 1.0000 +vn 0.0245 -0.0016 -0.9997 +vn -0.0025 0.0289 -0.9996 +vn -0.1028 0.0846 -0.9911 +vn 0.0013 0.0174 -0.9998 +vn -0.0366 0.0682 -0.9970 +vn 0.0001 0.0098 -1.0000 +vn -0.0027 0.0096 -1.0000 +vn 0.1286 0.2834 -0.9503 +vn -0.0425 0.1824 -0.9823 +vn 0.0140 0.6144 -0.7889 +vn 0.0025 -0.0022 -1.0000 +vn -0.0022 -0.0007 -1.0000 +vn 0.0373 0.4849 -0.8737 +vn 0.0011 0.0174 -0.9998 +vn 0.0001 0.0106 -0.9999 +vn -0.0090 0.3954 -0.9185 +vn -0.0224 0.5478 -0.8363 +vn -0.1389 0.4981 -0.8559 +vn -0.0054 0.0004 -1.0000 +vn 0.0000 0.0000 -1.0000 +vn -0.0056 -0.0062 -1.0000 +vn 0.0011 0.0002 -1.0000 +vn -0.0007 -0.0008 -1.0000 +vn -0.0005 -0.0049 -1.0000 +vn 0.0024 -0.0009 -1.0000 +vn -0.0041 -0.0004 -1.0000 +vn -0.0008 -0.0006 -1.0000 +vn -0.0059 -0.0007 -1.0000 +vn 0.0034 -0.0105 -0.9999 +vn -0.0031 -0.0009 -1.0000 +vn 0.0051 -0.0132 -0.9999 +vn -0.3440 0.1095 -0.9326 +vn 0.1459 0.0065 -0.9893 +vn -0.0285 -0.0067 -0.9996 +vn 0.2327 -0.0229 -0.9723 +vn 0.0054 -0.0064 -1.0000 +vn -0.0008 0.0020 -1.0000 +vn -0.0066 -0.0039 -1.0000 +vn 0.0121 -0.0234 -0.9997 +vn 0.1059 -0.2990 -0.9484 +vn -0.0037 -0.0211 -0.9998 +vn 0.0087 0.0021 -1.0000 +vn -0.0130 0.0100 -0.9999 +vn -0.0044 0.0289 -0.9996 +vn -0.0112 0.0425 -0.9990 +vn -0.0047 0.0432 -0.9991 +vn 0.0280 0.0477 -0.9985 +vn -0.0139 0.0120 -0.9998 +vn -0.0303 -0.1086 -0.9936 +vn 0.0082 -0.0066 -0.9999 +vn -0.0003 -0.0091 -1.0000 +vn 0.0114 -0.0059 -0.9999 +vn -0.0195 -0.0071 -0.9998 +vn 0.0162 0.0030 -0.9999 +vn 0.0010 0.0006 -1.0000 +vn -0.0032 0.0257 -0.9997 +vn -0.1296 0.1707 -0.9768 +vn -0.1240 0.0171 -0.9921 +vn 0.0070 -0.0008 -1.0000 +vn 0.0068 -0.0029 -1.0000 +vn 0.1748 0.1754 -0.9688 +vn 0.0087 0.0044 -1.0000 +vn 0.1648 0.0052 -0.9863 +vn -0.0405 0.0233 -0.9989 +vn -0.0079 -0.0103 -0.9999 +vn 0.0010 0.0066 -1.0000 +vn 0.0841 -0.0318 -0.9959 +vn 0.0043 -0.0030 -1.0000 +vn -0.3977 -0.0109 -0.9174 +vn -0.0058 -0.0015 -1.0000 +vn -0.0105 0.0025 -0.9999 +vn 0.0123 0.0192 -0.9997 +vn 0.3577 -0.1327 -0.9243 +vn -0.0260 0.0097 -0.9996 +vn -0.0108 0.0163 -0.9998 +vn 0.0123 -0.0014 -0.9999 +vn -0.0161 0.0055 -0.9999 +vn 0.0176 -0.0816 -0.9965 +vn -0.1432 -0.4972 -0.8557 +vn 0.0037 -0.0859 -0.9963 +vn 0.3972 -0.8334 0.3842 +vn -0.2621 -0.9312 -0.2534 +vn -0.8919 -0.3939 0.2222 +vn -0.8631 -0.4001 0.3082 +vn -0.9694 -0.2375 0.0615 +vn 0.8338 -0.3883 -0.3923 +vn -0.9775 -0.2098 -0.0223 +vn 0.8489 0.3770 0.3705 +vn -0.6642 0.7348 -0.1371 +vn -0.6373 0.7705 -0.0097 +vn -0.3926 0.8944 0.2142 +vn -0.3277 0.8774 0.3504 +vn 0.4354 0.8441 -0.3130 +vn 0.3970 -0.8334 0.3844 +vn -0.2619 -0.9312 -0.2536 +vn -0.8918 -0.3940 0.2222 +vn -0.8630 -0.4002 0.3083 +vn 0.8338 -0.3883 -0.3924 +vn 0.8491 0.3767 0.3703 +vn -0.6642 0.7349 -0.1371 +vn -0.6372 0.7706 -0.0097 +vn -0.3930 0.8943 0.2140 +vn -0.3281 0.8774 0.3501 +vn 0.4355 0.8442 -0.3126 +vn 0.2575 -0.9648 -0.0538 +vn 0.2647 -0.9633 -0.0451 +vn 0.2654 -0.9633 -0.0412 +vn 0.2570 -0.9647 -0.0576 +vn -0.9078 -0.3770 0.1837 +vn -0.7629 -0.6434 -0.0630 +vn -0.8888 -0.3196 0.3284 +vn -0.7283 -0.6583 -0.1904 +vn 0.9822 0.0531 -0.1801 +vn 0.9722 -0.2086 0.1061 +vn 0.9843 -0.1764 -0.0019 +vn 0.9526 0.0867 -0.2917 +vn -0.8441 0.4071 -0.3491 +vn 0.3528 0.9227 -0.1552 +vn 0.6642 0.7349 0.1369 +vn 0.5707 0.8209 -0.0219 +vn -0.4189 0.8693 0.2624 +vn 0.1960 0.9299 -0.3112 +vn 0.2921 -0.9389 0.1820 +vn -0.3234 -0.9423 0.0870 +vn 0.0786 -0.9955 0.0520 +vn -0.4537 -0.8903 0.0389 +vn -0.7155 -0.6938 0.0823 +vn 0.5184 -0.8492 0.1005 +vn 0.6752 -0.7372 -0.0246 +vn -0.7910 -0.6117 0.0095 +vn 0.9640 -0.2558 0.0723 +vn 0.9777 -0.1970 0.0732 +vn 0.9499 0.0172 0.3122 +vn 0.9557 0.0790 0.2836 +vn -0.9583 0.2848 -0.0225 +vn -0.9877 0.1404 0.0686 +vn -0.8540 0.5194 0.0301 +vn -0.5647 0.5716 0.5952 +vn -0.3120 0.9473 0.0732 +vn 0.7532 0.6566 0.0388 +vn 0.7530 0.6568 0.0387 +vn 0.7525 0.6574 0.0394 +vn 0.7522 0.6577 0.0396 +vn 0.1090 0.9931 0.0423 +vn -0.1199 0.9528 0.2788 +vn -0.3188 0.9254 0.2048 +vn -0.0109 -0.9910 0.1332 +vn 0.2302 -0.9696 0.0827 +vn -0.7236 -0.6836 0.0950 +vn 0.5486 -0.8354 0.0338 +vn -0.4642 -0.8762 0.1295 +vn 0.7486 -0.6576 0.0847 +vn 0.7387 -0.6702 0.0718 +vn -0.8252 -0.5615 0.0616 +vn -0.9929 0.0831 0.0847 +vn -0.9923 -0.0938 0.0810 +vn -0.9423 0.3252 0.0792 +vn 0.9635 0.2676 0.0096 +vn 0.9611 0.2757 0.0178 +vn 0.9669 0.2551 -0.0006 +vn 0.9570 0.2887 0.0286 +vn -0.9353 0.3482 0.0634 +vn -0.2831 0.9587 0.0257 +vn -0.3816 0.9195 0.0943 +vn 0.0146 0.9971 0.0744 +vn 0.3557 0.9292 0.1008 +vn 0.3199 0.9451 0.0663 +vn 0.0054 0.9983 0.0583 +vn -0.0076 -0.1747 0.9846 +vn -0.1817 -0.4495 0.8746 +vn 0.0211 -0.9134 0.4066 +vn 0.2441 -0.4474 0.8604 +vn -0.2480 -0.1909 0.9498 +vn -0.1161 -0.5696 0.8137 +vn -0.1500 -0.8742 0.4619 +vn -0.1545 -0.6065 0.7800 +vn -0.2215 -0.9603 0.1694 +vn 0.0207 -0.9984 0.0533 +vn 0.1966 -0.8472 0.4935 +vn 0.0089 -0.9959 0.0903 +vn 0.2403 -0.9103 0.3370 +vn -0.0765 -0.9867 0.1433 +vn -0.2219 -0.8743 0.4316 +vn -0.2403 -0.9119 0.3326 +vn -0.0717 -0.9894 0.1263 +vn -0.1118 0.9468 0.3018 +vn 0.0524 0.9505 0.3062 +vn -0.0371 0.9939 0.1043 +vn -0.0396 0.9928 0.1129 +vn -0.0056 -0.2740 0.9617 +vn 0.8979 -0.3764 0.2282 +vn -0.0486 -0.2736 0.9606 +vn -0.3167 -0.4101 0.8553 +vn -0.0110 0.2520 0.9677 +vn -0.6701 0.3571 0.6507 +vn -0.0560 -0.0078 0.9984 +vn -0.0157 -0.0169 0.9997 +vn 0.1510 -0.4792 0.8646 +vn 0.0030 0.0016 1.0000 +vn 0.0502 -0.1575 0.9862 +vn 0.0019 0.0021 1.0000 +vn -0.0011 0.0017 1.0000 +vn 0.2516 0.0920 0.9634 +vn 0.7326 -0.6734 0.0993 +vn 0.7481 -0.6550 0.1062 +vn 0.6671 -0.7246 0.1729 +vn 0.6553 -0.7379 0.1617 +vn -0.6594 -0.7319 0.1716 +vn -0.7235 -0.6813 0.1110 +vn -0.7120 -0.6941 0.1059 +vn -0.6481 -0.7453 0.1567 +vn -0.1256 -0.3088 0.9428 +vn -0.0642 0.0645 0.9959 +vn -0.0654 0.0634 0.9958 +vn 0.1376 -0.0173 0.9903 +vn -0.6934 0.7155 0.0853 +vn -0.3454 0.9375 0.0433 +vn -0.7023 0.7040 0.1061 +vn -0.6695 0.7355 0.1040 +vn -0.6942 0.7129 0.0990 +vn -0.6988 0.7070 0.1085 +vn -0.6589 -0.7425 0.1209 +vn -0.6766 -0.7291 0.1031 +vn -0.6722 -0.7331 0.1031 +vn -0.6544 -0.7466 0.1199 +vn -0.3648 -0.1008 0.9256 +vn -0.2902 -0.0256 0.9566 +vn -0.2491 -0.1470 0.9572 +vn -0.9887 0.1378 -0.0584 +vn -0.9785 0.0663 -0.1954 +vn -0.8983 0.3331 -0.2865 +vn -0.9984 0.0079 -0.0567 +vn -0.9464 -0.2776 -0.1650 +vn -0.7115 -0.7021 -0.0306 +vn -0.6196 -0.7834 -0.0481 +vn -0.4153 -0.7853 -0.4593 +vn -0.8892 0.4570 -0.0209 +vn -0.0474 -0.8480 -0.5278 +vn -0.0153 -0.9992 -0.0367 +vn 0.0352 -0.0756 0.9965 +vn 0.0240 -0.0221 0.9995 +vn 0.0038 -0.0038 1.0000 +vn 0.0521 -0.0610 0.9968 +vn 0.0073 0.0222 0.9997 +vn 0.0072 0.0594 0.9982 +vn -0.1574 -0.0271 0.9872 +vn -0.0788 -0.1159 0.9901 +vn 0.0003 0.9799 0.1997 +vn -0.8695 0.4895 0.0655 +vn -0.9109 0.4064 -0.0712 +vn -0.6855 0.7263 -0.0509 +vn -0.6851 0.7228 -0.0905 +vn -0.9741 0.1963 -0.1118 +vn -0.7094 0.6953 -0.1152 +vn -0.8972 0.4375 -0.0600 +vn -0.9615 0.0114 -0.2745 +vn -0.9980 0.0439 -0.0451 +vn -0.9857 0.1679 -0.0149 +vn -0.9963 0.0502 -0.0693 +vn -0.9991 0.0022 0.0428 +vn 0.3524 -0.1029 0.9302 +vn 0.0745 -0.0184 0.9971 +vn -0.0135 -0.9995 -0.0297 +vn -0.0769 -0.7633 -0.6414 +vn -0.0312 -0.9989 -0.0359 +vn -0.0087 -0.9989 -0.0467 +vn 0.1458 0.0606 0.9875 +vn 0.1210 0.0978 0.9878 +vn -0.0532 -0.0849 0.9950 +vn 0.0540 -0.2424 0.9687 +vn 0.6898 0.7149 0.1143 +vn 0.6954 0.6983 0.1696 +vn 0.6852 0.6971 0.2113 +vn 0.7225 0.6791 0.1297 +vn 0.6312 0.7141 0.3029 +vn 0.6685 -0.7370 0.0991 +vn 0.6746 -0.7315 0.0988 +vn 0.6508 -0.7492 0.1236 +vn 0.6445 -0.7548 0.1223 +vn 0.2524 -0.1108 0.9613 +vn 0.2256 -0.0552 0.9727 +vn 0.8997 0.3719 -0.2285 +vn 0.9751 0.1680 -0.1449 +vn 0.8866 0.4604 -0.0446 +vn 0.9751 0.2196 -0.0318 +vn 0.9265 -0.2798 -0.2515 +vn 0.9552 -0.2925 -0.0449 +vn 0.2880 -0.8241 -0.4878 +vn 0.5929 -0.8045 -0.0362 +vn 0.0243 0.0065 0.9997 +vn -0.0026 -0.0117 0.9999 +vn -0.0033 -0.0149 0.9999 +vn 0.0246 0.0142 0.9996 +vn 0.0419 0.0349 0.9985 +vn 0.0597 0.0303 0.9978 +vn 0.7358 0.6691 -0.1046 +vn 0.6943 0.7133 -0.0956 +vn 0.7069 0.7014 -0.0918 +vn 0.9610 0.2468 -0.1249 +vn 0.6870 0.7245 -0.0568 +vn 0.7092 0.6993 -0.0895 +vn 0.9466 0.3176 -0.0552 +vn 0.7273 0.6862 0.0070 +vn 0.9663 0.0072 -0.2572 +vn 0.9980 0.0407 -0.0483 +vn 0.9969 0.0286 -0.0731 +vn 0.9986 0.0535 -0.0044 +vn 0.9994 0.0024 0.0350 +vn -0.0073 0.9990 -0.0452 +vn -0.0511 0.8710 -0.4885 +vn 0.1579 0.9638 -0.2150 +vn -0.0778 0.9893 -0.1238 +vn 0.0711 0.9080 -0.4130 +vn -0.0558 0.9970 -0.0538 +vn 0.2979 0.1552 0.9419 +vn 0.7004 0.3919 0.5966 +vn 0.5540 0.4087 0.7253 +vn 0.9671 -0.0567 0.2480 +vn 0.7917 -0.5985 0.1227 +vn 0.8957 -0.4424 0.0438 +vn -0.0655 0.4158 0.9071 +vn -0.1877 0.3668 0.9111 +vn -0.1590 0.0455 0.9862 +vn -0.0188 0.0104 0.9998 +vn -0.3485 0.9122 0.2153 +vn -0.2241 0.9660 0.1291 +vn -0.4062 0.8874 0.2181 +vn -0.4365 0.4510 -0.7785 +vn -0.2433 0.1201 -0.9625 +vn -0.7342 0.5713 -0.3667 +vn -0.7666 0.5569 -0.3196 +vn -0.6471 0.6621 -0.3779 +vn -0.0334 -0.1513 0.9879 +vn 0.2835 -0.4703 0.8358 +vn 0.3652 -0.3922 0.8443 +vn 0.2963 -0.0228 0.9548 +vn 0.3382 -0.6521 0.6785 +vn 0.7079 0.6940 0.1311 +vn 0.7045 0.6975 0.1315 +vn 0.7168 0.6822 0.1445 +vn 0.7201 0.6788 0.1437 +vn 0.3442 -0.0549 0.9373 +vn 0.0915 -0.0612 0.9939 +vn 0.3929 -0.1083 0.9132 +vn 0.0402 -0.0065 0.9992 +vn -0.0312 0.0075 -0.9995 +vn -0.0309 0.0154 -0.9994 +vn -0.0283 0.0147 -0.9995 +vn -0.0286 0.0067 -0.9996 +vn -0.0074 0.0076 0.9999 +vn 0.0045 0.0071 1.0000 +vn -0.1761 0.7724 -0.6102 +vn -0.1997 0.6717 -0.7134 +vn -0.0910 0.1554 -0.9837 +vn 0.0033 0.0723 -0.9974 +vn -0.0626 0.0389 -0.9973 +vn 0.0141 -0.0003 0.9999 +vn -0.0152 0.0197 0.9997 +vn 0.0120 -0.0089 0.9999 +vn 0.0355 -0.2110 0.9768 +vn 0.0133 -0.0556 0.9984 +vn -0.0103 0.0145 0.9998 +vn 0.7770 0.5463 0.3128 +vn 0.8678 0.4263 0.2555 +vn 0.8069 0.5863 0.0714 +vn 0.0149 -0.0052 0.9999 +vn -0.0085 0.0605 0.9981 +vn 0.3365 -0.6001 0.7257 +vn 0.0282 -0.1276 0.9914 +vn 0.1093 -0.7015 0.7043 +vn 0.4366 -0.1905 0.8793 +vn 0.0634 0.1078 0.9921 +vn 0.2664 -0.1134 0.9572 +vn -0.7854 -0.5549 0.2743 +vn -0.8659 -0.4507 0.2171 +vn -0.9507 0.2976 0.0876 +vn 0.5769 -0.7947 0.1887 +vn 0.0110 0.0044 0.9999 +vn 0.0791 0.1517 0.9853 +vn 0.0059 0.0284 0.9996 +vn -0.7803 0.6230 0.0545 +vn -0.8221 0.4556 0.3415 +vn -0.4361 0.6484 0.6240 +vn -0.6875 0.7220 0.0783 +vn 0.1409 0.9872 0.0748 +vn -0.4434 0.7746 0.4509 +vn 0.2264 0.9711 0.0755 +vn -0.9921 -0.1135 0.0540 +vn -0.7395 0.5530 0.3837 +vn -0.9916 0.0728 0.1070 +vn 0.8409 0.5329 -0.0948 +vn 0.9720 0.1809 0.1503 +vn 0.9029 0.4105 0.1276 +vn -0.7992 0.5779 0.1653 +vn -0.8068 0.3977 0.4369 +vn -0.4174 0.8726 0.2537 +vn -0.4042 0.9052 0.1316 +vn 0.8302 -0.5065 0.2330 +vn 0.6578 -0.7509 0.0585 +vn 0.7247 -0.6826 -0.0941 +vn 0.8593 -0.4937 0.1338 +vn 0.4574 -0.8866 0.0691 +vn -0.1200 -0.7344 0.6680 +vn -0.0067 -0.9753 0.2209 +vn 0.1473 -0.8646 0.4804 +vn -0.0813 0.7501 0.6564 +vn -0.0058 0.0441 0.9990 +vn 0.0717 0.5710 0.8178 +vn -0.0640 0.9028 0.4252 +vn 0.8636 -0.0092 0.5041 +vn 0.2080 0.0042 0.9781 +vn 0.5705 -0.4994 0.6519 +vn 0.3475 0.0072 0.9377 +vn 0.1622 0.4310 0.8876 +vn 0.0337 0.3101 0.9501 +vn -0.0503 -0.1276 0.9905 +vn 0.8837 0.0444 0.4658 +vn 0.9474 0.0843 0.3088 +vn 0.4619 0.8030 0.3768 +vn 0.3895 0.4646 0.7953 +vn 0.1118 -0.8933 0.4353 +vn 0.0153 0.5053 0.8628 +vn 0.1399 0.1552 0.9779 +vn -0.1014 0.6216 0.7767 +vn 0.0376 0.8338 0.5508 +vn 0.7650 -0.6372 0.0934 +vn 0.0868 -0.8648 -0.4946 +vn 0.0378 -0.6161 -0.7867 +vn -0.2632 -0.8324 -0.4878 +vn -0.8266 0.3314 -0.4549 +vn -0.8595 -0.2085 -0.4667 +vn 0.8632 -0.0831 0.4979 +vn 0.7337 0.0896 0.6736 +vn 0.8868 0.1498 0.4373 +vn 0.5283 -0.0015 0.8491 +vn 0.2174 0.0086 0.9761 +vn 0.0135 0.0321 0.9994 +vn 0.7591 0.6425 0.1048 +vn 0.7278 0.5684 0.3838 +vn 0.7474 0.6183 0.2431 +vn -0.2718 -0.4586 0.8461 +vn 0.5734 -0.5103 0.6409 +vn -0.4329 -0.4283 0.7932 +vn -0.0434 -0.9263 0.3742 +vn 0.3913 0.7031 0.5937 +vn 0.1490 0.6129 0.7759 +vn 0.4024 0.4807 0.7791 +vn -0.8103 -0.2287 0.5395 +vn -0.4520 -0.5454 0.7059 +vn -0.4345 -0.8799 0.1923 +vn -0.5177 -0.5898 0.6198 +vn -0.5677 -0.4770 0.6710 +vn -0.7156 -0.3602 0.5985 +vn 0.0652 -0.3186 0.9456 +vn 0.0267 -0.2010 0.9792 +vn 0.0245 -0.1709 0.9850 +vn 0.0987 -0.9770 0.1892 +vn -0.1191 -0.4451 0.8875 +vn 0.1153 -0.9844 0.1331 +vn 0.1640 -0.9804 0.1092 +vn -0.2555 0.7269 0.6375 +vn -0.6928 0.0307 0.7205 +vn -0.7146 0.6123 0.3383 +vn 0.6220 0.5155 0.5893 +vn 0.6002 0.3914 0.6975 +vn 0.5344 0.5110 0.6733 +vn 0.1717 0.6035 0.7786 +vn 0.3137 0.4199 0.8516 +vn 0.4083 0.5414 0.7349 +vn 0.7932 0.3828 0.4736 +vn -0.7476 -0.5973 0.2902 +vn -0.6473 -0.5158 0.5612 +vn -0.6462 -0.5068 0.5706 +vn -0.7969 -0.5332 0.2841 +vn -0.4679 0.8666 0.1736 +vn -0.5783 0.4877 0.6540 +vn 0.0286 0.6142 0.7886 +vn 0.0099 0.9460 0.3241 +vn 0.2589 -0.3726 0.8911 +vn 0.2881 -0.5703 0.7693 +vn 0.7549 -0.4113 0.5109 +vn 0.8206 -0.5385 0.1913 +vn 0.5820 -0.6442 0.4962 +vn 0.5276 -0.8360 0.1508 +vn 0.9464 -0.0708 0.3150 +vn 0.8268 0.0057 0.5624 +vn 0.9953 -0.0445 0.0865 +vn -0.7759 0.6238 0.0940 +vn -0.7133 0.6034 0.3566 +vn -0.7723 0.6024 0.2015 +vn -0.0217 0.9939 0.1079 +vn 0.0044 0.7616 0.6481 +vn -0.0987 0.9052 0.4134 +vn 0.8930 -0.1162 0.4348 +vn 0.7510 0.0017 0.6603 +vn 0.9859 -0.1212 0.1153 +vn 0.0050 -0.0347 0.9994 +vn -0.4429 -0.2593 0.8583 +vn 0.4877 -0.4176 0.7667 +vn 0.9778 0.1332 0.1616 +vn 0.8289 -0.0770 0.5541 +vn 0.9854 0.1287 0.1110 +vn 0.9393 -0.1380 0.3142 +vn 0.6337 0.5681 0.5251 +vn 0.0931 -0.4676 0.8790 +vn 0.6525 -0.6476 0.3936 +vn 0.0240 -0.8078 0.5890 +vn 0.1770 -0.6155 0.7680 +vn -0.2660 -0.1961 0.9438 +vn -0.0039 -0.6147 0.7887 +vn 0.0321 -0.6226 0.7819 +vn 0.1713 0.1343 0.9760 +vn -0.0792 -0.1639 0.9833 +vn 0.1648 -0.6979 0.6970 +vn 0.0910 -0.9166 0.3892 +vn -0.8655 -0.4985 0.0490 +vn -0.9317 0.3629 0.0187 +vn -0.9202 0.3725 0.1203 +vn -0.7442 0.6503 0.1525 +vn 0.6395 0.7639 0.0864 +vn 0.6260 0.7737 0.0979 +vn 0.5248 0.8401 0.1372 +vn -0.8038 -0.5718 0.1641 +vn -0.8275 -0.5453 0.1337 +vn -0.6222 -0.7710 0.1354 +vn 0.8066 -0.5607 0.1871 +vn 0.7149 -0.6957 0.0702 +vn 0.8526 -0.5191 0.0601 +vn -0.4114 -0.3899 0.8238 +vn -0.4103 -0.2114 0.8871 +vn -0.1348 -0.1702 0.9761 +vn -0.9761 0.1805 0.1207 +vn 0.7152 0.6844 0.1417 +vn 0.4218 0.2117 0.8816 +vn 0.7016 0.5909 0.3983 +vn 0.9775 -0.1709 0.1240 +vn -0.3194 0.8202 -0.4747 +vn -0.2124 -0.0163 -0.9771 +vn -0.9056 -0.4156 0.0845 +vn -0.7666 -0.1187 -0.6311 +vn -0.9920 0.0583 -0.1123 +vn -0.8294 0.5024 -0.2443 +vn -0.6261 0.2463 -0.7398 +vn 0.0583 0.9923 0.1090 +vn -0.0963 0.9577 0.2712 +vn 0.0088 0.9980 0.0622 +vn -0.0252 0.1084 -0.9938 +vn 0.0227 0.0600 -0.9979 +vn 0.0010 0.0591 -0.9983 +vn -0.0045 0.1093 -0.9940 +vn -0.9683 0.1294 -0.2138 +vn -0.9525 0.1300 -0.2752 +vn -0.9950 0.0391 -0.0924 +vn -0.9994 0.0274 -0.0205 +vn -0.9940 0.0857 -0.0678 +vn 0.0161 -0.9696 -0.2443 +vn -0.0238 -0.9583 -0.2848 +vn -0.0076 -0.9592 -0.2825 +vn 0.0022 -0.9712 -0.2382 +vn 0.0205 -0.9868 0.1605 +vn 0.0468 -0.9956 0.0807 +vn -0.0019 -0.0197 0.9998 +vn 0.0023 -0.0233 0.9997 +vn 0.0030 -0.0238 0.9997 +vn -0.0120 -0.0253 0.9996 +vn -0.0276 -0.0065 0.9996 +vn -0.0167 0.0042 0.9999 +vn -0.0216 -0.0021 0.9998 +vn -0.0040 0.0084 1.0000 +vn 0.0052 0.0075 1.0000 +vn 0.0362 0.0145 0.9992 +vn 0.0167 -0.0120 0.9998 +vn -0.0028 0.0040 1.0000 +vn 0.0293 0.0093 0.9995 +vn 0.0279 0.0598 0.9978 +vn 0.0165 0.0677 0.9976 +vn 0.0116 0.0619 0.9980 +vn 0.0355 0.0774 0.9964 +vn 0.0381 0.0006 0.9993 +vn -0.0021 0.0004 1.0000 +vn 0.0470 -0.0232 0.9986 +vn 0.0492 -0.0242 0.9985 +vn -0.9586 -0.2847 0.0045 +vn -0.9251 -0.3666 -0.0994 +vn -0.9572 -0.2846 0.0520 +vn -0.9090 -0.3863 -0.1565 +vn -0.2024 -0.1048 0.9737 +vn 0.3278 -0.0935 0.9401 +vn 0.0422 -0.1024 0.9938 +vn 0.0012 -0.4262 0.9046 +vn -0.0050 -0.4498 0.8931 +vn -0.0287 -0.4607 0.8871 +vn 0.0030 -0.9910 0.1335 +vn 0.0018 -0.9913 0.1313 +vn 0.0040 -0.9910 0.1336 +vn 0.0026 -0.9914 0.1312 +vn 0.0738 -0.0257 0.9969 +vn -0.0147 0.0187 0.9997 +vn 0.0280 -0.0313 0.9991 +vn 0.0246 0.0517 0.9984 +vn 0.0200 0.9977 0.0649 +vn 0.0035 0.9981 0.0618 +vn -0.0178 0.9947 0.1014 +vn -0.0035 0.9947 0.1032 +vn 0.0102 0.9882 0.1526 +vn -0.0108 0.9911 0.1328 +vn 0.0016 0.9882 0.1530 +vn -0.0011 0.9914 0.1312 +vn 0.0293 -0.9863 0.1623 +vn 0.0024 -0.9937 0.1120 +vn -0.0059 -0.0593 0.9982 +vn -0.0017 -0.0572 0.9984 +vn 0.0006 -0.0040 1.0000 +vn 0.0003 -0.0028 1.0000 +vn 0.7688 -0.6337 0.0859 +vn 0.7656 -0.6390 0.0748 +vn -0.7464 0.6614 0.0739 +vn -0.7188 0.6245 0.3055 +vn -0.7323 0.5970 0.3275 +vn 0.7477 -0.6547 0.1111 +vn 0.7637 -0.6412 0.0753 +vn 0.7554 -0.6386 0.1467 +vn -0.7517 0.6489 0.1179 +vn -0.7624 0.6405 0.0922 +vn 0.4533 0.7209 0.5242 +vn 0.3801 0.9206 0.0896 +vn -0.3672 -0.9283 0.0577 +vn -0.3690 -0.9267 0.0711 +vn -0.3898 -0.9153 0.1010 +vn -0.3894 -0.9140 0.1135 +vn 0.7752 0.6206 0.1178 +vn 0.7833 0.6144 0.0942 +vn 0.7819 0.6165 0.0926 +vn 0.7741 0.6253 0.0989 +vn -0.7178 0.5066 0.4775 +vn -0.7542 0.6486 0.1027 +vn -0.6162 0.5527 0.5611 +vn -0.5768 0.8118 0.0917 +vn 0.6803 -0.7282 0.0833 +vn 0.5480 -0.8300 0.1039 +vn 0.7763 -0.6273 0.0630 +vn 0.0728 -0.9921 0.1018 +vn 0.1454 -0.9844 0.0986 +vn -0.0569 -0.9929 0.1045 +vn -0.7906 -0.2637 0.5526 +vn -0.9280 -0.3635 0.0816 +vn -0.9080 -0.4161 0.0498 +vn -0.9383 -0.3373 0.0770 +vn 0.9372 0.3183 0.1425 +vn 0.9247 0.3688 0.0941 +vn 0.9272 0.3625 0.0938 +vn 0.9229 0.3786 0.0707 +vn 0.9052 0.4133 0.0985 +vn -0.9980 -0.0107 0.0619 +vn -0.9982 -0.0023 0.0607 +vn 0.9911 0.0259 0.1309 +vn 0.9968 -0.0015 0.0798 +vn -0.0088 0.9966 0.0819 +vn 0.0017 0.9949 0.1010 +vn 0.0020 -0.9974 0.0723 +vn 0.0131 -0.9972 0.0738 +vn -0.0126 -0.9950 0.0987 +vn -0.0013 -0.9951 0.0991 +vn -0.8953 0.4339 0.1007 +vn -0.8753 0.4663 0.1277 +vn -0.8920 0.4413 0.0973 +vn -0.8720 0.4739 0.1224 +vn -0.8958 -0.4415 0.0516 +vn -0.8835 -0.4635 0.0670 +vn -0.8850 -0.4600 0.0719 +vn -0.8975 -0.4376 0.0549 +vn 0.9842 -0.1563 0.0838 +vn 0.9967 -0.0013 0.0811 +vn 0.9666 -0.2424 0.0830 +vn 0.9607 -0.2600 0.0970 +vn -0.9888 -0.1065 0.1048 +vn -0.8578 0.0169 0.5138 +vn -0.7325 -0.1775 0.6573 +vn -0.9952 -0.0077 0.0976 +vn -0.9802 0.1897 0.0570 +vn 0.9963 -0.0038 0.0860 +vn 0.9947 0.0077 0.1026 +vn 0.9894 -0.0205 0.1437 +vn 0.9110 -0.3570 -0.2066 +vn 0.9845 -0.0513 0.1679 +vn 0.9852 -0.0604 0.1602 +vn 0.9522 0.0924 0.2911 +vn 0.9559 0.0583 0.2879 +vn 0.4055 -0.9141 -0.0003 +vn -0.1094 -0.9940 -0.0021 +vn 0.5890 -0.8081 0.0003 +vn 0.1076 -0.9942 0.0003 +vn -0.5886 -0.8084 -0.0011 +vn -0.4063 -0.9137 0.0009 +vn -0.9132 -0.4075 0.0009 +vn 0.8078 -0.5895 -0.0008 +vn 0.9143 -0.4051 0.0004 +vn -0.8083 -0.5888 0.0003 +vn -0.9942 0.1074 -0.0012 +vn 0.9942 -0.1075 -0.0016 +vn 0.9943 0.1063 0.0004 +vn -0.9943 -0.1070 0.0000 +vn -0.8073 0.5902 -0.0016 +vn 0.9144 0.4048 0.0000 +vn 0.8076 0.5898 0.0001 +vn -0.9143 0.4051 0.0004 +vn -0.4055 0.9141 -0.0003 +vn 0.5878 0.8090 -0.0005 +vn 0.4065 0.9136 0.0008 +vn -0.5890 0.8081 0.0002 +vn 0.1094 0.9940 -0.0021 +vn -0.1076 0.9942 0.0003 +vn -0.0034 0.0161 -0.9999 +vn 0.0125 0.0074 -0.9999 +vn -0.0218 0.0320 -0.9993 +vn -0.0189 -0.0011 -0.9998 +vn -0.0094 0.0171 -0.9998 +vn 0.0134 0.0097 -0.9999 +vn 0.0270 0.0175 -0.9995 +vn -0.0207 0.0083 -0.9998 +vn 0.0133 0.0105 -0.9999 +vn 0.0265 0.0057 -0.9996 +vn 0.0252 -0.0077 -0.9997 +vn -0.0320 -0.0204 -0.9993 +vn -0.0703 -0.0313 -0.9970 +vn 0.0187 -0.0160 -0.9997 +vn 0.0205 -0.0344 -0.9992 +vn 0.0282 -0.0221 -0.9994 +vn -0.0133 -0.0226 -0.9997 +vn 0.0142 0.0119 -0.9998 +vn 0.0019 -0.0272 -0.9996 +vn 0.0166 -0.0481 -0.9987 +vn 0.7095 -0.7004 0.0783 +vn 0.7142 -0.6959 0.0758 +vn 0.0124 -0.0338 0.9994 +vn -0.2042 0.0056 0.9789 +vn 0.3551 0.1083 0.9286 +vn -0.1775 0.1872 0.9661 +vn 0.0609 -0.0935 0.9938 +vn -0.2255 0.2800 0.9331 +vn -0.0507 0.2441 0.9684 +vn 0.9965 -0.0111 0.0831 +vn 0.9963 -0.0025 0.0861 +vn 0.9947 0.0120 0.1020 +vn 0.9942 0.0206 0.1053 +vn -0.9231 -0.3458 -0.1685 +vn -0.7763 -0.6245 0.0852 +vn -0.7766 -0.6177 0.1243 +vn -0.7865 -0.6103 0.0945 +vn -0.7850 -0.6124 0.0933 +vn -0.7685 -0.6330 0.0936 +vn -0.0585 -0.0409 0.9974 +vn 0.0029 -0.0087 1.0000 +vn -0.0635 -0.0370 0.9973 +vn 0.0008 -0.0057 1.0000 +vn 0.0092 -0.0105 0.9999 +vn 0.1789 0.9838 0.0061 +vn -0.1087 0.9925 -0.0551 +vn 0.0082 0.9999 0.0100 +vn 0.3368 0.9348 -0.1128 +vn -0.5609 0.8263 -0.0521 +vn 0.7794 0.6181 -0.1022 +vn 0.8836 0.4510 -0.1259 +vn -0.5003 0.8571 0.1229 +vn -0.8394 0.5410 -0.0525 +vn -0.9277 0.3729 -0.0168 +vn -0.9819 0.1752 -0.0726 +vn 0.9987 -0.0277 -0.0436 +vn 0.9821 -0.1498 -0.1145 +vn -0.9540 -0.2989 -0.0216 +vn -0.9352 -0.3443 -0.0827 +vn 0.8537 -0.5191 -0.0416 +vn 0.8153 -0.5588 -0.1515 +vn -0.9508 -0.3093 -0.0187 +vn -0.4312 -0.8876 -0.1619 +vn 0.5250 -0.8488 -0.0622 +vn 0.2286 -0.9582 -0.1721 +vn -0.1337 -0.9870 -0.0886 +vn -0.5669 -0.8237 0.0066 +vn 0.0957 0.9921 0.0809 +vn -0.2035 -0.9764 0.0718 +vn -0.5185 -0.8521 0.0714 +vn -0.7674 -0.6364 0.0781 +vn -0.0894 -0.9935 0.0699 +vn -0.8798 -0.4680 0.0836 +vn 0.2979 -0.9471 0.1192 +vn 0.2978 -0.9474 0.1175 +vn 0.3023 -0.9465 0.1131 +vn 0.3023 -0.9467 0.1114 +vn -0.3296 0.9407 0.0802 +vn -0.3203 0.9427 0.0932 +vn -0.3199 0.9432 0.0899 +vn -0.3289 0.9412 0.0768 +vn 0.3432 0.9371 0.0635 +vn 0.1598 0.9849 0.0673 +vn 0.2155 0.9733 0.0790 +vn 0.1195 0.9883 0.0944 +vn 0.4369 0.8951 0.0890 +vn 0.5783 0.8131 0.0665 +vn 0.6944 0.7142 0.0881 +vn 0.8178 0.5666 0.1012 +vn 0.9957 0.0205 0.0902 +vn 0.9943 -0.0690 0.0817 +vn 0.9844 0.1418 0.1038 +vn 0.9528 -0.2559 0.1634 +vn 0.9477 -0.2860 0.1418 +vn 0.9851 -0.1621 0.0581 +vn 0.9887 -0.1339 0.0672 +vn 0.4773 0.8743 0.0879 +vn 0.2788 0.9566 0.0851 +vn 0.0018 -0.0004 1.0000 +vn -0.0026 0.0152 0.9999 +vn 0.0018 -0.0045 1.0000 +vn -0.0494 -0.0370 0.9981 +vn -0.0381 -0.1054 0.9937 +vn -0.0441 -0.1171 0.9921 +vn 0.0028 -0.9970 0.0779 +vn -0.0137 -0.9983 0.0573 +vn -0.0160 -0.9980 0.0609 +vn -0.0334 -0.9918 0.1237 +vn 0.0024 -0.9892 0.1468 +vn 0.1449 -0.1863 0.9717 +vn -0.0072 -0.0243 0.9997 +vn 0.0439 -0.2781 0.9596 +vn -0.0010 0.9979 -0.0640 +vn 0.7716 0.2254 0.5948 +vn 0.9801 0.1514 0.1286 +vn 0.8930 0.4009 0.2044 +vn -0.0937 -0.9921 0.0836 +vn -0.0123 -0.8992 0.4374 +vn -0.7699 -0.2565 0.5844 +vn -0.9944 -0.1040 0.0165 +vn -0.9951 -0.0949 0.0260 +vn -0.9971 -0.0545 0.0523 +vn -0.9993 -0.0061 0.0379 +vn -0.9719 0.2062 0.1138 +vn -0.0725 0.9933 0.0897 +vn 0.0721 0.9006 0.4285 +vn -0.0591 0.9273 0.3695 +vn 0.0257 0.9952 0.0944 +vn -0.0579 0.9840 0.1683 +vn -0.0082 0.9967 0.0802 +vn 0.0617 0.9979 -0.0220 +vn 0.9952 0.0128 0.0973 +vn 0.9974 -0.0127 0.0704 +vn 0.9959 0.0017 0.0906 +vn 0.7876 -0.4786 -0.3881 +vn 0.9928 -0.0569 0.1057 +vn 0.9982 -0.0476 -0.0371 +vn 0.9992 0.0394 0.0022 +vn -0.0010 -0.0099 1.0000 +vn -0.0408 0.0881 0.9953 +vn 0.0534 0.0245 0.9983 +vn 0.0536 0.0303 0.9981 +vn -0.0849 0.9819 -0.1696 +vn -0.0006 0.9942 -0.1071 +vn -0.0009 0.9942 -0.1075 +vn 0.9941 -0.0033 -0.1081 +vn 0.9616 -0.1545 -0.2270 +vn 0.9941 -0.0027 -0.1083 +vn -0.0465 -0.0035 0.9989 +vn 0.0298 -0.0217 0.9993 +vn -0.0336 0.0271 0.9991 +vn -0.0010 -0.0000 1.0000 +vn 0.0184 0.0122 0.9998 +vn 0.0213 0.0122 0.9997 +vn 0.0176 0.0128 0.9998 +vn 0.0221 0.0116 0.9997 +vn 0.9954 -0.0530 0.0796 +vn 0.7283 -0.6561 0.1977 +vn 0.6830 -0.7191 0.1280 +vn 0.7097 -0.6835 0.1707 +vn 0.6908 -0.6964 0.1945 +vn 0.7004 -0.6932 0.1703 +vn 0.6996 -0.6949 0.1663 +vn 0.7197 0.6587 0.2193 +vn 0.8174 0.5663 0.1053 +vn -0.9950 -0.0110 0.0991 +vn -0.0619 0.9891 0.1336 +vn -0.5625 0.8193 0.1113 +vn -0.8559 0.5084 0.0948 +vn 0.9848 0.1427 0.0986 +vn -0.8710 -0.4692 0.1460 +vn -0.1635 -0.9784 0.1262 +vn 0.6848 -0.2998 0.6642 +vn 0.3419 -0.7558 0.5584 +vn 0.6968 -0.7121 0.0857 +vn 0.6970 -0.7118 0.0868 +vn 0.9003 0.4153 0.1302 +vn 0.5427 0.8282 0.1396 +vn -0.4622 -0.8125 0.3552 +vn 0.2912 -0.2578 0.9213 +vn 0.4759 -0.6470 0.5958 +vn 0.2172 -0.7022 0.6780 +vn 0.0605 -0.0014 0.9982 +vn 0.0000 0.0000 1.0000 +vn -0.9675 -0.0588 0.2458 +vn -0.9360 0.0653 0.3458 +vn -0.8188 0.0161 0.5739 +vn -0.5134 0.5401 0.6669 +vn -0.0479 0.0867 0.9951 +vn -0.9003 -0.4314 0.0582 +vn -0.7780 -0.6124 0.1401 +vn 0.0325 0.0415 0.9986 +vn 0.0298 0.0214 0.9993 +vn 0.0367 0.0173 0.9992 +vn 0.0415 0.0421 0.9982 +vn 0.4124 0.9032 0.1191 +vn 0.4026 0.9072 0.1223 +vn 0.3828 0.9135 0.1377 +vn 0.3744 0.9171 0.1371 +vn -0.7048 0.6972 0.1312 +vn -0.0292 -0.0028 0.9996 +vn -0.0300 -0.0077 0.9995 +vn -0.0292 -0.0069 0.9996 +vn -0.0284 -0.0019 0.9996 +vn 0.0308 0.0101 -0.9995 +vn 0.0248 0.0088 -0.9997 +vn 0.0246 0.0254 -0.9994 +vn 0.0301 0.0268 -0.9992 +vn -0.0242 -0.0009 0.9997 +vn -0.0203 0.0201 0.9996 +vn 0.0252 -0.9956 0.0905 +vn -0.2817 -0.9575 0.0620 +vn 0.0388 -0.4312 0.9014 +vn -0.0238 -0.1012 0.9946 +vn 0.0063 -0.0240 0.9997 +vn -0.0248 -0.0027 0.9997 +vn 0.0002 -0.0004 1.0000 +vn 0.0164 -0.0234 0.9996 +vn 0.0194 -0.0361 0.9992 +vn -0.0042 -0.0011 1.0000 +vn 0.0065 -0.0001 1.0000 +vn 0.0018 -0.0031 1.0000 +vn -0.0082 -0.0040 1.0000 +vn 0.0020 0.0018 1.0000 +vn 0.0103 0.0120 0.9999 +vn -0.0025 0.0054 1.0000 +vn 0.1483 -0.7392 -0.6569 +vn -0.6821 0.1950 -0.7047 +vn 0.2399 0.6498 -0.7213 +vn 0.0606 0.9269 -0.3704 +vn -0.0040 -0.0018 1.0000 +vn 0.0167 0.0202 0.9997 +vn -0.0116 0.0067 0.9999 +vn -0.0014 -0.0115 0.9999 +vn 0.0378 -0.2421 0.9695 +vn 0.0220 -0.1462 0.9890 +vn 0.0761 -0.0280 0.9967 +vn 0.1319 0.0010 0.9913 +vn -0.8036 0.5906 0.0741 +vn -0.8780 0.3532 0.3232 +vn -0.7469 0.5235 0.4099 +vn -0.0092 -0.2885 0.9574 +vn -0.3870 -0.1408 0.9113 +vn 0.0364 -0.1152 0.9927 +vn -0.3453 -0.0981 0.9333 +vn -0.2160 -0.7009 0.6797 +vn -0.0807 -0.1498 0.9854 +vn -0.1729 -0.3367 0.9256 +vn 0.9421 0.3109 0.1257 +vn 0.8788 -0.3217 0.3526 +vn 0.7299 -0.5143 0.4503 +vn -0.7242 -0.6120 0.3178 +vn -0.8168 -0.5145 0.2611 +vn -0.7211 -0.6705 0.1745 +vn 0.5556 -0.8221 -0.1248 +vn 0.2119 -0.9496 0.2312 +vn -0.2379 -0.7152 0.6572 +vn 0.8139 0.3177 0.4865 +vn 0.8154 0.5153 0.2639 +vn 0.3250 0.9451 0.0331 +vn -0.1136 0.9934 0.0179 +vn 0.2397 0.8088 0.5371 +vn 0.3563 0.8119 0.4625 +vn -0.2294 0.9697 0.0837 +vn 0.9940 0.0486 0.0984 +vn 0.7607 0.4428 0.4746 +vn 0.9944 -0.0847 0.0625 +vn 0.6124 0.7886 0.0556 +vn 0.9210 0.1258 0.3686 +vn 0.7517 0.6486 0.1193 +vn -0.9403 0.3036 0.1540 +vn -0.9005 -0.4102 0.1442 +vn -0.9502 0.1138 0.2901 +vn -0.8449 -0.5262 0.0961 +vn 0.0064 -0.9742 0.2255 +vn 0.0268 -0.9740 0.2251 +vn -0.4408 -0.8948 0.0715 +vn 0.1894 -0.8005 0.5686 +vn -0.1178 0.6313 0.7666 +vn 0.0078 0.0603 0.9982 +vn -0.0089 0.6536 0.7568 +vn 0.0000 0.6435 0.7655 +vn -0.5897 -0.0173 0.8074 +vn -0.2073 0.5401 0.8156 +vn -0.2372 0.9325 0.2723 +vn -0.8886 -0.0016 0.4587 +vn 0.0094 -0.1531 0.9882 +vn -0.0200 0.2298 0.9730 +vn -0.8691 0.0936 0.4856 +vn 0.1326 -0.4406 0.8878 +vn -0.4198 0.2741 0.8652 +vn -0.5551 0.6715 0.4908 +vn -0.8366 0.1140 0.5358 +vn 0.1020 0.8051 0.5844 +vn -0.3754 -0.3141 0.8720 +vn 0.0049 0.4462 0.8949 +vn -0.0379 0.8136 0.5802 +vn 0.8655 -0.1847 -0.4656 +vn 0.8502 0.2902 -0.4392 +vn 0.5728 -0.6846 -0.4509 +vn 0.2025 -0.8841 -0.4212 +vn -0.9505 -0.0855 0.2988 +vn -0.7163 0.2860 0.6365 +vn -0.6973 -0.0641 0.7139 +vn -0.9874 0.0163 0.1573 +vn -0.6028 0.0381 0.7970 +vn -0.1979 0.1892 0.9618 +vn 0.4626 0.3101 0.8306 +vn 0.7874 0.5569 0.2644 +vn 0.3049 0.1936 0.9325 +vn 0.5021 0.5655 0.6543 +vn 0.0934 0.2304 0.9686 +vn 0.1973 0.8276 0.5255 +vn -0.0757 0.4788 0.8746 +vn -0.3395 0.7451 0.5741 +vn -0.7568 0.3900 0.5245 +vn 0.5012 -0.5494 0.6686 +vn -0.1413 -0.7557 0.6395 +vn 0.3013 -0.9302 0.2094 +vn -0.6134 -0.4624 0.6402 +vn -0.7115 -0.2393 0.6607 +vn 0.7923 -0.2823 0.5410 +vn 0.4748 0.1568 0.8660 +vn -0.8042 0.2120 0.5553 +vn -0.5813 0.4415 0.6835 +vn 0.3651 0.5988 0.7129 +vn 0.8652 0.4858 0.1240 +vn -0.5189 0.8267 0.2176 +vn -0.0607 0.8373 0.5433 +vn -0.6930 0.6172 0.3726 +vn -0.6065 0.4702 0.6412 +vn -0.7484 0.6534 0.1139 +vn 0.0341 -0.9898 0.1384 +vn -0.0099 -0.9013 0.4331 +vn 0.0158 -0.9667 0.2555 +vn 0.7582 -0.6295 0.1697 +vn 0.7580 -0.6224 0.1953 +vn 0.6361 -0.7579 0.1450 +vn -0.4590 -0.4758 0.7503 +vn -0.3760 -0.6594 0.6511 +vn -0.1046 -0.6557 0.7478 +vn 0.2155 -0.6069 0.7650 +vn 0.0958 -0.5200 0.8488 +vn -0.2473 0.8625 0.4416 +vn -0.6399 0.7001 0.3169 +vn 0.2935 -0.6316 0.7176 +vn 0.1260 -0.9744 0.1862 +vn 0.5919 -0.6676 0.4517 +vn 0.6690 -0.2824 0.6876 +vn 0.7521 -0.6225 0.2164 +vn 0.6166 -0.3105 0.7235 +vn 0.5264 -0.2849 0.8011 +vn 0.1646 -0.9537 0.2517 +vn -0.4297 -0.3827 0.8179 +vn -0.6114 -0.1141 0.7831 +vn -0.2463 -0.4895 0.8365 +vn 0.7315 0.0133 0.6817 +vn 0.2470 0.7434 0.6216 +vn 0.6482 0.0005 0.7615 +vn 0.7605 0.5658 0.3185 +vn -0.2241 0.8685 -0.4422 +vn -0.1847 0.5254 0.8306 +vn -0.1135 0.2573 0.9596 +vn -0.4423 0.5435 0.7134 +vn -0.6074 0.3409 0.7175 +vn -0.1134 0.8784 0.4643 +vn -0.4431 0.8786 0.1781 +vn -0.5873 0.5606 0.5838 +vn -0.7654 0.4252 0.4831 +vn 0.7838 -0.4747 0.4005 +vn 0.0372 0.1673 0.9852 +vn 0.2457 -0.5306 0.8112 +vn 0.7074 -0.6193 0.3406 +vn 0.5934 0.8015 0.0738 +vn -0.0355 0.6474 0.7613 +vn -0.0020 0.9525 0.3045 +vn -0.4938 -0.4662 0.7341 +vn -0.5948 -0.3116 0.7410 +vn -0.3717 -0.3525 0.8589 +vn -0.4682 -0.3490 0.8117 +vn -0.6203 -0.2080 0.7563 +vn -0.6400 0.0140 0.7682 +vn -0.9869 -0.1384 0.0825 +vn -0.0070 -0.0093 0.9999 +vn -0.3839 0.4057 0.8295 +vn -0.5319 0.0027 0.8468 +vn 0.0192 0.7352 0.6776 +vn 0.4756 0.6448 0.5983 +vn -0.1805 0.9613 0.2079 +vn 0.8056 0.5845 0.0969 +vn -0.6194 -0.4603 0.6360 +vn 0.4266 -0.2405 0.8719 +vn -0.3985 0.0168 0.9170 +vn -0.9825 0.1390 0.1237 +vn -0.7689 -0.0580 0.6367 +vn -0.9676 0.1626 0.1931 +vn -0.9283 -0.1540 0.3384 +vn -0.6414 0.5960 0.4831 +vn -0.7450 -0.6588 0.1046 +vn -0.5689 -0.4697 0.6751 +vn -0.6098 -0.6327 0.4774 +vn 0.1599 -0.9685 0.1907 +vn 0.1507 -0.9798 0.1314 +vn 0.0503 -0.9835 0.1736 +vn -0.1419 -0.5488 0.8238 +vn -0.1424 -0.7998 0.5831 +vn -0.0363 -0.9339 0.3557 +vn 0.1938 -0.7088 0.6783 +vn 0.0029 -0.6019 0.7986 +vn 0.0615 -0.1730 0.9830 +vn -0.3499 0.1923 0.9168 +vn 0.2140 -0.7297 0.6495 +vn -0.0998 -0.9240 0.3692 +vn 0.8536 -0.5169 0.0652 +vn 0.7665 0.6254 0.1464 +vn 0.9318 0.3432 0.1183 +vn 0.9201 0.3901 0.0358 +vn -0.6254 0.7751 0.0904 +vn 0.0174 0.9973 0.0714 +vn 0.0284 0.9867 0.1600 +vn 0.3593 0.9239 0.1316 +vn 0.6875 0.7252 -0.0373 +vn 0.8812 0.4496 0.1460 +vn 0.7550 -0.6247 0.1994 +vn 0.8038 0.5718 0.1639 +vn 0.0194 -0.9945 0.1030 +vn -0.6656 -0.7456 0.0327 +vn 0.4088 -0.3906 0.8248 +vn 0.1397 -0.1776 0.9741 +vn 0.4056 -0.1944 0.8931 +vn 0.9690 0.2221 0.1078 +vn -0.7167 0.6835 0.1382 +vn -0.6916 0.6050 0.3946 +vn -0.4092 0.1713 0.8962 +vn -0.9590 -0.2607 0.1115 +vn 0.0267 0.6768 -0.7357 +vn -0.2142 0.9762 0.0334 +vn 0.5463 0.0351 -0.8369 +vn 0.7912 0.0215 -0.6112 +vn 0.8959 -0.4415 0.0497 +vn 0.8479 0.4282 -0.3126 +vn 0.6240 0.2395 -0.7438 +vn -0.1114 0.1833 -0.9767 +vn -0.1205 0.1101 -0.9866 +vn -0.0697 0.9900 0.1227 +vn 0.0987 0.9539 0.2835 +vn -0.0336 0.9925 0.1177 +vn -0.1336 0.7249 0.6758 +vn -0.1343 0.7075 0.6939 +vn -0.0013 0.9960 0.0888 +vn -0.0052 0.0981 -0.9952 +vn 0.0179 0.0562 -0.9983 +vn -0.0231 0.0972 -0.9950 +vn -0.0007 0.0551 -0.9985 +vn 0.9677 -0.0307 -0.2504 +vn 0.9604 0.0001 -0.2788 +vn 0.9591 -0.0028 -0.2831 +vn 0.9694 -0.0159 -0.2451 +vn 0.9744 -0.0477 -0.2195 +vn -0.0551 -0.9539 -0.2951 +vn 0.0029 -0.9837 -0.1800 +vn 0.0041 -0.9842 -0.1771 +vn -0.0000 -0.0146 0.9999 +vn -0.0032 0.0002 1.0000 +vn 0.0406 0.9985 -0.0356 +vn -0.0205 0.0103 0.9997 +vn -0.0163 0.0088 0.9998 +vn 0.0017 0.0329 0.9995 +vn -0.0126 0.0111 0.9999 +vn 0.0034 -0.0081 1.0000 +vn 0.0049 -0.0478 0.9988 +vn 0.0316 -0.0175 0.9993 +vn 0.0234 -0.0180 0.9996 +vn 0.0177 -0.0113 0.9998 +vn 0.0190 -0.0096 0.9998 +vn -0.0063 -0.0014 1.0000 +vn -0.0200 -0.0181 0.9996 +vn -0.0385 0.0256 0.9989 +vn -0.0218 0.0290 0.9993 +vn -0.0012 -0.0048 1.0000 +vn -0.0102 0.0726 0.9973 +vn -0.0100 0.0740 0.9972 +vn -0.0319 0.0612 0.9976 +vn 0.0377 0.0323 0.9988 +vn -0.0231 0.0631 0.9977 +vn -0.0412 0.0314 0.9987 +vn 0.0410 0.0138 0.9991 +vn -0.0534 -0.0251 0.9983 +vn -0.0560 -0.0253 0.9981 +vn 0.9157 -0.3959 0.0693 +vn 0.9544 -0.2721 -0.1225 +vn 0.9608 -0.2715 -0.0553 +vn 0.9028 -0.4098 0.1306 +vn -0.1153 0.0883 0.9894 +vn -0.0554 -0.1118 0.9922 +vn 0.0085 -0.4246 0.9053 +vn 0.0138 -0.4485 0.8937 +vn 0.0374 -0.4594 0.8874 +vn 0.0173 -0.9877 0.1552 +vn -0.0244 -0.9931 0.1146 +vn -0.0057 -0.9937 0.1120 +vn 0.0004 -0.9877 0.1562 +vn -0.0689 -0.0110 0.9976 +vn -0.0280 -0.0162 0.9995 +vn 0.0173 0.0399 0.9991 +vn -0.0217 0.0611 0.9979 +vn 0.0118 0.9975 0.0699 +vn 0.0051 0.9976 0.0688 +vn -0.0068 0.9960 0.0890 +vn 0.0011 0.9960 0.0893 +vn -0.0313 0.9854 0.1672 +vn 0.0015 0.9948 0.1022 +vn -0.0217 -0.9865 0.1622 +vn -0.0027 -0.9917 0.1283 +vn 0.0430 0.0218 0.9988 +vn 0.0354 0.0255 0.9990 +vn -0.7602 -0.6445 0.0823 +vn -0.7640 -0.6381 0.0953 +vn 0.7449 0.6636 0.0692 +vn 0.7244 0.6043 0.3317 +vn 0.7202 0.5845 0.3737 +vn -0.7570 -0.6358 0.1506 +vn 0.7642 0.6397 0.0823 +vn 0.7669 0.6350 0.0929 +vn -0.3957 0.9168 0.0541 +vn -0.2279 0.8355 0.5000 +vn -0.3688 0.9240 0.1009 +vn -0.3806 0.7738 0.5063 +vn 0.3717 -0.9246 0.0836 +vn 0.3847 -0.9205 0.0691 +vn 0.3818 -0.9212 0.0742 +vn 0.3687 -0.9253 0.0891 +vn -0.7800 0.6199 0.0853 +vn -0.7736 0.6251 0.1044 +vn 0.7580 0.3486 0.5512 +vn 0.6455 0.5862 0.4895 +vn 0.6289 0.7729 0.0840 +vn 0.7420 0.6616 0.1086 +vn -0.6676 -0.7401 0.0813 +vn -0.7742 -0.6282 0.0778 +vn -0.6727 -0.7364 0.0725 +vn -0.5502 -0.8307 0.0850 +vn -0.5420 -0.8350 0.0951 +vn -0.7759 -0.6257 0.0813 +vn -0.1728 -0.9825 0.0699 +vn -0.1423 -0.9856 0.0915 +vn -0.0207 -0.9942 0.1056 +vn 0.9175 -0.3921 0.0668 +vn 0.9607 -0.2769 0.0190 +vn -0.9336 0.3499 0.0775 +vn -0.9134 0.3928 0.1070 +vn -0.9162 0.3898 0.0930 +vn -0.9388 0.3398 0.0572 +vn -0.9072 0.4092 0.0979 +vn 0.9987 -0.0181 0.0482 +vn 0.9989 -0.0027 0.0467 +vn -0.9959 -0.0189 0.0884 +vn -0.9961 -0.0011 0.0881 +vn -0.9985 0.0217 0.0501 +vn -0.9989 0.0029 0.0460 +vn 0.0041 0.9959 0.0901 +vn -0.0008 0.9959 0.0902 +vn -0.0070 0.9948 0.1014 +vn -0.0022 0.9948 0.1020 +vn 0.0184 -0.9938 0.1100 +vn -0.0177 -0.9970 0.0750 +vn -0.0018 -0.9973 0.0728 +vn 0.0029 -0.9939 0.1106 +vn 0.2064 -0.9749 0.0837 +vn 0.0310 -0.9961 0.0825 +vn -0.2278 -0.9716 0.0646 +vn -0.2561 -0.9631 0.0826 +vn -0.0733 -0.9916 0.1068 +vn 0.3885 -0.9172 0.0881 +vn -0.5749 -0.8145 0.0783 +vn -0.8969 -0.4337 0.0867 +vn 0.8441 -0.5264 0.1023 +vn -0.9852 0.1478 0.0870 +vn 0.8555 0.5083 0.0989 +vn 0.9939 0.0036 0.1102 +vn -0.5728 0.8169 0.0680 +vn 0.4045 0.9102 0.0894 +vn -0.1168 0.9877 0.1038 +vn -0.1784 0.9783 0.1056 +vn 0.1207 0.9853 0.1211 +vn -0.1511 0.9806 0.1245 +vn -0.0602 0.9916 0.1145 +vn 0.2189 0.9677 0.1249 +vn 0.1941 0.9750 0.1085 +vn 0.8918 0.4432 0.0911 +vn 0.8892 0.4478 0.0943 +vn 0.8993 0.4229 0.1116 +vn 0.9019 0.4180 0.1091 +vn 0.8684 -0.4869 0.0945 +vn 0.8646 -0.4961 0.0799 +vn 0.8964 -0.4414 0.0409 +vn 0.9006 -0.4318 0.0495 +vn -0.9950 0.0632 0.0775 +vn -0.9960 -0.0368 0.0820 +vn -0.9780 -0.1874 0.0913 +vn -0.9956 0.0578 0.0732 +vn 0.8232 -0.1073 0.5575 +vn 0.8487 0.0259 0.5282 +vn 0.9897 -0.1169 0.0832 +vn 0.9942 -0.0150 0.1065 +vn 0.1025 -0.0116 0.9947 +vn 0.0270 0.0587 0.9979 +vn -0.0048 0.0660 0.9978 +vn -0.0346 0.0656 0.9972 +vn 0.0090 0.0020 1.0000 +vn 0.0385 0.1183 0.9922 +vn -0.0384 0.0485 0.9981 +vn -0.0247 0.0813 0.9964 +vn -0.0038 -0.0015 1.0000 +vn 0.0441 -0.0838 0.9955 +vn -0.0421 -0.0709 0.9966 +vn 0.0427 -0.0563 0.9975 +vn -0.0361 -0.0385 0.9986 +vn 0.0376 -0.0779 0.9962 +vn -0.0320 -0.0611 0.9976 +vn 0.0065 -0.0740 0.9972 +vn 0.4907 -0.8499 0.1922 +vn -0.5082 -0.8406 0.1875 +vn -0.1358 -0.9810 0.1386 +vn -0.7603 -0.6403 0.1096 +vn -0.8817 -0.3943 -0.2592 +vn -0.9815 -0.0537 0.1839 +vn -0.9856 -0.0541 0.1599 +vn -0.9600 0.0798 0.2683 +vn -0.9622 0.0427 0.2688 +vn 0.4031 -0.9152 -0.0012 +vn -0.1095 -0.9940 -0.0025 +vn 0.5899 -0.8074 0.0000 +vn 0.1068 -0.9943 0.0006 +vn -0.5871 -0.8095 0.0002 +vn -0.4065 -0.9136 0.0008 +vn -0.9144 -0.4048 0.0000 +vn 0.8084 -0.5886 -0.0003 +vn 0.9141 -0.4054 0.0003 +vn -0.8076 -0.5898 0.0001 +vn -0.9942 0.1075 -0.0016 +vn 0.9943 -0.1067 -0.0009 +vn -0.9943 -0.1063 0.0004 +vn -0.8078 0.5895 -0.0008 +vn 0.9149 0.4036 -0.0016 +vn 0.8080 0.5892 0.0004 +vn -0.4046 0.9145 -0.0009 +vn 0.5904 0.8071 -0.0011 +vn 0.4044 0.9146 0.0001 +vn -0.5892 0.8080 0.0004 +vn 0.1054 0.9944 -0.0003 +vn -0.1059 0.9944 0.0003 +vn -0.0151 0.0384 -0.9991 +vn 0.0046 0.0476 -0.9989 +vn -0.0005 0.0334 -0.9994 +vn 0.0127 0.0271 -0.9996 +vn -0.0218 0.0300 -0.9993 +vn 0.0148 -0.0075 -0.9999 +vn -0.0246 0.0166 -0.9996 +vn 0.0341 0.0192 -0.9992 +vn 0.0506 0.0081 -0.9987 +vn -0.0245 0.0087 -0.9997 +vn -0.0360 -0.0369 -0.9987 +vn 0.0398 0.0243 -0.9989 +vn 0.0388 -0.0159 -0.9991 +vn -0.0184 -0.0148 -0.9997 +vn 0.0282 -0.0202 -0.9994 +vn -0.0281 -0.0004 -0.9996 +vn 0.0193 -0.0296 -0.9994 +vn 0.0139 -0.0232 -0.9996 +vn -0.0170 -0.0391 -0.9991 +vn -0.0416 -0.0408 -0.9983 +vn 0.0037 -0.0346 -0.9994 +vn 0.0025 -0.0196 -0.9998 +vn -0.7165 -0.6832 0.1407 +vn -0.7346 -0.6060 0.3052 +vn -0.1808 0.9513 0.2496 +vn 0.0072 0.9966 0.0822 +vn 0.0010 0.9974 0.0720 +vn 0.0327 0.9982 0.0511 +vn 0.0265 0.9897 0.1410 +vn -0.0033 0.9767 0.2147 +vn 0.0118 0.3760 0.9266 +vn 0.0503 0.2609 0.9641 +vn 0.0264 0.3732 0.9274 +vn -0.0017 0.9417 0.3364 +vn -0.0023 0.9853 0.1708 +vn -0.0023 0.9856 0.1689 +vn 0.1024 0.1080 0.9889 +vn -0.0157 0.0019 0.9999 +vn 0.0039 -0.0135 0.9999 +vn -0.0094 -0.0053 0.9999 +vn 0.0113 -0.1035 0.9946 +vn -0.0022 0.0086 1.0000 +vn -0.0039 0.0061 1.0000 +vn -0.0093 0.0061 0.9999 +vn 0.3120 -0.0252 0.9497 +vn -0.3452 0.0647 0.9363 +vn 0.2971 0.2609 0.9185 +vn -0.0872 -0.0671 0.9939 +vn 0.2661 0.2079 0.9413 +vn 0.2359 0.5667 0.7894 +vn -0.9936 -0.0385 0.1062 +vn -0.9966 -0.0022 0.0825 +vn -0.9962 -0.0153 0.0857 +vn -0.9928 -0.0513 0.1086 +vn 0.9334 -0.2797 -0.2249 +vn 0.7874 -0.6096 0.0919 +vn 0.7761 -0.6179 0.1259 +vn 0.7768 -0.6240 0.0852 +vn 0.7844 -0.6136 0.0904 +vn 0.7711 -0.6306 0.0880 +vn -0.0049 0.0003 1.0000 +vn -0.0110 -0.0033 0.9999 +vn -0.0062 -0.0022 1.0000 +vn 0.0495 -0.0286 0.9984 +vn 0.0464 -0.0315 0.9984 +vn 0.0418 0.9972 0.0624 +vn 0.0025 0.9976 -0.0694 +vn -0.0316 0.9929 0.1146 +vn 0.6131 0.7872 -0.0663 +vn 0.5452 0.8382 -0.0160 +vn -0.5545 0.8196 -0.1443 +vn -0.7707 0.6342 -0.0615 +vn 0.9484 0.3080 -0.0752 +vn 0.8495 0.5274 -0.0095 +vn -0.9532 0.2665 -0.1425 +vn 0.9727 0.2099 0.0984 +vn 0.9391 -0.3356 -0.0739 +vn 0.9656 -0.2586 -0.0289 +vn -0.9989 -0.0310 -0.0338 +vn -0.9237 -0.3581 -0.1362 +vn -0.8694 -0.4924 -0.0416 +vn 0.9763 -0.2025 -0.0763 +vn 0.5310 -0.8365 -0.1352 +vn -0.6400 -0.7566 -0.1344 +vn 0.5359 -0.8426 -0.0528 +vn -0.5060 -0.8604 -0.0608 +vn 0.1309 -0.9876 -0.0866 +vn 0.0058 -0.9914 -0.1306 +vn 0.2387 -0.9685 0.0712 +vn 0.5372 -0.8404 0.0715 +vn 0.7963 -0.6019 0.0603 +vn 0.0934 -0.9935 0.0652 +vn 0.8929 -0.4501 0.0132 +vn -0.2934 -0.9516 0.0913 +vn -0.3000 -0.9486 0.1013 +vn 0.3211 0.9407 0.1093 +vn 0.3215 0.9410 0.1057 +vn -0.2909 0.9538 0.0753 +vn -0.5605 0.8236 0.0870 +vn -0.7735 0.6273 0.0905 +vn -0.8185 0.5668 0.0933 +vn -0.1367 0.9871 0.0838 +vn -0.9959 0.0206 0.0885 +vn -0.9935 -0.0750 0.0858 +vn -0.9848 0.1443 0.0971 +vn -0.9841 -0.1587 0.0802 +vn -0.9826 -0.1738 0.0648 +vn -0.9817 -0.1784 0.0664 +vn -0.9849 -0.1540 0.0794 +vn -0.5078 0.8563 0.0940 +vn -0.2836 0.9534 0.1031 +vn 0.0000 -0.0508 0.9987 +vn 0.0465 -0.0468 0.9978 +vn 0.0568 -0.1412 0.9884 +vn 0.0616 -0.1545 0.9861 +vn -0.3700 -0.8222 0.4325 +vn 0.0449 -0.9940 0.1001 +vn -0.0648 -0.9946 0.0811 +vn -0.0064 -0.9974 0.0720 +vn 0.0727 -0.9835 0.1656 +vn -0.0036 -0.0027 1.0000 +vn -0.0025 0.0079 1.0000 +vn -0.0004 -0.0025 1.0000 +vn -0.0042 -0.0055 1.0000 +vn 0.0023 0.0058 1.0000 +vn 0.0039 0.0025 1.0000 +vn 0.0036 0.0033 1.0000 +vn -0.8459 -0.1491 0.5121 +vn -0.8780 -0.0701 0.4735 +vn -0.9890 0.0777 0.1257 +vn -0.2955 -0.6886 0.6622 +vn -0.7543 -0.3483 0.5566 +vn -0.7070 -0.7024 0.0830 +vn 0.9989 -0.0466 -0.0024 +vn 0.7726 -0.2575 0.5803 +vn 0.9994 -0.0145 0.0313 +vn 0.9950 -0.0966 0.0271 +vn 0.9970 -0.0563 0.0528 +vn 0.9949 -0.0973 0.0263 +vn 0.9761 0.1888 0.1073 +vn 0.0889 0.9930 0.0776 +vn 0.0234 0.7917 0.6105 +vn 0.0327 0.9490 0.3137 +vn -0.0678 0.9940 0.0853 +vn 0.0621 0.9828 0.1739 +vn 0.0028 0.9964 0.0850 +vn -0.0834 0.9963 0.0214 +vn -0.9944 0.0052 0.1051 +vn -0.9966 -0.0153 0.0815 +vn -0.9945 0.0024 0.1047 +vn -0.9954 0.0023 0.0953 +vn -0.9968 0.0143 0.0789 +vn -0.9993 0.0372 0.0077 +vn -0.9981 -0.0272 -0.0556 +vn 0.0000 -0.0013 1.0000 +vn 0.0598 0.0585 0.9965 +vn 0.0175 0.9922 -0.1234 +vn 0.0130 0.9917 -0.1282 +vn 0.0683 0.9815 -0.1788 +vn -0.9943 -0.0022 -0.1067 +vn 0.0205 -0.9965 0.0805 +vn 0.4997 0.8446 0.1922 +vn -0.5115 0.8372 0.1935 +vn -0.7720 0.6112 0.1747 +vn -0.4393 -0.8936 -0.0924 +vn -0.4795 -0.8553 -0.1963 +vn -0.3476 -0.9371 0.0300 +vn 0.7483 -0.6611 -0.0547 +vn 0.3771 -0.9227 0.0808 +vn 0.4669 -0.8836 -0.0351 +vn -0.3047 -0.9438 0.1280 +vn 0.9512 -0.2672 -0.1542 +vn -0.9876 -0.1570 0.0052 +vn -0.9903 -0.1360 -0.0301 +vn -0.9803 -0.1929 0.0432 +vn 0.9988 -0.0027 -0.0492 +vn 0.9407 0.3352 -0.0524 +vn 0.9256 0.3783 0.0123 +vn -0.9750 -0.2088 0.0759 +vn -0.7103 0.6938 0.1189 +vn -0.7198 0.6773 0.1521 +vn -0.6803 0.7289 0.0774 +vn -0.6699 0.7411 0.0444 +vn 0.1375 0.9862 0.0919 +vn 0.2768 0.9603 -0.0361 +vn 0.3050 0.9448 -0.1198 +vn 0.1036 0.9791 0.1751 +vn 0.6972 0.5601 -0.4473 +vn 0.9987 0.0506 -0.0070 +vn 0.0421 0.0395 0.9983 +vn 0.0162 -0.2989 0.9541 +vn -0.4194 -0.2584 0.8703 +vn 0.0194 0.0045 0.9998 +vn 0.2596 0.2163 -0.9412 +vn 0.7666 0.5145 -0.3842 +vn 0.5039 0.4706 -0.7243 +vn 0.6934 0.6338 -0.3429 +vn 0.0103 0.0343 0.9994 +vn 0.0115 0.0035 0.9999 +vn 0.0002 0.0008 1.0000 +vn 0.0011 0.0007 1.0000 +vn 0.0353 0.1042 0.9939 +vn 0.0805 0.3981 0.9138 +vn 0.0352 0.3199 0.9468 +vn -0.0109 0.0194 0.9998 +vn -0.9952 -0.0560 0.0808 +vn 0.0649 -0.0109 0.9978 +vn 0.0703 0.0013 0.9975 +vn 0.0428 0.0144 0.9990 +vn 0.0078 -0.0001 1.0000 +vn 0.0067 0.0033 1.0000 +vn 0.0181 0.0025 0.9998 +vn 0.0331 0.0120 0.9994 +vn -0.0109 -0.0014 0.9999 +vn 0.0216 0.0104 0.9997 +vn -0.0055 -0.0025 1.0000 +vn 0.0155 -0.0177 0.9997 +vn -0.0156 -0.0118 0.9998 +vn 0.0246 -0.0153 0.9996 +vn -0.0389 -0.0042 0.9992 +vn 0.0260 -0.0300 0.9992 +vn -0.0367 0.0274 0.9989 +vn -0.0029 -0.0047 1.0000 +vn -0.0116 0.0041 0.9999 +vn 0.0236 -0.0075 0.9997 +vn -0.0162 0.0019 0.9999 +vn 0.0139 -0.0098 0.9999 +vn -0.0105 -0.0077 0.9999 +vn 0.0244 0.0010 0.9997 +vn -0.0087 -0.0241 0.9997 +vn 0.0197 -0.0134 0.9997 +vn -0.0225 -0.0003 0.9997 +vn 0.0113 0.0030 0.9999 +vn -0.0063 -0.0135 0.9999 +vn -0.0862 0.0478 0.9951 +vn 0.0580 0.0373 0.9976 +vn -0.0023 0.0186 0.9998 +vn 0.0063 0.0157 0.9999 +vn -0.0352 0.0111 0.9993 +vn 0.0039 0.0168 0.9999 +vn 0.0049 0.0289 0.9996 +vn -0.0003 0.0213 0.9998 +vn -0.3687 -0.3777 0.8494 +vn 0.3585 -0.3591 0.8617 +vn -0.0190 0.0242 0.9995 +vn -0.0093 0.0350 0.9993 +vn -0.1144 0.0962 0.9888 +vn -0.0059 -0.0158 0.9999 +vn 0.0074 0.0452 0.9990 +vn -0.0068 -0.0207 0.9998 +vn 0.0013 -0.1033 0.9947 +vn 0.0095 0.0003 1.0000 +vn -0.0210 -0.0047 0.9998 +vn -0.0007 0.0105 0.9999 +vn -0.0202 0.0093 0.9998 +vn -0.0255 0.0062 0.9997 +vn -0.0008 0.0033 1.0000 +vn -0.0201 -0.0208 0.9996 +vn -0.0200 -0.0340 0.9992 +vn -0.0028 0.0097 0.9999 +vn -0.0321 -0.0159 0.9994 +vn -0.0116 0.0181 0.9998 +vn 0.0166 0.0321 0.9993 +vn 0.0289 0.0425 0.9987 +vn -0.0157 0.0156 0.9998 +vn -0.0197 -0.0064 0.9998 +vn 0.0195 0.0087 0.9998 +vn -0.0066 0.0045 1.0000 +vn -0.0069 0.0095 0.9999 +vn -0.0104 0.0316 0.9994 +vn 0.0201 0.0133 0.9997 +vn -0.0089 0.0097 0.9999 +vn -0.0020 -0.0787 0.9969 +vn 0.1266 0.0277 0.9916 +vn -0.0622 0.0139 0.9980 +vn 0.0159 -0.0754 0.9970 +vn 0.0866 0.0464 0.9952 +vn -0.0468 0.0201 0.9987 +vn 0.0630 -0.0287 0.9976 +vn -0.7053 -0.6835 0.1879 +vn -0.7246 -0.6730 0.1484 +vn -0.6690 -0.7171 0.1953 +vn -0.7037 -0.6941 0.1514 +vn -0.7083 -0.6956 0.1203 +vn -0.7054 -0.6906 0.1595 +vn -0.7239 0.6527 0.2235 +vn -0.7223 0.6558 0.2195 +vn -0.7245 0.6515 0.2249 +vn -0.7262 0.6482 0.2291 +vn -0.6696 0.7340 0.1136 +vn -0.0241 0.9916 0.1267 +vn 0.4275 0.8971 0.1111 +vn 0.9950 0.0390 0.0917 +vn 0.8126 0.5708 0.1179 +vn 0.8725 -0.4672 0.1435 +vn -0.9846 0.1446 0.0983 +vn -0.7057 -0.7033 0.0857 +vn 0.0532 -0.9875 0.1481 +vn -0.8615 0.4892 0.1360 +vn -0.4691 0.8737 0.1290 +vn 0.4640 -0.8100 0.3587 +vn -0.2476 -0.2362 0.9396 +vn -0.4784 -0.6468 0.5940 +vn -0.0928 0.0163 0.9956 +vn 0.2132 0.8703 -0.4441 +vn 0.1642 -0.0879 0.9825 +vn 0.1126 -0.1028 0.9883 +vn 0.0691 -0.1028 0.9923 +vn 0.0111 -0.1372 0.9905 +vn -0.1580 -0.1946 0.9681 +vn -0.2850 0.0556 0.9569 +vn -0.1914 -0.0763 0.9785 +vn -0.1334 -0.0722 0.9884 +vn -0.1572 -0.2005 0.9670 +vn -0.0927 0.1237 0.9880 +vn -0.9725 0.0771 0.2199 +vn -0.9831 0.0368 0.1792 +vn -0.9839 0.0333 0.1755 +vn -0.9908 -0.0057 0.1355 +vn -0.0208 0.9971 0.0736 +vn 0.9833 -0.0383 0.1777 +vn 0.9908 0.0028 0.1354 +vn 0.9841 -0.0347 0.1740 +vn 0.9731 -0.0772 0.2172 +vn 0.0135 -0.9972 0.0730 +vn -0.0145 0.0337 -0.9993 +vn -0.0432 -0.0038 -0.9991 +vn 0.0300 -0.2496 -0.9679 +vn -0.0772 -0.5384 0.8391 +vn 0.5342 0.1995 0.8215 +vn -0.2175 -0.4613 0.8602 +vn 0.5032 0.2921 0.8133 +vn -0.6259 0.2280 0.7458 +vn 0.2082 -0.5446 0.8124 +vn -0.4316 0.2152 0.8760 +vn 0.2097 -0.6324 0.7457 +vn 0.0872 -0.6863 0.7221 +vn 0.8912 -0.0539 0.4503 +vn 0.7494 -0.3150 0.5824 +vn 0.1078 0.5816 0.8063 +vn 0.0017 -0.0011 -1.0000 +vn -0.0002 -0.0027 -1.0000 +vn 0.0029 0.0024 -1.0000 +vn 0.0001 -0.0002 -1.0000 +vn -0.0033 -0.0009 -1.0000 +vn 0.0083 0.0012 -1.0000 +vn 0.0003 0.0000 -1.0000 +vn 0.0004 -0.0000 -1.0000 +vn 0.0094 0.0025 -1.0000 +vn 0.0002 0.0002 -1.0000 +vn -0.0031 -0.0083 -1.0000 +vn -0.0009 -0.0024 -1.0000 +vn 0.2508 -0.9658 -0.0654 +vn -0.0558 -0.9983 -0.0139 +vn -0.2794 -0.9593 -0.0409 +vn 0.3718 -0.9282 0.0133 +vn -0.6989 -0.7151 0.0138 +vn -0.8407 -0.5414 -0.0119 +vn -0.9668 -0.2527 0.0375 +vn 0.9936 0.1107 -0.0237 +vn 0.9368 -0.3494 -0.0156 +vn 0.9247 -0.3789 -0.0375 +vn 0.9926 -0.1216 -0.0046 +vn -0.9900 -0.1360 -0.0373 +vn 0.9416 0.3365 -0.0128 +vn 0.9280 0.3723 0.0135 +vn -0.6926 0.7207 -0.0305 +vn -0.7262 0.6875 0.0039 +vn -0.7122 0.7020 -0.0047 +vn -0.6777 0.7343 -0.0391 +vn 0.2724 0.9618 -0.0282 +vn 0.2411 0.9705 0.0026 +vn 0.2995 0.9531 -0.0424 +vn 0.2135 0.9768 0.0169 +vn -0.0042 0.0009 -1.0000 +vn 0.0019 0.0045 -1.0000 +vn -0.0034 0.0024 -1.0000 +vn -0.0012 0.0039 -1.0000 +vn 0.0047 0.0014 -1.0000 +vn -0.0062 0.0043 -1.0000 +vn -0.0015 -0.0019 -1.0000 +vn -0.0003 -0.0056 -1.0000 +vn -0.0004 -0.0053 -1.0000 +vn -0.0100 -0.0060 -0.9999 +vn 0.0055 -0.0036 -1.0000 +vn 0.5932 -0.8047 -0.0258 +vn 0.1618 -0.9867 -0.0181 +vn 0.1358 -0.9901 -0.0365 +vn 0.3574 -0.9330 -0.0416 +vn -0.6557 -0.7549 -0.0119 +vn -0.6444 -0.7647 -0.0016 +vn -0.9230 -0.3848 -0.0098 +vn 0.7389 -0.6737 -0.0098 +vn 0.6693 -0.7391 -0.0759 +vn -0.8067 -0.5905 -0.0244 +vn -0.9857 -0.1681 -0.0156 +vn -0.9902 -0.1337 -0.0393 +vn 0.9858 0.1557 -0.0626 +vn 0.9836 0.0578 -0.1710 +vn 0.9769 0.2101 -0.0388 +vn 0.9812 0.0010 -0.1927 +vn -0.6992 0.7129 -0.0534 +vn -0.7600 0.6498 0.0135 +vn -0.1574 0.9871 -0.0298 +vn 0.2710 0.9603 -0.0664 +vn 0.6241 0.7813 0.0070 +vn 0.3932 0.9096 -0.1344 +vn -0.3009 0.9476 -0.1073 +vn -0.0003 0.0012 -1.0000 +vn -0.0004 0.0048 -1.0000 +vn 0.0040 0.0020 -1.0000 +vn -0.0053 0.0013 -1.0000 +vn -0.0027 0.0051 -1.0000 +vn -0.0009 -0.0015 -1.0000 +vn -0.0102 0.0000 -0.9999 +vn 0.0008 -0.0053 -1.0000 +vn 0.0050 -0.0111 -0.9999 +vn -0.0012 0.0037 -1.0000 +vn 0.0010 -0.0072 -1.0000 +vn 0.3214 -0.9464 0.0336 +vn -0.1972 -0.9804 0.0036 +vn 0.0628 -0.9978 -0.0223 +vn 0.3069 -0.9515 0.0216 +vn -0.4211 -0.9040 -0.0736 +vn -0.5624 -0.8266 0.0222 +vn -0.9768 -0.1899 -0.0989 +vn -0.9809 -0.1407 -0.1344 +vn -0.9642 0.2502 -0.0881 +vn 0.9603 -0.2782 -0.0230 +vn 0.9680 -0.2507 0.0038 +vn 0.9530 -0.3010 -0.0344 +vn 0.9737 -0.2274 0.0155 +vn -0.9711 0.2239 -0.0827 +vn -0.5614 0.8261 -0.0496 +vn 0.7232 0.6901 -0.0286 +vn 0.7066 0.7076 -0.0055 +vn 0.7356 0.6765 -0.0367 +vn 0.6935 0.7205 0.0026 +vn -0.5605 0.8263 -0.0549 +vn -0.1649 0.9861 -0.0218 +vn -0.1354 0.9899 -0.0411 +vn -0.3643 -0.8919 0.2680 +vn -0.4948 -0.8644 0.0893 +vn -0.6733 -0.7135 0.1940 +vn -0.6678 -0.7191 0.1923 +vn 0.7353 -0.2964 -0.6095 +vn -0.9908 0.0543 0.1236 +vn -0.9731 0.1963 0.1205 +vn -0.9078 0.3767 -0.1846 +vn 0.8005 0.2628 0.5386 +vn -0.9350 0.2510 -0.2505 +vn 0.6186 0.5585 -0.5526 +vn -0.5944 0.8020 0.0586 +vn -0.3709 0.9076 0.1966 +vn -0.0715 0.9743 -0.2137 +vn 0.3025 0.8750 0.3781 +vn -0.1920 0.8944 -0.4040 +vn 0.0159 -0.0222 0.9996 +vn 0.0440 -0.0523 0.9977 +vn 0.0264 -0.1544 0.9877 +vn -0.0305 -0.0128 0.9995 +vn 0.0139 -0.1340 0.9909 +vn -0.0258 0.0284 0.9993 +vn 0.0232 0.0307 0.9993 +vn 0.0002 0.0391 0.9992 +vn -0.0375 -0.0127 0.9992 +vn -0.0138 -0.0460 0.9988 +vn 0.0317 0.0191 0.9993 +vn -0.0037 0.0392 0.9992 +vn -0.2517 -0.9215 0.2958 +vn -0.2242 -0.8753 0.4286 +vn -0.7477 -0.5802 0.3229 +vn 0.2436 -0.9306 -0.2732 +vn 0.6221 -0.5971 0.5065 +vn 0.6337 -0.5963 0.4928 +vn 0.6336 -0.5935 0.4963 +vn -0.8935 -0.4484 0.0249 +vn -0.9953 0.0604 -0.0762 +vn 0.6231 -0.5953 0.5073 +vn -0.9669 -0.1604 -0.1982 +vn 0.9273 0.2936 0.2320 +vn 0.9953 0.0799 -0.0554 +vn 0.8841 0.4418 0.1521 +vn 0.9619 0.2139 -0.1701 +vn -0.8386 0.5272 0.1373 +vn -0.7236 0.6522 0.2257 +vn -0.5301 0.8363 -0.1399 +vn -0.6540 0.7205 -0.2305 +vn 0.2042 0.9516 0.2296 +vn 0.4620 0.8760 -0.1383 +vn 0.0379 0.9897 0.1383 +vn 0.2990 0.9262 -0.2296 +vn 0.0139 -0.0515 0.9986 +vn -0.0280 -0.0319 0.9991 +vn 0.0548 -0.0096 0.9985 +vn -0.0510 0.0094 0.9987 +vn 0.0309 0.0436 0.9986 +vn -0.0200 0.0488 0.9986 +vn 0.0005 0.0012 1.0000 +vn 0.0001 0.0032 1.0000 +vn 0.0026 0.0052 1.0000 +vn -0.0014 -0.0006 1.0000 +vn -0.0035 0.0008 1.0000 +vn -0.0010 0.0003 1.0000 +vn -0.0014 -0.0004 1.0000 +vn -0.0016 -0.0006 1.0000 +vn -0.0007 0.0012 1.0000 +vn -0.0038 -0.0029 1.0000 +vn 0.0024 0.0025 1.0000 +vn 0.0016 0.0010 1.0000 +vn 0.0005 0.0008 1.0000 +vn 0.0000 0.0003 1.0000 +vn -0.0004 0.0007 1.0000 +vn -0.0019 0.0096 1.0000 +vn 0.0029 0.0036 1.0000 +vn -0.0003 0.0010 1.0000 +vn -0.0006 -0.0003 1.0000 +vn -0.0002 -0.0046 1.0000 +vn 0.0092 -0.0057 0.9999 +vn -0.0026 -0.0018 1.0000 +vn -0.0050 -0.0054 1.0000 +vn 0.3030 -0.9460 0.1153 +vn 0.3215 -0.9366 0.1390 +vn 0.3232 -0.9346 0.1487 +vn 0.3055 -0.9462 0.1064 +vn -0.7382 -0.6746 0.0071 +vn -0.3490 -0.9349 -0.0650 +vn -0.9525 -0.2658 0.1486 +vn -0.3709 -0.9098 -0.1865 +vn 0.9995 -0.0331 -0.0003 +vn 0.9163 -0.3995 -0.0272 +vn 0.9221 -0.3767 -0.0883 +vn 0.9523 0.2664 0.1490 +vn -0.9995 0.0328 -0.0005 +vn -0.9162 0.3998 -0.0275 +vn 0.7380 0.6748 0.0071 +vn -0.9220 0.3768 -0.0885 +vn 0.3484 0.9351 -0.0650 +vn -0.3030 0.9460 0.1153 +vn -0.3055 0.9462 0.1065 +vn -0.3215 0.9366 0.1391 +vn 0.3714 0.9095 -0.1867 +vn -0.3231 0.9346 0.1486 +vn -0.0012 0.0054 1.0000 +vn 0.0019 0.0038 1.0000 +vn -0.0056 0.0058 1.0000 +vn 0.0003 0.0010 1.0000 +vn -0.0011 0.0004 1.0000 +vn -0.0012 0.0006 1.0000 +vn -0.0041 -0.0016 1.0000 +vn -0.0016 0.0018 1.0000 +vn -0.0015 0.0009 1.0000 +vn 0.0053 0.0032 1.0000 +vn -0.0015 -0.0023 1.0000 +vn 0.0006 0.0006 1.0000 +usemtl material +s off +f 1231/1/1 578/2/2 575/3/3 1229/4/4 +f 51/5/5 40/6/6 1234/7/7 +s 1 +f 1969/8/8 1836/9/9 1/10/10 +f 4/11/11 1836/9/9 1969/8/8 +f 1/10/10 1836/9/9 5/12/12 +f 6/13/13 1836/9/9 4/11/11 +f 9/14/14 6/13/13 4/11/11 +f 4/11/11 1969/8/8 1910/15/15 +f 1969/8/8 1/10/10 1359/16/16 +f 5/12/12 1099/17/17 12/18/18 +f 1875/19/19 7/20/20 8/21/21 +f 1876/22/22 7/20/20 1875/19/19 +f 9/14/14 4/11/11 1770/23/23 +f 1359/16/16 1/10/10 16/24/24 +f 1770/23/23 4/11/11 1910/15/15 +f 1361/25/25 1359/16/16 16/24/24 +f 1877/26/26 1875/19/19 8/21/21 +f 942/27/27 5/12/12 12/18/18 +f 16/24/24 1/10/10 5/12/12 +f 21/28/28 1770/23/23 1771/29/29 +f 9/14/14 1770/23/23 21/28/28 +f 1877/26/26 8/21/21 23/30/30 +f 23/30/30 8/21/21 9/14/14 +f 1878/31/31 1361/25/25 16/24/24 +f 21/28/28 1771/29/29 25/32/32 +f 25/32/32 1771/29/29 1878/31/31 +f 25/32/32 1878/31/31 16/24/24 +f 26/33/33 942/27/27 943/34/34 +f 5/12/12 942/27/27 26/33/33 +f 28/35/35 1877/26/26 29/36/36 +f 29/36/36 1877/26/26 23/30/30 +f 9/14/14 21/28/28 25/32/32 +f 26/33/33 943/34/34 944/37/37 +f 1530/38/38 28/35/35 29/36/36 +f 26/33/33 944/37/37 1234/39/39 +f 5/12/12 26/33/33 33/40/40 +f 34/41/41 5/12/12 33/40/40 +f 16/24/24 5/12/12 34/41/41 +f 35/42/42 16/24/24 34/41/41 +f 25/32/32 16/24/24 35/42/42 +f 9/14/14 25/32/32 23/30/30 +f 29/36/36 23/30/30 36/43/43 +f 1840/44/44 33/40/40 26/33/33 +f 36/43/43 23/30/30 1116/45/45 +f 35/42/42 34/41/41 33/40/40 +f 29/36/36 36/43/43 1531/46/46 +f 26/33/33 1234/39/39 1236/47/47 +f 1235/48/48 32/49/49 41/50/50 +f 43/51/51 42/52/52 29/36/36 +f 1146/53/53 26/33/33 1236/47/47 +f 33/40/40 1840/44/44 1147/54/54 +f 35/42/42 33/40/40 1147/54/54 +f 1120/55/55 35/42/42 1147/54/54 +f 25/32/32 35/42/42 1120/55/55 +f 1636/56/56 23/30/30 25/32/32 +f 1118/57/57 1116/45/45 23/30/30 +f 49/58/58 29/36/36 1531/46/46 +f 43/51/51 29/36/36 49/58/58 +f 42/52/52 43/51/51 50/59/59 +f 1235/48/48 41/50/50 2015/60/60 +f 52/61/61 42/52/52 50/59/59 +f 53/62/62 52/61/61 54/63/63 +f 1537/64/64 1236/47/47 51/65/65 +f 56/66/66 49/58/58 1531/46/46 +f 54/63/63 50/59/59 56/66/66 +f 52/61/61 50/59/59 54/63/63 +f 1146/53/53 1236/47/47 1537/64/64 +f 54/63/63 56/66/66 1531/46/46 +f 1537/64/64 51/65/65 57/67/67 +f 1636/56/56 25/32/32 1122/68/68 +f 1122/68/68 25/32/32 1120/55/55 +f 23/30/30 1636/56/56 59/69/69 +f 1712/70/70 23/30/30 59/69/69 +f 1146/53/53 1537/64/64 61/71/71 +f 1147/54/54 1146/53/53 61/71/71 +f 1120/55/55 1147/54/54 61/71/71 +f 54/63/63 1712/70/70 1201/72/72 +f 23/30/30 1712/70/70 54/63/63 +f 1118/57/57 23/30/30 54/63/63 +f 1531/46/46 1118/57/57 54/63/63 +f 63/73/73 53/62/62 54/63/63 +f 1203/74/74 1120/55/55 61/71/71 +f 54/63/63 1203/74/74 61/71/71 +f 54/63/63 1201/72/72 1203/74/74 +f 1972/75/75 63/73/73 54/63/63 +f 1059/76/76 63/73/73 1972/75/75 +f 1537/64/64 67/77/77 68/78/78 +f 69/79/79 63/73/73 1059/76/76 +f 61/71/71 1537/64/64 1775/80/80 +f 1310/81/81 1972/75/75 54/63/63 +f 61/71/71 1775/80/80 1777/82/82 +f 961/83/83 1310/81/81 54/63/63 +f 74/84/84 61/71/71 1777/82/82 +f 1375/85/85 1643/86/85 1239/87/85 +f 1237/88/86 1644/89/86 1240/90/86 +f 1241/91/87 1645/92/88 1713/93/89 +f 81/94/90 76/95/90 77/96/90 +f 1241/91/87 1713/93/89 1911/97/91 +f 963/98/92 1373/99/92 966/100/92 +f 1912/101/93 80/102/94 969/103/95 +f 969/103/95 80/102/94 964/104/96 +f 970/105/97 83/106/97 967/107/97 +f 1124/108/98 1129/109/98 1126/110/98 +f 86/111/99 1130/112/99 1242/113/99 +f 1243/114/100 1131/115/101 1244/116/89 +f 972/117/102 1125/118/102 1127/119/102 +f 1243/114/100 1244/116/89 1716/120/91 +f 1941/121/103 85/122/103 90/123/103 +f 1717/124/104 89/125/105 93/126/106 +f 93/126/106 89/125/105 1939/127/107 +f 974/128/108 92/129/108 971/130/108 +f 96/131/109 95/132/110 1974/133/111 +f 1648/134/112 95/132/110 96/131/109 +f 1718/135/113 1133/136/114 1134/137/115 +f 1975/138/116 1133/136/114 1718/135/113 +f 1999/139/117 97/140/118 1246/141/119 +f 1248/142/120 1999/139/117 1246/141/119 +f 1719/143/121 1136/144/121 1381/145/121 +f 1384/146/122 100/147/123 101/148/124 +f 102/149/125 99/150/125 1383/151/125 +f 1382/152/126 1384/146/122 101/148/124 +f 1251/153/127 1137/154/128 1829/155/129 +f 1829/155/129 1137/154/128 1650/156/130 +f 1650/156/130 1137/154/128 1138/157/131 +f 1723/158/132 1251/153/127 1829/155/129 +f 1546/159/133 1251/153/127 1723/158/132 +f 1650/156/130 1138/157/131 1651/160/134 +f 1252/161/135 1250/162/136 1725/163/137 +f 1725/163/137 1250/162/136 110/164/138 +f 111/165/139 1139/166/140 984/167/141 +f 111/165/139 984/167/141 1955/168/142 +f 1955/168/142 984/167/141 985/169/143 +f 1547/170/144 1253/171/145 1655/172/146 +f 1655/172/146 1253/171/145 1726/173/147 +f 985/169/143 1548/174/148 119/175/149 +f 119/175/149 1548/174/148 118/176/150 +f 1955/168/142 985/169/143 119/175/149 +f 2018/177/151 1396/178/152 1395/179/153 +f 1942/180/154 1396/178/152 2018/177/151 +f 2018/177/151 1395/179/153 987/181/155 +f 1844/182/156 1396/178/152 1942/180/154 +f 1846/183/157 1396/178/152 1844/182/156 +f 987/181/155 1395/179/153 988/184/158 +f 988/184/158 1395/179/153 1549/185/159 +f 988/184/158 1549/185/159 1145/186/160 +f 1145/186/160 1549/185/159 1661/187/161 +f 1868/188/162 126/189/163 125/190/164 +f 1914/191/165 126/189/163 1868/188/162 +f 1145/186/160 1661/187/161 990/192/166 +f 989/193/167 130/194/168 1781/195/169 +f 1781/195/169 132/196/170 1869/197/171 +f 991/198/172 1781/195/169 1869/197/171 +f 989/193/167 1781/195/169 991/198/172 +f 140/199/173 1808/200/174 141/201/175 +f 993/202/176 994/203/177 144/204/178 +f 146/205/179 140/199/173 141/201/175 +f 949/206/180 140/199/173 146/205/179 +f 141/201/175 993/202/176 144/204/178 +f 141/201/175 144/204/178 1506/207/181 +f 1149/208/182 996/209/183 997/210/184 +f 153/211/185 996/209/183 1149/208/182 +f 154/212/186 1333/213/187 156/214/188 +f 154/212/186 156/214/188 157/215/189 +f 158/216/190 160/217/191 2021/218/192 +f 161/219/193 158/216/190 2021/218/192 +f 1150/220/194 998/221/194 1152/222/194 +f 1989/223/195 1404/224/196 1406/225/197 +f 1853/226/198 159/227/198 164/228/198 +f 1700/229/199 1701/230/200 1915/231/201 +f 1915/231/201 1701/230/200 168/232/202 +f 1555/233/203 168/232/202 170/234/204 +f 1915/231/201 168/232/202 1555/233/203 +f 1700/229/199 1915/231/201 999/235/205 +f 1001/236/206 1555/233/203 170/234/204 +f 173/237/207 1001/236/206 170/234/204 +f 1700/229/199 999/235/205 173/237/207 +f 173/237/207 999/235/205 1001/236/206 +f 1958/238/208 1156/239/209 1154/240/210 +f 954/241/211 1958/238/208 1154/240/210 +f 1990/242/212 1259/243/213 1257/244/214 +f 1990/242/212 1257/244/214 1261/245/215 +f 1586/246/216 186/247/217 1943/248/218 +f 1408/249/219 186/247/217 1586/246/216 +f 1704/250/220 189/251/221 1960/252/222 +f 1260/253/223 189/251/221 1704/250/220 +f 1704/250/220 1960/252/222 1603/254/224 +f 1603/254/224 1960/252/222 1605/255/225 +f 1003/256/226 1005/257/227 1992/258/228 +f 1003/256/226 1992/258/228 1944/259/229 +f 1014/260/230 197/261/231 1762/262/232 +f 1514/263/233 194/264/234 199/265/235 +f 1514/263/233 199/265/235 1515/266/236 +f 1515/266/236 199/265/235 201/267/237 +f 1516/268/238 201/267/237 1607/269/239 +f 1607/269/239 201/267/237 203/270/240 +f 207/271/241 194/264/234 1514/263/233 +f 1607/269/239 203/270/240 204/272/242 +f 1607/269/239 204/272/242 196/273/243 +f 1608/274/244 1606/275/245 1763/276/246 +f 1604/277/247 1606/275/245 1608/274/244 +f 1763/276/246 1606/275/245 1706/278/248 +f 1763/276/246 1706/278/248 1724/279/249 +f 1724/279/249 1706/278/248 1545/280/250 +f 1656/281/251 1762/262/232 197/261/231 +f 1409/282/252 119/175/149 118/176/150 +f 183/283/253 1962/284/254 1004/285/255 +f 1004/285/255 1962/284/254 1006/286/256 +f 1006/286/256 1962/284/254 1160/287/257 +f 1006/286/256 1160/287/257 1264/288/258 +f 1264/288/258 1160/287/257 1610/289/259 +f 207/271/241 1161/290/260 194/264/234 +f 1961/291/261 1161/290/260 207/271/241 +f 1882/292/262 1160/287/257 1920/293/263 +f 1920/293/263 1160/287/257 1161/290/260 +f 1920/293/263 1161/290/260 1961/291/261 +f 191/294/264 1961/291/261 207/271/241 +f 1302/295/265 1017/296/266 1014/260/230 +f 215/297/267 1032/298/268 1963/299/269 +f 204/272/242 1032/298/268 1303/300/270 +f 1303/300/270 1032/298/268 215/297/267 +f 196/273/243 204/272/242 1303/300/270 +f 1611/301/271 1613/302/272 220/303/273 +f 1611/301/271 220/303/273 224/304/274 +f 1921/305/275 1157/306/276 1615/307/277 +f 1416/308/278 1921/305/275 1615/307/277 +f 1416/308/278 1615/307/277 1418/309/279 +f 1617/310/280 1886/311/281 1614/312/282 +f 1612/313/283 1617/310/280 1614/312/282 +f 217/314/284 1764/315/285 1302/295/265 +f 1302/295/265 1764/315/285 1017/296/266 +f 234/316/286 231/317/287 1421/318/288 +f 235/319/289 234/316/286 1421/318/288 +f 236/320/290 234/316/286 235/319/289 +f 1995/321/291 236/320/290 235/319/289 +f 238/322/292 236/320/290 1995/321/291 +f 239/323/293 238/322/292 1995/321/291 +f 1963/299/269 238/322/292 239/323/293 +f 1032/298/268 238/322/292 1963/299/269 +f 1164/324/294 1417/325/295 1419/326/296 +f 232/327/297 1417/325/295 1164/324/294 +f 124/328/298 232/327/297 1164/324/294 +f 1518/329/299 232/327/297 124/328/298 +f 1619/330/300 1167/331/301 1887/332/302 +f 1889/333/303 1167/331/301 1619/330/300 +f 223/334/304 1167/331/301 1166/335/305 +f 1887/332/302 1167/331/301 223/334/304 +f 1267/336/306 1889/333/303 1619/330/300 +f 1267/336/306 1619/330/300 1268/337/307 +f 1421/318/288 231/317/287 1996/338/308 +f 1421/318/288 1996/338/308 226/339/309 +f 226/339/309 1889/333/303 1425/340/310 +f 1996/338/308 1889/333/303 226/339/309 +f 1425/340/310 1889/333/303 1267/336/306 +f 1427/341/311 1425/340/310 1267/336/306 +f 1421/318/288 226/339/309 227/342/312 +f 1487/343/313 251/344/314 249/345/315 +f 250/346/316 254/347/317 253/348/318 +f 1487/343/313 249/345/315 250/346/316 +f 1487/343/313 250/346/316 253/348/318 +f 1610/289/259 1160/287/257 1882/292/262 +f 1855/349/319 1278/350/320 1967/351/321 +f 1967/351/321 1278/350/320 266/352/322 +f 264/353/323 266/352/322 184/354/324 +f 1924/355/325 1266/356/326 211/357/327 +f 1883/358/328 1924/355/325 211/357/327 +f 1279/359/329 265/360/330 189/251/221 +f 1279/359/329 189/251/221 1991/361/331 +f 1991/361/331 189/251/221 1260/253/223 +f 42/52/52 52/61/61 275/362/332 277/363/333 +f 273/364/334 1791/365/335 275/362/332 271/366/336 +f 1510/367/337 276/368/338 274/369/339 270/370/340 +f 274/369/339 276/368/338 272/371/341 +f 1283/372/342 1705/373/343 190/374/344 +f 1609/375/345 1283/372/342 190/374/344 +f 1628/376/346 193/377/347 1265/378/348 +f 192/379/349 193/377/347 1628/376/346 +f 209/380/350 208/381/351 1709/382/352 +f 209/380/350 1709/382/352 212/383/353 +f 1855/349/319 1967/351/321 1919/384/354 +f 188/385/355 1855/349/319 1919/384/354 +f 1836/9/9 6/13/13 280/386/356 +f 280/386/356 6/13/13 281/387/357 +f 1527/388/358 1526/389/359 1857/390/360 +f 1297/391/361 1746/392/362 1748/393/363 +f 1296/394/364 1109/395/365 1407/396/366 +f 1292/397/367 2020/398/368 1295/399/369 +f 1954/400/370 1293/401/371 1296/394/364 +f 1452/402/372 1929/403/373 1580/404/374 +f 1578/405/375 1198/406/376 1575/407/377 +f 163/408/378 1405/409/379 1815/410/380 +f 262/411/381 1989/223/195 1406/225/197 +f 1931/412/382 341/413/383 1304/414/384 +f 1864/415/385 354/416/386 353/417/387 +f 1864/415/385 353/417/387 355/418/388 +f 1755/419/389 1458/420/390 1805/421/391 +f 1197/422/392 1199/423/393 1678/424/394 +f 325/425/395 360/426/396 326/427/397 +f 361/428/398 1053/429/399 1051/430/400 +f 323/431/401 361/428/398 1051/430/400 +f 1892/432/402 1054/433/403 1057/434/404 +f 1892/432/402 1057/434/404 1441/435/405 +f 1588/436/406 367/437/407 1817/438/408 +f 1817/438/408 367/437/407 369/439/409 +f 1686/440/410 370/441/411 1902/442/412 +f 1686/440/410 1902/442/412 1792/443/413 +f 374/444/414 376/445/415 375/446/416 +f 374/444/414 377/447/417 376/445/415 +f 1210/448/418 377/447/417 374/444/414 +f 379/449/419 380/450/420 1816/451/421 +f 1689/452/422 379/449/419 1816/451/421 +f 1278/350/320 1689/452/422 266/352/322 +f 266/352/322 1689/452/422 1816/451/421 +f 382/453/423 384/454/424 1756/455/425 +f 385/456/426 1068/457/427 1067/458/428 +f 1949/459/429 385/456/426 1067/458/428 +f 206/460/430 374/444/414 375/446/416 +f 389/461/431 961/83/83 390/462/432 +f 962/463/433 961/83/83 389/461/431 +f 199/265/235 1899/464/434 201/267/237 +f 201/267/237 1899/464/434 1106/465/435 +f 203/270/240 1106/465/435 962/463/433 +f 201/267/237 1106/465/435 203/270/240 +f 203/270/240 962/463/433 389/461/431 +f 63/73/73 1899/464/434 199/265/235 +f 194/264/234 63/73/73 199/265/235 +f 396/466/436 394/467/437 1593/468/438 +f 393/469/439 394/467/437 396/466/436 +f 1824/470/440 393/469/439 396/466/436 +f 1318/471/441 393/469/439 1824/470/440 +f 1696/472/442 1810/473/443 1562/474/444 +f 1219/475/445 401/476/446 404/477/447 +f 402/478/448 401/476/446 1219/475/445 +f 407/479/449 384/454/424 382/453/423 +f 405/480/450 384/454/424 407/479/449 +f 1484/481/451 405/480/450 407/479/449 +f 1759/482/452 405/480/450 1484/481/451 +f 1756/455/425 409/483/453 411/484/454 +f 411/484/454 409/483/453 412/485/455 +f 412/485/455 409/483/453 410/486/456 +f 412/485/455 410/486/456 413/487/457 +f 413/487/457 410/486/456 1759/482/452 +f 2011/488/458 1567/489/459 1075/490/460 +f 2009/491/461 276/368/338 1906/492/462 +f 2009/491/461 1076/493/463 419/494/464 +f 272/371/341 276/368/338 2009/491/461 +f 1075/490/460 1475/495/465 420/496/466 +f 420/496/466 1475/495/465 1476/497/467 +f 425/498/468 421/499/469 2001/500/470 +f 1212/501/471 377/447/417 1210/448/418 +f 423/502/472 377/447/417 1212/501/471 +f 1320/503/473 423/502/472 1212/501/471 +f 2001/500/470 423/502/472 1320/503/473 +f 425/498/468 2001/500/470 1320/503/473 +f 422/504/474 421/499/469 425/498/468 +f 1785/505/475 1478/506/476 1477/507/477 +f 1552/508/478 1478/506/476 1785/505/475 +f 1553/509/479 429/510/480 1554/511/481 +f 428/512/482 429/510/480 1553/509/479 +f 434/513/483 430/514/484 431/515/485 +f 435/516/486 434/513/483 431/515/485 +f 436/517/487 434/513/483 435/516/486 +f 1730/518/488 434/513/483 436/517/487 +f 1216/519/489 1559/520/490 1663/521/491 +f 1327/522/492 1560/523/493 442/524/494 +f 1330/525/495 1732/526/496 447/527/497 +f 1932/528/498 448/529/499 1481/530/500 +f 1734/531/501 451/532/502 1334/533/503 +f 452/534/504 371/535/505 1735/536/506 +f 373/537/507 371/535/505 452/534/504 +f 160/217/191 173/237/207 170/234/204 +f 160/217/191 170/234/204 1933/538/508 +f 170/234/204 168/232/202 454/539/509 +f 453/540/510 170/234/204 454/539/509 +f 456/541/511 1591/542/512 458/543/513 +f 397/544/514 1591/542/512 456/541/511 +f 1055/545/515 460/546/516 459/547/517 +f 1055/545/515 459/547/517 365/548/518 +f 365/548/518 459/547/517 1784/549/519 +f 156/214/188 451/532/502 370/441/411 +f 156/214/188 370/441/411 461/550/520 +f 336/551/521 1736/552/522 372/553/523 +f 1815/410/380 1736/552/522 336/551/521 +f 461/550/520 1736/552/522 1815/410/380 +f 1485/554/524 1483/555/525 407/479/449 +f 1217/556/526 1215/557/526 1214/558/526 +f 318/559/527 403/560/528 465/561/529 +f 1258/562/530 1074/563/531 1262/564/532 +f 467/565/533 1832/566/534 468/567/535 +f 1788/568/536 1786/569/536 469/570/536 +f 1564/571/537 317/572/538 316/573/539 +f 470/574/540 1563/575/540 1187/576/540 +f 281/387/357 9/14/14 254/347/317 +f 9/14/14 8/21/21 254/347/317 +f 254/347/317 8/21/21 255/577/541 +f 1789/578/542 1530/38/38 277/363/333 +f 277/363/333 1530/38/38 29/36/36 +f 472/579/543 1790/580/544 473/581/545 +f 473/581/545 1790/580/544 1791/365/335 +f 472/579/543 473/581/545 263/582/546 +f 455/583/547 53/62/62 63/73/73 +f 455/583/547 63/73/73 194/264/234 +f 1161/290/260 455/583/547 194/264/234 +f 389/461/431 390/462/432 204/272/242 +f 203/270/240 389/461/431 204/272/242 +f 1220/584/548 1949/459/429 1067/458/428 +f 1220/584/548 1067/458/428 1315/585/549 +f 1220/584/548 1315/585/549 1409/282/252 +f 1315/585/549 1955/168/142 119/175/149 +f 1409/282/252 1315/585/549 119/175/149 +f 1222/586/550 1220/584/548 1409/282/252 +f 1978/587/551 1341/588/552 1339/589/553 +f 479/590/554 1341/588/552 1978/587/551 +f 1491/591/555 38/592/556 1119/593/557 +f 1491/591/555 1119/593/557 433/594/558 +f 433/594/558 1119/593/557 432/595/559 +f 1323/596/560 1117/597/561 1490/598/562 +f 1321/599/563 1117/597/561 1323/596/560 +f 456/541/511 457/600/564 1443/601/565 +f 481/602/566 1305/603/567 1494/604/568 +f 1304/414/384 1305/603/567 481/602/566 +f 1495/605/569 1304/414/384 481/602/566 +f 1931/412/382 1304/414/384 1495/605/569 +f 484/606/570 1931/412/382 1495/605/569 +f 1931/412/382 484/606/570 1934/607/571 +f 1077/608/572 1931/412/382 1934/607/571 +f 1224/609/573 1077/608/572 1934/607/571 +f 1430/610/574 1077/608/572 1224/609/573 +f 1224/609/573 1934/607/571 1486/611/575 +f 1445/612/576 1430/610/574 1221/613/577 +f 1221/613/577 1430/610/574 1224/609/573 +f 1862/614/578 1224/609/573 1486/611/575 +f 107/615/579 1344/616/580 1830/617/581 +f 1345/618/582 1344/616/580 107/615/579 +f 1486/611/575 1345/618/582 107/615/579 +f 1486/611/575 107/615/579 1652/619/583 +f 1862/614/578 1486/611/575 1652/619/583 +f 475/620/584 1445/612/576 1221/613/577 +f 115/621/585 1862/614/578 1652/619/583 +f 1316/622/586 1862/614/578 115/621/585 +f 1432/623/587 1078/624/588 1429/625/589 +f 1080/626/590 1078/624/588 1432/623/587 +f 1198/406/376 1052/627/591 1575/407/377 +f 1578/405/375 1575/407/377 1227/628/592 +f 1929/403/373 334/629/593 1580/404/374 +f 1408/249/219 1586/246/216 1587/630/594 +f 182/631/595 1408/249/219 1587/630/594 +f 182/631/595 1587/630/594 368/632/596 +f 1482/633/597 1479/634/598 466/635/599 +f 466/635/599 1479/634/598 1488/636/600 +f 1338/637/601 1980/638/602 1336/639/603 +f 1347/640/604 1980/638/602 1338/637/601 +f 468/567/535 1832/566/534 1347/640/604 +f 468/567/535 1347/640/604 1338/637/601 +f 1981/641/605 478/642/606 1660/643/607 +f 1981/641/605 1660/643/607 320/644/608 +f 1574/645/609 1319/646/610 1317/647/611 +f 1572/648/612 1319/646/610 1574/645/609 +f 1186/649/613 402/478/448 1219/475/445 +f 1186/649/613 1219/475/445 1188/650/614 +f 1328/651/615 1782/652/616 1664/653/617 +f 1328/651/615 1664/653/617 441/654/618 +f 2020/398/368 1933/538/508 1295/399/369 +f 160/217/191 1933/538/508 2020/398/368 +f 297/655/619 453/540/510 454/539/509 +f 297/655/619 454/539/509 298/656/620 +f 295/657/621 420/496/466 1079/658/622 +f 1079/658/622 420/496/466 1476/497/467 +f 295/657/621 1079/658/622 1081/659/623 +f 450/660/624 155/661/625 1989/223/195 +f 1431/662/626 450/660/624 1989/223/195 +f 262/411/381 1431/662/626 1989/223/195 +f 1327/522/492 442/524/494 302/663/627 +f 1326/664/628 1327/522/492 302/663/627 +f 362/665/629 360/426/396 325/425/395 +f 324/666/630 362/665/629 325/425/395 +f 332/667/631 358/668/632 333/669/633 +f 333/669/633 358/668/632 359/670/634 +f 316/573/539 398/671/635 395/672/636 +f 1696/472/442 1562/474/444 1564/571/537 +f 316/573/539 395/672/636 1046/673/637 +f 1535/674/638 1696/472/442 1564/571/537 +f 1564/571/537 316/573/539 1046/673/637 +f 1535/674/638 1564/571/537 1046/673/637 +f 1199/423/393 488/675/639 1677/676/640 +f 1677/676/640 488/675/639 489/677/641 +f 1755/419/389 489/677/641 1458/420/390 +f 1677/676/640 489/677/641 1679/678/642 +f 1679/678/642 489/677/641 1755/419/389 +f 1678/424/394 1199/423/393 1677/676/640 +f 436/517/487 435/516/486 1348/679/643 +f 1348/679/643 435/516/486 431/515/485 +f 1730/518/488 436/517/487 1348/679/643 +f 1350/680/644 1730/518/488 1348/679/643 +f 1348/679/643 431/515/485 1451/681/645 +f 1985/682/646 419/494/464 1747/683/647 +f 1747/683/647 419/494/464 1076/493/463 +f 2009/491/461 419/494/464 1985/682/646 +f 272/371/341 2009/491/461 1985/682/646 +f 1263/684/648 272/371/341 1985/682/646 +f 1454/685/649 354/416/386 306/686/650 +f 1453/687/651 1454/685/649 306/686/650 +f 306/686/650 354/416/386 352/688/652 +f 1774/689/653 1457/690/654 305/691/655 +f 305/691/655 1457/690/654 1459/692/656 +f 1806/693/657 1457/690/654 1774/689/653 +f 295/657/621 416/694/658 420/496/466 +f 293/695/659 416/694/658 295/657/621 +f 1216/519/489 1663/521/491 1213/696/660 +f 1213/696/660 1663/521/491 1298/697/661 +f 350/698/662 1330/525/495 447/527/497 +f 348/699/663 1330/525/495 350/698/662 +f 294/700/664 439/701/665 1751/702/666 +f 1751/702/666 439/701/665 1783/703/667 +f 1447/704/668 1331/705/669 1448/706/670 +f 1448/706/670 1331/705/669 1329/707/671 +f 1752/708/672 440/709/673 443/710/674 +f 1752/708/672 443/710/674 301/711/675 +f 1405/409/379 156/214/188 461/550/520 +f 1405/409/379 461/550/520 1815/410/380 +f 396/466/436 1593/468/438 1042/712/676 +f 1042/712/676 1593/468/438 1043/713/677 +f 1825/714/678 396/466/436 1042/712/676 +f 1045/715/679 1825/714/678 1042/712/676 +f 1897/716/680 363/717/681 492/718/682 +f 322/719/683 492/718/682 361/428/398 +f 1897/716/680 492/718/682 322/719/683 +f 322/719/683 361/428/398 1801/720/684 +f 378/721/685 374/444/414 206/460/430 +f 1737/722/686 383/723/687 1493/724/688 +f 1343/725/689 1737/722/686 1493/724/688 +f 1306/726/690 378/721/685 206/460/430 +f 109/727/691 1343/725/689 1493/724/688 +f 109/727/691 1306/726/690 206/460/430 +f 1493/724/688 1306/726/690 109/727/691 +f 105/728/692 1343/725/689 109/727/691 +f 493/729/693 1793/730/694 494/731/695 +f 494/731/695 1793/730/694 1497/732/696 +f 1497/732/696 1793/730/694 1794/733/697 +f 1497/732/696 1794/733/697 1082/734/698 +f 1082/734/698 1794/733/697 1565/735/699 +f 1833/736/700 493/729/693 1498/737/701 +f 1498/737/701 493/729/693 494/731/695 +f 1082/734/698 1565/735/699 1083/738/702 +f 1083/738/702 1565/735/699 1566/739/703 +f 1834/740/704 1833/736/700 1950/741/705 +f 1950/741/705 1833/736/700 1498/737/701 +f 1083/738/702 1566/739/703 1226/742/706 +f 1226/742/706 1566/739/703 507/743/707 +f 1870/744/708 1834/740/704 1982/745/709 +f 1982/745/709 1834/740/704 1950/741/705 +f 1226/742/706 507/743/707 1351/746/710 +f 1351/746/710 507/743/707 511/747/711 +f 1907/748/712 1870/744/708 2004/749/713 +f 2004/749/713 1870/744/708 1982/745/709 +f 1351/746/710 511/747/711 1455/750/714 +f 1455/750/714 511/747/711 515/751/715 +f 515/751/715 1907/748/712 1456/752/716 +f 1456/752/716 1907/748/712 2004/749/713 +f 1455/750/714 515/751/715 1456/752/716 +f 495/753/717 1526/389/359 2023/754/718 +f 2003/755/719 1526/389/359 495/753/717 +f 1857/390/360 1526/389/359 2003/755/719 +f 497/756/720 495/753/717 2023/754/718 +f 500/757/721 1857/390/360 2003/755/719 +f 499/758/722 497/756/720 2023/754/718 +f 499/758/722 2023/754/718 1181/759/723 +f 1968/760/724 1857/390/360 500/757/721 +f 504/761/725 1968/760/724 500/757/721 +f 503/762/726 499/758/722 1181/759/723 +f 503/762/726 1181/759/723 1182/763/727 +f 1968/760/724 504/761/725 508/764/728 +f 289/765/729 1968/760/724 508/764/728 +f 1672/766/730 503/762/726 1182/763/727 +f 1740/767/731 1672/766/730 1290/768/732 +f 1290/768/732 1672/766/730 1182/763/727 +f 291/769/733 508/764/728 512/770/734 +f 289/765/729 508/764/728 291/769/733 +f 1795/771/735 1740/767/731 1438/772/736 +f 1438/772/736 1740/767/731 1290/768/732 +f 291/769/733 512/770/734 1795/771/735 +f 1438/772/736 291/769/733 1795/771/735 +f 375/446/416 1074/563/531 1282/773/737 +f 1282/773/737 1074/563/531 1258/562/530 +f 206/460/430 375/446/416 205/774/738 +f 205/774/738 375/446/416 1282/773/737 +f 385/456/426 1596/775/739 1068/457/427 +f 370/441/411 451/532/502 1734/531/501 +f 370/441/411 1734/531/501 1902/442/412 +f 409/483/453 1756/455/425 384/454/424 +f 405/480/450 409/483/453 384/454/424 +f 410/486/456 409/483/453 405/480/450 +f 1759/482/452 410/486/456 405/480/450 +f 517/776/740 459/547/517 460/546/516 +f 517/776/740 460/546/516 518/777/741 +f 519/778/742 521/779/743 520/780/744 +f 522/781/745 380/450/420 379/449/419 +f 1340/782/746 1342/783/747 1346/784/748 +f 1346/784/748 1342/783/747 319/785/749 +f 1787/786/750 1552/508/478 1785/505/475 +f 1489/787/751 446/788/752 1332/789/753 +f 1489/787/751 1332/789/753 347/790/754 +f 1450/791/755 1552/508/478 1787/786/750 +f 1450/791/755 1787/786/750 1489/787/751 +f 1450/791/755 1489/787/751 347/790/754 +f 445/792/756 1480/793/757 444/794/758 +f 444/794/758 1480/793/757 1733/795/759 +f 1733/795/759 1480/793/757 449/796/760 +f 523/797/761 283/798/762 524/799/763 +f 282/800/764 283/798/762 523/797/761 +f 524/799/763 283/798/762 284/801/765 +f 15/802/766 282/800/764 523/797/761 +f 286/803/767 282/800/764 15/802/766 +f 524/799/763 284/801/765 525/804/768 +f 525/804/768 284/801/765 285/805/769 +f 525/804/768 285/805/769 259/806/770 +f 259/806/770 285/805/769 287/807/771 +f 14/808/772 286/803/767 15/802/766 +f 288/809/773 286/803/767 14/808/772 +f 260/810/774 287/807/771 1997/811/775 +f 259/806/770 287/807/771 260/810/774 +f 19/812/776 288/809/773 14/808/772 +f 290/813/777 288/809/773 19/812/776 +f 526/814/778 1997/811/775 472/579/543 +f 472/579/543 1997/811/775 2013/815/779 +f 260/810/774 1997/811/775 526/814/778 +f 1529/816/780 290/813/777 19/812/776 +f 292/817/781 290/813/777 1529/816/780 +f 31/818/782 292/817/781 1529/816/780 +f 472/579/543 2013/815/779 471/819/783 +f 31/818/782 2013/815/779 292/817/781 +f 471/819/783 2013/815/779 31/818/782 +f 1860/820/784 523/797/761 524/799/763 +f 1492/821/785 1756/455/425 411/484/454 +f 1492/821/785 411/484/454 483/822/786 +f 483/822/786 411/484/454 412/485/455 +f 483/822/786 412/485/455 413/487/457 +f 483/822/786 413/487/457 2002/823/787 +f 2002/823/787 413/487/457 1759/482/452 +f 482/824/788 1756/455/425 1492/821/785 +f 2002/823/787 1759/482/452 1935/825/789 +f 344/826/790 1069/827/791 1225/828/792 +f 1225/828/792 1069/827/791 1597/829/793 +f 408/830/794 406/831/795 462/832/796 +f 464/833/797 408/830/794 462/832/796 +f 426/834/798 1211/835/799 338/836/800 +f 338/836/800 1211/835/799 339/837/801 +f 1802/838/802 426/834/798 338/836/800 +f 427/839/803 426/834/798 1802/838/802 +f 340/840/804 427/839/803 1802/838/802 +f 425/498/468 427/839/803 340/840/804 +f 422/504/474 425/498/468 340/840/804 +f 342/841/805 422/504/474 340/840/804 +f 346/842/806 452/534/504 1735/536/506 +f 373/537/507 452/534/504 346/842/806 +f 1223/843/807 373/537/507 346/842/806 +f 346/842/806 1735/536/506 261/844/808 +f 386/845/809 387/846/810 1863/847/811 +f 345/848/812 386/845/809 1863/847/811 +f 485/849/813 407/479/449 463/850/814 +f 463/850/814 407/479/449 382/453/423 +f 1485/554/524 407/479/449 485/849/813 +f 314/851/815 252/852/816 1859/853/817 +f 314/851/815 1859/853/817 1439/854/818 +f 1439/854/818 1859/853/817 311/855/819 +f 1439/854/818 311/855/819 1893/856/820 +f 1592/857/821 456/541/511 1443/601/565 +f 365/548/518 1784/549/519 1898/858/822 +f 1440/859/823 365/548/518 1898/858/822 +f 1044/860/824 1592/857/821 1443/601/565 +f 1442/861/825 1044/860/824 1443/601/565 +f 321/862/826 308/863/827 313/864/828 +f 253/348/318 256/865/829 1860/820/784 +f 326/427/397 360/426/396 527/866/830 +f 527/866/830 1056/867/831 312/868/832 +f 304/869/833 369/439/409 351/870/834 +f 2008/871/835 526/814/778 183/283/253 +f 343/872/836 414/873/837 474/874/838 +f 474/874/838 414/873/837 2019/875/839 +f 474/874/838 2019/875/839 388/876/840 +f 1741/877/841 529/878/842 381/879/843 +f 353/417/387 529/878/842 1741/877/841 +f 1741/877/841 381/879/843 1280/880/844 +f 355/418/388 353/417/387 1741/877/841 +f 1831/881/845 428/512/482 1553/509/479 +f 487/882/846 1553/509/479 477/883/847 +f 1831/881/845 1553/509/479 487/882/846 +f 1932/528/498 1481/530/500 1337/884/848 +f 1804/885/849 1932/528/498 1337/884/848 +f 1349/886/850 1324/887/851 1731/888/852 +f 1659/889/853 1324/887/851 1349/886/850 +f 1335/890/854 1659/889/853 1349/886/850 +f 1337/884/848 1335/890/854 1349/886/850 +f 1804/885/849 1337/884/848 1349/886/850 +f 429/510/480 430/514/484 530/891/855 +f 530/891/855 430/514/484 434/513/483 +f 480/892/856 434/513/483 437/893/857 +f 530/891/855 434/513/483 480/892/856 +f 1554/511/481 530/891/855 480/892/856 +f 429/510/480 530/891/855 1554/511/481 +f 480/892/856 437/893/857 438/894/858 +f 477/883/847 48/895/859 1532/896/860 +f 1553/509/479 48/895/859 477/883/847 +f 477/883/847 1532/896/860 1979/897/861 +f 39/898/862 1322/899/863 1659/889/853 +f 1659/889/853 1322/899/863 1324/887/851 +f 476/900/864 39/898/862 1659/889/853 +f 253/348/318 254/347/317 255/577/541 +f 253/348/318 255/577/541 256/865/829 +f 281/387/357 6/13/13 9/14/14 +f 250/346/316 281/387/357 254/347/317 +f 263/582/546 273/364/334 1161/290/260 +f 1962/284/254 472/579/543 263/582/546 +f 183/283/253 472/579/543 1962/284/254 +f 526/814/778 472/579/543 183/283/253 +f 276/368/338 1510/367/337 1906/492/462 +f 376/445/415 270/370/340 274/369/339 +f 376/445/415 274/369/339 375/446/416 +f 375/446/416 274/369/339 272/371/341 +f 473/581/545 1791/365/335 273/364/334 +f 263/582/546 473/581/545 273/364/334 +f 275/362/332 52/61/61 53/62/62 +f 275/362/332 53/62/62 455/583/547 +f 275/362/332 455/583/547 1161/290/260 +f 271/366/336 275/362/332 1161/290/260 +f 273/364/334 271/366/336 1161/290/260 +f 29/36/36 42/52/52 277/363/333 +f 1475/495/465 1075/490/460 1568/901/865 +f 1568/901/865 1075/490/460 1567/489/459 +f 424/902/866 1510/367/337 423/502/472 +f 423/502/472 1510/367/337 270/370/340 +f 1475/495/465 1510/367/337 424/902/866 +f 1352/903/867 1510/367/337 1475/495/465 +f 423/502/472 270/370/340 377/447/417 +f 377/447/417 270/370/340 376/445/415 +f 1475/495/465 1568/901/865 1354/904/868 +f 1354/904/868 1352/903/867 1475/495/465 +f 278/905/869 180/906/870 187/907/871 +f 179/908/872 180/906/870 278/905/869 +f 184/354/324 266/352/322 1816/451/421 +f 184/354/324 1816/451/421 366/909/873 +f 1993/910/874 264/353/323 185/911/875 +f 185/911/875 264/353/323 184/354/324 +f 214/912/876 264/353/323 1629/913/877 +f 1629/913/877 264/353/323 1993/910/874 +f 213/914/878 214/912/876 1629/913/877 +f 213/914/878 1629/913/877 1925/915/879 +f 267/916/880 279/917/880 210/918/880 +f 268/919/881 1689/452/422 1278/350/320 +f 259/806/770 260/810/774 258/920/882 +f 1860/820/784 524/799/763 536/921/883 +f 536/921/883 524/799/763 537/922/884 +f 537/922/884 524/799/763 525/804/768 +f 537/922/884 525/804/768 538/923/885 +f 538/923/885 525/804/768 259/806/770 +f 326/427/397 527/866/830 1228/924/886 +f 1228/924/886 527/866/830 312/868/832 +f 260/810/774 526/814/778 1798/925/887 +f 1798/925/887 526/814/778 2008/871/835 +f 1502/926/888 369/439/409 304/869/833 +f 357/927/889 1582/928/890 1579/929/891 +f 1581/930/892 357/927/889 1579/929/891 +f 1817/438/408 369/439/409 1502/926/888 +f 1228/924/886 312/868/832 1084/931/893 +f 1085/932/894 1860/820/784 536/921/883 +f 1084/931/893 1860/820/784 1085/932/894 +f 312/868/832 1860/820/784 1084/931/893 +f 538/923/885 259/806/770 258/920/882 +f 1938/933/895 1817/438/408 1502/926/888 +f 2008/871/835 1817/438/408 1938/933/895 +f 1798/925/887 2008/871/835 1938/933/895 +f 545/934/896 1580/404/374 1578/405/375 +f 1951/935/897 1580/404/374 545/934/896 +f 1501/936/898 1580/404/374 1951/935/897 +f 1452/402/372 1580/404/374 1501/936/898 +f 258/920/882 260/810/774 1798/925/887 +f 545/934/896 1227/628/592 539/937/899 +f 1578/405/375 1227/628/592 545/934/896 +f 547/938/900 1499/939/900 540/940/900 +f 1500/941/900 1499/939/900 547/938/900 +f 552/942/901 1088/943/902 1086/944/903 +f 552/942/901 1086/944/903 1505/945/904 +f 1505/945/904 1086/944/903 1158/946/905 +f 1397/947/906 552/942/901 555/948/907 +f 244/949/908 1269/950/909 1742/951/910 +f 244/949/908 1742/951/910 248/952/911 +f 1159/953/912 1087/954/913 1155/955/914 +f 1155/955/914 1087/954/913 1089/956/915 +f 1420/957/916 1616/958/916 1745/959/916 +f 1620/960/917 230/961/918 229/962/919 +f 1620/960/917 229/962/919 1674/963/920 +f 551/964/921 242/965/922 243/966/923 +f 246/967/924 551/964/921 243/966/923 +f 1426/968/925 1505/945/904 1922/969/926 +f 1922/969/926 1505/945/904 1158/946/905 +f 457/600/564 1358/970/927 1356/971/928 +f 568/972/929 1358/970/927 457/600/564 +f 1357/973/930 567/974/931 570/975/932 +f 570/975/932 567/974/931 1094/976/933 +f 532/977/934 567/974/931 568/972/929 +f 1094/976/933 567/974/931 532/977/934 +f 532/977/934 568/972/929 569/978/935 +f 1096/979/936 570/975/932 1094/976/933 +f 1837/980/937 1094/976/933 532/977/934 +f 1229/981/938 570/975/932 1096/979/936 +f 1837/980/937 532/977/934 569/978/935 +f 575/982/939 570/975/932 1229/981/938 +f 1874/983/940 1837/980/937 531/984/941 +f 531/984/941 1837/980/937 569/978/935 +f 1231/985/942 1874/983/940 531/984/941 +f 1840/44/44 26/33/33 579/986/943 +f 1140/987/944 26/33/33 1146/53/53 +f 580/988/945 5/12/12 2/989/946 +f 580/988/945 2/989/946 249/345/315 +f 1871/990/947 951/991/948 1175/992/949 +f 952/993/950 953/994/951 175/995/952 +f 1518/329/299 124/328/298 127/996/953 +f 1518/329/299 127/996/953 129/997/954 +f 1367/998/955 1852/999/956 1294/1000/957 +f 607/1001/958 1293/401/371 1954/400/370 +f 1191/1002/959 1393/1003/960 983/1004/961 +f 981/1005/962 1841/1006/963 612/1007/964 +f 1715/1008/965 152/1009/966 162/1010/967 +f 1153/1011/968 151/1012/969 646/1013/970 +f 1533/1014/971 663/1015/972 613/1016/973 +f 1460/1017/974 665/1018/975 1387/1019/976 +f 1544/1020/977 1390/1021/978 667/1022/979 +f 1389/1023/980 1390/1021/978 1544/1020/977 +f 1642/1024/981 1144/1025/982 1654/1026/983 +f 1392/1027/984 1394/1028/985 675/1029/986 +f 1541/1030/987 1657/1031/988 678/1032/989 +f 1657/1031/988 1541/1030/987 622/1033/990 +f 1971/1034/991 1551/1035/992 1399/1036/993 +f 682/1037/994 1551/1035/992 1971/1034/991 +f 683/1038/995 2022/1039/996 1671/1040/997 +f 1728/1041/998 683/1038/995 1671/1040/997 +f 688/1042/999 690/1043/1000 689/1044/1001 +f 1977/1045/1002 688/1042/999 689/1044/1001 +f 1088/943/902 691/1046/1003 692/1047/1004 +f 1550/1048/1005 691/1046/1003 1088/943/902 +f 1550/1048/1005 1088/943/902 552/942/901 +f 693/1049/1006 695/1050/1007 694/1051/1008 +f 937/1052/1009 693/1049/1006 694/1051/1008 +f 1847/1053/1010 699/1054/1011 2012/1055/1012 +f 1623/1056/1013 1847/1053/1010 2012/1055/1012 +f 1849/1057/1014 1598/1058/1015 234/316/286 +f 234/316/286 1598/1058/1015 67/77/77 +f 1851/1059/1016 1849/1057/1014 236/320/290 +f 238/322/292 1851/1059/1016 236/320/290 +f 1525/1060/1017 1851/1059/1016 238/322/292 +f 705/1061/1018 1698/1062/1019 707/1063/1020 +f 705/1061/1018 707/1063/1020 708/1064/1021 +f 1254/1065/1022 1698/1062/1019 705/1061/1018 +f 707/1063/1020 710/1066/1023 708/1064/1021 +f 710/1066/1023 712/1067/1024 711/1068/1025 +f 711/1068/1025 712/1067/1024 713/1069/1026 +f 716/1070/1027 714/1071/1028 715/1072/1029 +f 713/1069/1026 714/1071/1028 716/1070/1027 +f 715/1072/1029 714/1071/1028 717/1073/1030 +f 715/1072/1029 717/1073/1030 718/1074/1031 +f 718/1074/1031 717/1073/1030 399/1075/1032 +f 711/1068/1025 713/1069/1026 716/1070/1027 +f 722/1076/1033 719/1077/1034 725/1078/1035 +f 725/1078/1035 719/1077/1034 726/1079/1036 +f 726/1079/1036 719/1077/1034 720/1080/1037 +f 727/1081/1038 722/1076/1033 725/1078/1035 +f 721/1082/1039 722/1076/1033 727/1081/1038 +f 726/1079/1036 720/1080/1037 728/1083/1040 +f 728/1083/1040 720/1080/1037 723/1084/1041 +f 724/1085/1042 721/1082/1039 729/1086/1043 +f 728/1083/1040 723/1084/1041 730/1087/1044 +f 731/1088/1045 724/1085/1042 729/1086/1043 +f 723/1084/1041 724/1085/1042 731/1088/1045 +f 730/1087/1044 723/1084/1041 731/1088/1045 +f 1895/1089/1046 735/1090/1047 1601/1091/1048 +f 957/1092/1049 955/1093/1050 734/1094/1051 +f 1403/1095/1052 958/1096/1053 1994/1097/1054 +f 1219/475/445 404/477/447 1009/1098/1055 +f 1009/1098/1055 404/477/447 737/1099/1056 +f 1010/1100/1057 738/1101/1058 739/1102/1059 +f 1010/1100/1057 737/1099/1056 738/1101/1058 +f 1009/1098/1055 737/1099/1056 1010/1100/1057 +f 694/1051/1008 695/1050/1007 742/1103/1060 +f 742/1103/1060 695/1050/1007 741/1104/1061 +f 746/1105/1062 693/1049/1006 747/1106/1063 +f 748/1107/1064 746/1105/1062 747/1106/1063 +f 745/1108/1065 746/1105/1062 749/1109/1066 +f 749/1109/1066 746/1105/1062 748/1107/1064 +f 744/1110/1067 745/1108/1065 749/1109/1066 +f 743/1111/1068 745/1108/1065 744/1110/1067 +f 747/1106/1063 693/1049/1006 696/1112/1069 +f 1517/1113/1070 699/1054/1011 1848/1114/1071 +f 1884/1115/1072 699/1054/1011 1517/1113/1070 +f 752/1116/1073 753/1117/1074 140/199/173 +f 752/1116/1073 140/199/173 948/1118/1075 +f 754/1119/1076 753/1117/1074 752/1116/1073 +f 1019/1120/1077 1018/1121/1077 1020/1122/1077 +f 755/1123/1078 1021/1124/1079 757/1125/1080 +f 757/1125/1080 1021/1124/1079 1209/1126/1081 +f 689/1044/1001 690/1043/1000 755/1123/1078 +f 689/1044/1001 755/1123/1078 758/1127/1082 +f 758/1127/1082 755/1123/1078 757/1125/1080 +f 758/1127/1082 757/1125/1080 759/1128/1083 +f 759/1128/1083 757/1125/1080 760/1129/1084 +f 760/1129/1084 757/1125/1080 1209/1126/1081 +f 760/1129/1084 1209/1126/1081 1885/1130/1085 +f 1796/1131/1086 762/1132/1087 763/1133/1088 +f 762/1132/1087 1796/1131/1086 1162/1134/1089 +f 1423/1135/1090 1422/1136/1091 762/1132/1087 +f 1423/1135/1090 762/1132/1087 761/1137/1092 +f 1945/1138/1093 1519/1139/1094 767/1140/1095 +f 1797/1141/1096 1519/1139/1094 1945/1138/1093 +f 1945/1138/1093 767/1140/1095 1923/1142/1097 +f 1923/1142/1097 1888/1143/1098 770/1144/1099 +f 1022/1145/1100 1424/1146/1101 1026/1147/1102 +f 1027/1148/1103 775/1149/1104 777/1150/1105 +f 775/1149/1104 1621/1151/1106 777/1150/1105 +f 150/1152/1107 784/1153/1108 783/1154/1109 +f 1273/1155/1110 1272/1156/1111 785/1157/1112 +f 785/1157/1112 1272/1156/1111 686/1158/1113 +f 158/216/190 1700/229/199 173/237/207 +f 1765/1159/1114 1700/229/199 158/216/190 +f 1702/1160/1115 165/1161/1116 786/1162/1117 +f 1274/1163/1118 167/1164/1119 1275/1165/1120 +f 454/539/509 168/232/202 787/1166/1121 +f 456/541/511 568/972/929 457/600/564 +f 458/543/513 568/972/929 456/541/511 +f 457/600/564 566/1167/1122 789/1168/1123 +f 789/1168/1123 566/1167/1122 1699/1169/1124 +f 789/1168/1123 1699/1169/1124 1256/1170/1125 +f 790/1171/1126 791/1172/1127 1658/1173/1128 +f 1835/1174/1129 790/1171/1126 1658/1173/1128 +f 2022/1039/996 784/1153/1108 153/211/185 +f 792/1175/1130 2022/1039/996 153/211/185 +f 1670/1176/1131 684/1177/1132 1669/1178/1133 +f 1669/1178/1133 684/1177/1132 1715/1008/965 +f 1715/1008/965 684/1177/1132 792/1175/1130 +f 742/1103/1060 741/1104/1061 1881/1179/1134 +f 794/1180/1135 1027/1148/1103 777/1150/1105 +f 794/1180/1135 777/1150/1105 2005/1181/1136 +f 1011/1182/1137 1412/1183/1138 1013/1184/1139 +f 1994/1097/1054 958/1096/1053 1007/1185/1140 +f 1936/1186/1141 711/1068/1025 716/1070/1027 +f 177/1187/1142 1506/207/181 174/1188/1143 +f 1178/1189/1144 1738/1190/1145 798/1191/1146 +f 1179/1192/1147 1163/1193/1147 1177/1194/1147 +f 1640/1195/1148 1927/1196/1149 1638/1197/1150 +f 627/1198/1151 1896/1199/1151 628/1200/1151 +f 2/989/946 280/386/356 249/345/315 +f 249/345/315 280/386/356 250/346/316 +f 250/346/316 280/386/356 281/387/357 +f 801/1201/1152 1099/17/17 5/12/12 +f 1099/17/17 801/1201/1152 251/344/314 +f 802/1202/1153 1099/17/17 251/344/314 +f 1234/39/39 944/37/37 1524/1203/1154 +f 804/1204/1155 1234/39/39 1524/1203/1154 +f 804/1204/1155 1524/1203/1154 805/1205/1156 +f 1872/1206/1157 804/1204/1155 805/1205/1156 +f 67/77/77 1537/64/64 57/67/67 +f 67/77/77 57/67/67 788/1207/1158 +f 231/317/287 67/77/77 788/1207/1158 +f 231/317/287 788/1207/1158 1996/338/308 +f 390/462/432 61/71/71 701/1208/1159 +f 54/63/63 61/71/71 390/462/432 +f 204/272/242 701/1208/1159 1032/298/268 +f 390/462/432 701/1208/1159 204/272/242 +f 218/1209/1160 701/1208/1159 74/84/84 +f 1032/298/268 1525/1060/1017 238/322/292 +f 231/317/287 234/316/286 67/77/77 +f 1849/1057/1014 234/316/286 236/320/290 +f 1624/1210/1161 1847/1053/1010 1623/1056/1013 +f 979/1211/1162 1847/1053/1010 1624/1210/1161 +f 233/1212/1163 979/1211/1162 1624/1210/1161 +f 992/1213/1164 1867/1214/1165 979/1211/1162 +f 992/1213/1164 979/1211/1162 233/1212/1163 +f 233/1212/1163 1624/1210/1161 1626/1215/1166 +f 1033/1216/1167 1037/1217/1168 1035/1218/1169 +f 1035/1218/1169 1037/1217/1168 1583/1219/1170 +f 765/1220/1171 37/1221/1172 1437/1222/1173 +f 45/1223/1174 37/1221/1172 765/1220/1171 +f 766/1224/1175 45/1223/1174 765/1220/1171 +f 1840/44/44 579/986/943 1436/1225/1176 +f 1436/1225/1176 579/986/943 771/1226/1177 +f 771/1226/1177 579/986/943 1141/1227/1178 +f 959/1228/1179 252/852/816 2016/1229/1180 +f 2016/1229/1180 252/852/816 314/851/815 +f 620/1230/1181 251/344/314 1487/343/313 +f 939/1231/1182 1401/1232/1183 1842/1233/1184 +f 939/1231/1182 1842/1233/1184 814/1234/1185 +f 814/1234/1185 1842/1233/1184 1973/1235/1186 +f 1284/1236/1187 814/1234/1185 1973/1235/1186 +f 1284/1236/1187 1973/1235/1186 652/1237/1188 +f 816/1238/1189 1284/1236/1187 652/1237/1188 +f 1012/1239/1190 816/1238/1189 1828/1240/1191 +f 1828/1240/1191 816/1238/1189 652/1237/1188 +f 1012/1239/1190 1828/1240/1191 1646/1241/1192 +f 1646/1241/1192 1828/1240/1191 1665/1242/1193 +f 1880/1243/1194 1012/1239/1190 976/1244/1195 +f 976/1244/1195 1012/1239/1190 1646/1241/1192 +f 1646/1241/1192 1665/1242/1193 818/1245/1196 +f 2017/1246/1197 1708/1247/1198 819/1248/1199 +f 806/1249/1200 1646/1241/1192 818/1245/1196 +f 2017/1246/1197 819/1248/1199 123/1250/1201 +f 123/1250/1201 819/1248/1199 1880/1243/1194 +f 1843/1251/1202 123/1250/1201 1880/1243/1194 +f 1843/1251/1202 1880/1243/1194 976/1244/1195 +f 806/1249/1200 818/1245/1196 1627/1252/1203 +f 1843/1251/1202 976/1244/1195 978/1253/1204 +f 131/1254/1205 1843/1251/1202 978/1253/1204 +f 1666/1255/1206 1826/1256/1207 1632/1257/1208 +f 1631/1258/1209 1666/1255/1206 1632/1257/1208 +f 983/1004/961 1393/1003/960 1653/1259/1210 +f 612/1007/964 1841/1006/963 1385/1260/1211 +f 981/1005/962 612/1007/964 613/1016/973 +f 1398/1261/1212 220/303/273 1854/1262/1213 +f 224/304/274 220/303/273 1398/1261/1212 +f 681/1263/1214 1398/1261/1212 1854/1262/1213 +f 799/1264/1215 1030/1265/1216 1277/1266/1217 +f 1028/1267/1218 1030/1265/1216 799/1264/1215 +f 796/1268/1219 1370/1269/1220 1371/1270/1221 +f 796/1268/1219 1371/1270/1221 1594/1271/1222 +f 1738/1190/1145 1594/1271/1222 798/1191/1146 +f 796/1268/1219 1594/1271/1222 1738/1190/1145 +f 631/1272/1223 810/1273/1224 1034/1274/1225 +f 631/1272/1223 1034/1274/1225 1372/1275/1226 +f 800/1276/1227 710/1066/1023 711/1068/1025 +f 800/1276/1227 711/1068/1025 1937/1277/1228 +f 957/1092/1049 734/1094/1051 1639/1278/1229 +f 629/1279/1230 957/1092/1049 1639/1278/1229 +f 1424/1146/1101 1022/1145/1100 1024/1280/1231 +f 1424/1146/1101 1024/1280/1231 1622/1281/1232 +f 1367/998/955 1765/1159/1114 1852/999/956 +f 1852/999/956 1765/1159/1114 158/216/190 +f 1368/1282/1233 1702/1160/1115 786/1162/1117 +f 1366/1283/1234 1702/1160/1115 1368/1282/1233 +f 754/1119/1076 752/1116/1073 602/1284/1235 +f 1827/1285/1236 754/1119/1076 602/1284/1235 +f 1633/1286/1237 1827/1285/1236 602/1284/1235 +f 151/1012/969 150/1152/1107 783/1154/1109 +f 151/1012/969 783/1154/1109 1667/1287/1238 +f 151/1012/969 1667/1287/1238 646/1013/970 +f 2006/1288/1239 777/1150/1105 610/1289/1240 +f 610/1289/1240 777/1150/1105 1621/1151/1106 +f 634/1290/1241 1727/1291/1242 636/1292/1243 +f 636/1292/1243 1727/1291/1242 674/1293/1244 +f 1143/1294/1245 1142/1295/1246 635/1296/1247 +f 671/1297/1248 1143/1294/1245 635/1296/1247 +f 1927/1196/1149 708/1064/1021 710/1066/1023 +f 1640/1195/1148 1895/1089/1046 1601/1091/1048 +f 1414/1298/1249 708/1064/1021 1927/1196/1149 +f 1640/1195/1148 1601/1091/1048 618/1299/1250 +f 1414/1298/1249 1927/1196/1149 1640/1195/1148 +f 1414/1298/1249 1640/1195/1148 618/1299/1250 +f 1642/1024/981 822/1300/1251 1144/1025/982 +f 823/1301/1252 822/1300/1251 1543/1302/1253 +f 1543/1302/1253 822/1300/1251 1641/1303/1254 +f 1641/1303/1254 822/1300/1251 1642/1024/981 +f 667/1022/979 823/1301/1252 1543/1302/1253 +f 1544/1020/977 667/1022/979 1543/1302/1253 +f 662/1304/1255 764/1305/1256 768/1306/1257 +f 662/1304/1255 768/1306/1257 769/1307/1258 +f 662/1304/1255 769/1307/1258 1721/1308/1259 +f 659/1309/1260 764/1305/1256 662/1304/1255 +f 947/1310/1261 146/205/179 950/1311/1262 +f 605/1312/1263 146/205/179 141/201/175 +f 950/1311/1262 146/205/179 605/1312/1263 +f 605/1312/1263 141/201/175 1506/207/181 +f 605/1312/1263 1506/207/181 177/1187/1142 +f 614/1313/1264 665/1018/975 1533/1014/971 +f 1533/1014/971 665/1018/975 663/1015/972 +f 1386/1314/1265 665/1018/975 614/1313/1264 +f 669/1315/1266 1391/1316/1267 642/1317/1268 +f 643/1318/1269 669/1315/1266 642/1317/1268 +f 642/1317/1268 1391/1316/1267 640/1319/1270 +f 602/1284/1235 752/1116/1073 147/1320/1271 +f 602/1284/1235 147/1320/1271 604/1321/1272 +f 1176/1322/1273 1023/1323/1274 774/1324/1275 +f 1176/1322/1273 774/1324/1275 1434/1325/1276 +f 660/1326/1277 1173/1327/1278 778/1328/1279 +f 660/1326/1277 778/1328/1279 1965/1329/1280 +f 1115/1330/1281 772/1331/1282 603/1332/1283 +f 1025/1333/1284 772/1331/1282 1115/1330/1281 +f 606/1334/1285 1275/1165/1120 167/1164/1119 +f 1111/1335/1286 1275/1165/1120 606/1334/1285 +f 1561/1336/1287 1275/1165/1120 1111/1335/1286 +f 1110/1337/1288 1561/1336/1287 1111/1335/1286 +f 1364/1338/1289 725/1078/1035 726/1079/1036 +f 1363/1339/1290 725/1078/1035 1364/1338/1289 +f 1364/1338/1289 726/1079/1036 1773/1340/1291 +f 727/1081/1038 725/1078/1035 1363/1339/1290 +f 1507/1341/1292 726/1079/1036 728/1083/1040 +f 1773/1340/1291 726/1079/1036 1507/1341/1292 +f 721/1082/1039 727/1081/1038 595/1342/1293 +f 595/1342/1293 727/1081/1038 1363/1339/1290 +f 596/1343/1294 728/1083/1040 730/1087/1044 +f 1507/1341/1292 728/1083/1040 596/1343/1294 +f 729/1086/1043 721/1082/1039 945/1344/1295 +f 945/1344/1295 721/1082/1039 597/1345/1296 +f 597/1345/1296 721/1082/1039 595/1342/1293 +f 596/1343/1294 730/1087/1044 1838/1346/1297 +f 731/1088/1045 729/1086/1043 946/1347/1298 +f 946/1347/1298 729/1086/1043 945/1344/1295 +f 1839/1348/1299 730/1087/1044 731/1088/1045 +f 1838/1346/1297 730/1087/1044 1839/1348/1299 +f 1839/1348/1299 731/1088/1045 946/1347/1298 +f 1534/1349/1300 732/1350/1301 1697/1351/1302 +f 1536/1352/1303 732/1350/1301 1534/1349/1300 +f 733/1353/1304 732/1350/1301 1536/1352/1303 +f 1635/1354/1305 733/1353/1304 1536/1352/1303 +f 1169/1355/1306 1171/1356/1307 658/1357/1308 +f 657/1358/1309 1169/1355/1306 658/1357/1308 +f 776/1359/1310 773/1360/1311 1114/1361/1312 +f 1113/1362/1313 776/1359/1310 1114/1361/1312 +f 792/1175/1130 153/211/185 152/1009/966 +f 1715/1008/965 792/1175/1130 152/1009/966 +f 1255/1363/1314 705/1061/1018 616/1364/1315 +f 616/1364/1315 705/1061/1018 708/1064/1021 +f 616/1364/1315 708/1064/1021 1415/1365/1316 +f 1761/1366/1317 1255/1363/1314 616/1364/1315 +f 824/1367/1318 676/1368/1319 633/1369/1320 +f 1394/1028/985 824/1367/1318 1287/1370/1321 +f 1287/1370/1321 824/1367/1318 633/1369/1320 +f 675/1029/986 1394/1028/985 1287/1370/1321 +f 1767/1371/1322 828/1372/1323 1768/1373/1324 +f 1768/1373/1324 828/1372/1323 626/1374/1325 +f 1928/1375/1326 828/1372/1323 1767/1371/1322 +f 795/1376/1327 828/1372/1323 1928/1375/1326 +f 1206/1377/1328 626/1374/1325 1573/1378/1329 +f 1768/1373/1324 626/1374/1325 1206/1377/1328 +f 1675/1379/1330 1206/1377/1328 1573/1378/1329 +f 1928/1375/1326 1927/1196/1149 795/1376/1327 +f 1638/1197/1150 1927/1196/1149 1008/1380/1331 +f 1008/1380/1331 1927/1196/1149 1928/1375/1326 +f 1675/1379/1330 1573/1378/1329 316/573/539 +f 1675/1379/1330 316/573/539 1189/1381/1332 +f 1189/1381/1332 316/573/539 317/572/538 +f 1008/1380/1331 1928/1375/1326 1811/1382/1333 +f 833/1383/1334 1675/1379/1330 1189/1381/1332 +f 1039/1384/1335 1008/1380/1331 1811/1382/1333 +f 833/1383/1334 1189/1381/1332 1710/1385/1336 +f 1039/1384/1335 1811/1382/1333 1471/1386/1337 +f 1471/1386/1337 833/1383/1334 1710/1385/1336 +f 1039/1384/1335 1471/1386/1337 1710/1385/1336 +f 834/1387/1338 1994/1097/1054 1007/1185/1140 +f 630/1388/1339 465/561/529 740/1389/1340 +f 740/1389/1340 1994/1097/1054 834/1387/1338 +f 630/1388/1339 740/1389/1340 834/1387/1338 +f 318/559/527 465/561/529 630/1388/1339 +f 240/1390/1341 1977/1045/1002 689/1044/1001 +f 938/1391/1342 937/1052/1009 1707/1392/1343 +f 1707/1392/1343 937/1052/1009 694/1051/1008 +f 240/1390/1341 689/1044/1001 1400/1393/1344 +f 986/1394/1345 1400/1393/1344 938/1391/1342 +f 240/1390/1341 1400/1393/1344 986/1394/1345 +f 986/1394/1345 938/1391/1342 1707/1392/1343 +f 986/1394/1345 1707/1392/1343 120/1395/1346 +f 836/1396/1347 838/1397/1348 1065/1398/1349 +f 1065/1398/1349 838/1397/1348 1291/1399/1350 +f 1291/1399/1350 838/1397/1348 840/1400/1351 +f 1291/1399/1350 840/1400/1351 1183/1401/1352 +f 1183/1401/1352 840/1400/1351 1676/1402/1353 +f 843/1403/1354 836/1396/1347 1066/1404/1355 +f 1066/1404/1355 836/1396/1347 1065/1398/1349 +f 1183/1401/1352 1676/1402/1353 1040/1405/1356 +f 1040/1405/1356 1676/1402/1353 1570/1406/1357 +f 847/1407/1358 843/1403/1354 1952/1408/705 +f 1952/1408/705 843/1403/1354 1066/1404/1355 +f 1040/1405/1356 1570/1406/1357 1041/1409/1359 +f 1041/1409/1359 1570/1406/1357 1571/1410/1360 +f 851/1411/1361 847/1407/1358 1953/1412/1362 +f 1953/1412/1362 847/1407/1358 1952/1408/705 +f 1041/1409/1359 1571/1410/1360 1299/1413/710 +f 1299/1413/710 1571/1410/1360 1753/1414/1363 +f 855/1415/1364 851/1411/1361 2007/1416/1365 +f 2007/1416/1365 851/1411/1361 1953/1412/1362 +f 1299/1413/710 1753/1414/1363 857/1417/1366 +f 857/1417/1366 1753/1414/1363 1754/1418/1367 +f 1754/1418/1367 855/1415/1364 1185/1419/1368 +f 1185/1419/1368 855/1415/1364 2007/1416/1365 +f 857/1417/1366 1754/1418/1367 1185/1419/1368 +f 1956/1420/1369 582/1421/1370 1749/1422/1371 +f 1749/1422/1371 582/1421/1370 1100/1423/1372 +f 940/1424/1373 582/1421/1370 1956/1420/1369 +f 1750/1425/1374 1749/1422/1371 1100/1423/1372 +f 1858/1426/1375 940/1424/1373 1956/1420/1369 +f 842/1427/1376 1750/1425/1374 1100/1423/1372 +f 842/1427/1376 1100/1423/1372 1102/1428/1377 +f 941/1429/1378 940/1424/1373 1858/1426/1375 +f 1813/1430/1379 941/1429/1378 1858/1426/1375 +f 846/1431/1380 842/1427/1376 1528/1432/1381 +f 1528/1432/1381 842/1427/1376 1102/1428/1377 +f 941/1429/1378 1813/1430/1379 1814/1433/1382 +f 850/1434/1383 846/1431/1380 1528/1432/1381 +f 587/1435/1384 941/1429/1378 1814/1433/1382 +f 588/1436/1385 850/1434/1383 1528/1432/1381 +f 854/1437/1386 850/1434/1383 588/1436/1385 +f 587/1435/1384 1814/1433/1382 1891/1438/1387 +f 589/1439/1388 587/1435/1384 1891/1438/1387 +f 1104/1440/1389 854/1437/1386 588/1436/1385 +f 858/1441/1390 854/1437/1386 1104/1440/1389 +f 1104/1440/1389 1891/1438/1387 858/1441/1390 +f 589/1439/1388 1891/1438/1387 1104/1440/1389 +f 1744/1442/1391 1506/207/181 1977/1045/1002 +f 174/1188/1143 1506/207/181 1744/1442/1391 +f 1744/1442/1391 1977/1045/1002 240/1390/1341 +f 228/1443/1392 1744/1442/1391 240/1390/1341 +f 1668/1444/1393 1729/1445/1394 685/1446/1395 +f 1626/1215/1166 1729/1445/1394 1668/1444/1393 +f 1222/586/550 1686/440/410 1792/443/413 +f 1049/1447/1396 1686/440/410 1222/586/550 +f 233/1212/1163 1626/1215/1166 1668/1444/1393 +f 1049/1447/1396 1222/586/550 1409/282/252 +f 216/1448/1397 233/1212/1163 1668/1444/1393 +f 1016/1449/1398 1049/1447/1396 1409/282/252 +f 1048/1450/1399 1050/1451/1400 1015/1452/1401 +f 216/1448/1397 1668/1444/1393 299/1453/1402 +f 216/1448/1397 337/1454/1403 195/1455/1404 +f 299/1453/1402 337/1454/1403 216/1448/1397 +f 699/1054/1011 1884/1115/1072 2012/1055/1012 +f 783/1154/1109 784/1153/1108 683/1038/995 +f 683/1038/995 784/1153/1108 2022/1039/996 +f 695/1050/1007 693/1049/1006 746/1105/1062 +f 695/1050/1007 746/1105/1062 745/1108/1065 +f 695/1050/1007 745/1108/1065 1411/1456/1405 +f 1411/1456/1405 745/1108/1065 743/1111/1068 +f 1602/1457/1406 956/1458/1407 1402/1459/1408 +f 1402/1459/1408 956/1458/1407 736/1460/1409 +f 404/477/447 401/476/446 400/1461/1410 +f 1513/1462/1411 404/477/447 400/1461/1410 +f 1402/1459/1408 1513/1462/1411 1703/1463/1412 +f 1703/1463/1412 1513/1462/1411 400/1461/1410 +f 1602/1457/1406 1402/1459/1408 1703/1463/1412 +f 791/1172/1127 790/1171/1126 860/1464/1413 +f 861/1465/1414 791/1172/1127 860/1464/1413 +f 862/1466/1415 864/1467/1416 863/1468/1417 +f 692/1047/1004 691/1046/1003 865/1469/1418 +f 720/1080/1037 719/1077/1034 722/1076/1033 +f 723/1084/1041 720/1080/1037 722/1076/1033 +f 723/1084/1041 722/1076/1033 724/1085/1042 +f 724/1085/1042 722/1076/1033 721/1082/1039 +f 632/1470/1419 808/1471/1420 809/1472/1421 +f 632/1470/1419 809/1472/1421 1595/1473/1422 +f 797/1474/1423 1162/1134/1089 1796/1131/1086 +f 1172/1475/1424 780/1476/1425 1739/1477/1426 +f 1376/1478/1427 1172/1475/1424 1739/1477/1426 +f 797/1474/1423 1796/1131/1086 1378/1479/1428 +f 1739/1477/1426 797/1474/1423 1378/1479/1428 +f 1376/1478/1427 1739/1477/1426 1378/1479/1428 +f 1174/1480/1429 782/1481/1430 1029/1482/1431 +f 1174/1480/1429 1029/1482/1431 1170/1483/1432 +f 1170/1483/1432 1029/1482/1431 779/1484/1433 +f 866/1485/1434 1101/1486/1435 621/1487/1436 +f 621/1487/1436 1101/1486/1435 802/1202/1153 +f 581/1488/1437 1101/1486/1435 867/1489/1438 +f 867/1489/1438 1101/1486/1435 866/1485/1434 +f 802/1202/1153 1101/1486/1435 583/1490/1439 +f 802/1202/1153 583/1490/1439 13/1491/1440 +f 584/1492/1441 581/1488/1437 868/1493/1442 +f 868/1493/1442 581/1488/1437 867/1489/1438 +f 13/1491/1440 583/1490/1439 585/1494/1443 +f 549/1495/1444 584/1492/1441 868/1493/1442 +f 586/1496/1445 584/1492/1441 549/1495/1444 +f 550/1497/1446 586/1496/1445 549/1495/1444 +f 1098/1498/1447 585/1494/1443 1233/1499/1448 +f 13/1491/1440 585/1494/1443 1098/1498/1447 +f 1098/1498/1447 1233/1499/1448 20/1500/1449 +f 869/1501/1450 586/1496/1445 550/1497/1446 +f 805/1205/1156 586/1496/1445 869/1501/1450 +f 1711/1502/1451 586/1496/1445 805/1205/1156 +f 20/1500/1449 1233/1499/1448 1103/1503/1452 +f 803/1504/1453 1711/1502/1451 805/1205/1156 +f 20/1500/1449 1103/1503/1452 27/1505/1454 +f 30/1506/1455 1711/1502/1451 803/1504/1453 +f 590/1507/1456 1711/1502/1451 30/1506/1455 +f 27/1505/1454 1103/1503/1452 590/1507/1456 +f 27/1505/1454 590/1507/1456 30/1506/1455 +f 1766/1508/1457 747/1106/1063 696/1112/1069 +f 748/1107/1064 747/1106/1063 815/1509/1458 +f 815/1509/1458 747/1106/1063 1766/1508/1457 +f 749/1109/1066 748/1107/1064 815/1509/1458 +f 1285/1510/1459 749/1109/1066 815/1509/1458 +f 744/1110/1067 749/1109/1066 1285/1510/1459 +f 1766/1508/1457 696/1112/1069 813/1511/1460 +f 648/1512/1461 744/1110/1067 1285/1510/1459 +f 1884/1115/1072 1517/1113/1070 977/1513/1462 +f 1647/1514/1463 1884/1115/1072 977/1513/1462 +f 647/1515/1464 1410/1516/1465 1011/1182/1137 +f 1011/1182/1137 1410/1516/1465 1412/1183/1138 +f 650/1517/1466 689/1044/1001 758/1127/1082 +f 650/1517/1466 758/1127/1082 759/1128/1083 +f 650/1517/1466 759/1128/1083 651/1518/1467 +f 651/1518/1467 759/1128/1083 760/1129/1084 +f 651/1518/1467 760/1129/1084 1976/1519/1468 +f 653/1520/1469 760/1129/1084 1885/1130/1085 +f 1976/1519/1468 760/1129/1084 653/1520/1469 +f 649/1521/1470 689/1044/1001 650/1517/1466 +f 1926/1522/1471 785/1157/1112 686/1158/1113 +f 1273/1155/1110 785/1157/1112 1926/1522/1471 +f 1926/1522/1471 686/1158/1113 807/1523/1472 +f 817/1524/1473 1273/1155/1110 1926/1522/1471 +f 656/1525/1474 750/1526/1475 697/1527/1476 +f 655/1528/1477 750/1526/1475 656/1525/1474 +f 1856/1529/1478 742/1103/1060 1881/1179/1134 +f 694/1051/1008 742/1103/1060 1856/1529/1478 +f 793/1530/1479 694/1051/1008 1856/1529/1478 +f 1984/1531/1480 959/1228/1179 2016/1229/1180 +f 1779/1532/1481 960/1533/1482 959/1228/1179 +f 1779/1532/1481 959/1228/1179 1984/1531/1480 +f 623/1534/1483 960/1533/1482 1779/1532/1481 +f 1835/1174/1129 1658/1173/1128 1918/1535/1484 +f 1918/1535/1484 1658/1173/1128 1780/1536/1485 +f 624/1537/1486 789/1168/1123 709/1538/1487 +f 624/1537/1486 709/1538/1487 1760/1539/1488 +f 1760/1539/1488 1918/1535/1484 1780/1536/1485 +f 624/1537/1486 1760/1539/1488 1780/1536/1485 +f 569/978/935 568/972/929 458/543/513 +f 706/1540/1489 1357/973/930 570/975/932 +f 870/1541/1490 458/543/513 871/1542/1491 +f 871/1542/1491 458/543/513 872/1543/1492 +f 872/1543/1492 458/543/513 1591/542/512 +f 569/978/935 458/543/513 531/984/941 +f 531/984/941 458/543/513 870/1541/1490 +f 870/1541/1490 706/1540/1489 570/975/932 +f 872/1543/1492 1591/542/512 393/469/439 +f 870/1541/1490 570/975/932 575/982/939 +f 870/1541/1490 575/982/939 578/1544/1493 +f 870/1541/1490 578/1544/1493 531/984/941 +f 707/1063/1020 706/1540/1489 870/1541/1490 +f 710/1066/1023 707/1063/1020 870/1541/1490 +f 873/1545/1494 393/469/439 1318/471/441 +f 872/1543/1492 393/469/439 873/1545/1494 +f 874/1546/1495 870/1541/1490 871/1542/1491 +f 712/1067/1024 870/1541/1490 713/1069/1026 +f 713/1069/1026 870/1541/1490 874/1546/1495 +f 714/1071/1028 873/1545/1494 717/1073/1030 +f 717/1073/1030 873/1545/1494 1318/471/441 +f 713/1069/1026 874/1546/1495 873/1545/1494 +f 713/1069/1026 873/1545/1494 714/1071/1028 +f 710/1066/1023 870/1541/1490 712/1067/1024 +f 399/1075/1032 717/1073/1030 1318/471/441 +f 1541/1030/987 678/1032/989 875/1547/1496 +f 875/1547/1496 673/1548/1497 1190/1549/1498 +f 670/1550/1499 2024/1551/1500 980/1552/1501 +f 613/1016/973 663/1015/972 682/1037/994 +f 1165/1553/1502 869/1501/1450 221/1554/1503 +f 698/1555/1504 751/1556/1505 1625/1557/1506 +f 1625/1557/1506 751/1556/1505 654/1558/1507 +f 700/1559/1508 698/1555/1504 1625/1557/1506 +f 876/1560/1509 877/1561/1510 1460/1017/974 +f 554/1562/1511 877/1561/1510 876/1560/1509 +f 1090/1563/1512 554/1562/1511 876/1560/1509 +f 876/1560/1509 1460/1017/974 1387/1019/976 +f 1180/1564/1513 1423/1135/1090 761/1137/1092 +f 821/1565/1514 1036/1566/1515 1423/1135/1090 +f 821/1565/1514 1423/1135/1090 1180/1564/1513 +f 1271/1567/1516 1031/1568/1517 781/1569/1518 +f 1276/1570/1519 1031/1568/1517 1271/1567/1516 +f 1923/1142/1097 770/1144/1099 661/1571/1520 +f 1369/1572/1521 770/1144/1099 1038/1573/1522 +f 661/1571/1520 770/1144/1099 1369/1572/1521 +f 661/1571/1520 1369/1572/1521 1276/1570/1519 +f 661/1571/1520 1276/1570/1519 1271/1567/1516 +f 878/1574/1523 763/1133/1088 762/1132/1087 +f 767/1140/1095 763/1133/1088 878/1574/1523 +f 1923/1142/1097 767/1140/1095 1888/1143/1098 +f 1888/1143/1098 767/1140/1095 878/1574/1523 +f 1888/1143/1098 878/1574/1523 812/1575/1524 +f 1422/1136/1091 878/1574/1523 762/1132/1087 +f 812/1575/1524 878/1574/1523 1422/1136/1091 +f 1584/1576/1525 44/1577/1526 1148/1578/1527 +f 1036/1566/1515 1148/1578/1527 1423/1135/1090 +f 1584/1576/1525 1148/1578/1527 1036/1566/1515 +f 1038/1573/1522 1140/987/944 1146/53/53 +f 770/1144/1099 1140/987/944 1038/1573/1522 +f 1038/1573/1522 1146/53/53 811/1579/1528 +f 621/1487/1436 802/1202/1153 251/344/314 +f 621/1487/1436 251/344/314 620/1230/1181 +f 801/1201/1152 5/12/12 580/988/945 +f 801/1201/1152 580/988/945 251/344/314 +f 251/344/314 580/988/945 249/345/315 +f 625/1580/1529 457/600/564 789/1168/1123 +f 1443/601/565 457/600/564 625/1580/1529 +f 625/1580/1529 789/1168/1123 624/1537/1486 +f 1948/1581/1530 715/1072/1029 1637/1582/1531 +f 716/1070/1027 715/1072/1029 1948/1581/1530 +f 1637/1582/1531 715/1072/1029 718/1074/1031 +f 315/1583/1532 718/1074/1031 399/1075/1032 +f 1637/1582/1531 718/1074/1031 315/1583/1532 +f 1936/1186/1141 716/1070/1027 1948/1581/1530 +f 578/1544/1493 1231/985/942 531/984/941 +f 571/1584/1533 1970/1585/1534 1360/1586/1535 +f 10/1587/1536 3/1588/1537 1095/1589/1538 +f 571/1584/1533 1360/1586/1535 1097/1590/1539 +f 573/1591/1540 10/1587/1536 1095/1589/1538 +f 572/1592/1541 11/1593/1542 1362/1594/1543 +f 17/1595/1544 10/1587/1536 573/1591/1540 +f 1873/1596/1545 17/1595/1544 573/1591/1540 +f 22/1597/1546 17/1595/1544 1873/1596/1545 +f 572/1592/1541 1362/1594/1543 1230/1598/1547 +f 574/1599/1548 18/1600/1549 1879/1601/1550 +f 574/1599/1548 1879/1601/1550 577/1602/1551 +f 1232/1603/1552 1772/1604/1553 576/1605/1554 +f 24/1606/1555 1772/1604/1553 1232/1603/1552 +f 1996/338/308 560/1607/1556 1872/1206/1157 +f 1168/1608/1557 805/1205/1156 869/1501/1450 +f 1872/1206/1157 805/1205/1156 1168/1608/1557 +f 1165/1553/1502 1168/1608/1557 869/1501/1450 +f 559/1609/1558 558/1610/1559 688/1042/999 +f 559/1609/1558 688/1042/999 1977/1045/1002 +f 148/1611/1560 559/1609/1558 687/1612/1561 +f 1890/1613/1562 1234/39/39 804/1204/1155 +f 1872/1206/1157 563/1614/1563 804/1204/1155 +f 560/1607/1556 563/1614/1563 1872/1206/1157 +f 57/67/67 51/65/65 562/1615/1564 +f 788/1207/1158 57/67/67 562/1615/1564 +f 561/1616/1565 788/1207/1158 562/1615/1564 +f 1996/338/308 788/1207/1158 561/1616/1565 +f 1996/338/308 561/1616/1565 560/1607/1556 +f 1986/1617/1566 140/199/173 753/1117/1074 +f 1808/200/174 140/199/173 1986/1617/1566 +f 558/1610/1559 994/203/177 1576/1618/1567 +f 690/1043/1000 558/1610/1559 756/1619/1568 +f 688/1042/999 558/1610/1559 690/1043/1000 +f 756/1619/1568 558/1610/1559 1576/1618/1567 +f 1465/1620/1569 1986/1617/1566 753/1117/1074 +f 756/1619/1568 1576/1618/1567 1465/1620/1569 +f 756/1619/1568 1465/1620/1569 753/1117/1074 +f 225/1621/1570 176/1622/1571 1959/1623/1572 +f 225/1621/1570 1959/1623/1572 564/1624/1573 +f 1397/947/906 1550/1048/1005 552/942/901 +f 679/1625/1574 1550/1048/1005 1397/947/906 +f 1917/1626/1575 615/1627/1576 1413/1628/1577 +f 1799/1629/1578 308/863/827 321/862/826 +f 307/1630/1579 308/863/827 1799/1629/1578 +f 825/1631/1580 1917/1626/1575 1413/1628/1577 +f 1286/1632/1581 825/1631/1580 1413/1628/1577 +f 307/1630/1579 1799/1629/1578 1800/1633/1582 +f 1286/1632/1581 1413/1628/1577 617/1634/1583 +f 309/1635/1584 307/1630/1579 1800/1633/1582 +f 1393/1003/960 1286/1632/1581 617/1634/1583 +f 1653/1259/1210 1393/1003/960 617/1634/1583 +f 309/1635/1584 1800/1633/1582 1198/406/376 +f 1198/406/376 1800/1633/1582 1052/627/591 +f 1653/1259/1210 617/1634/1583 1379/1636/1585 +f 349/1637/1586 309/1635/1584 1198/406/376 +f 638/1638/1587 1653/1259/1210 1379/1636/1585 +f 349/1637/1586 1198/406/376 328/1639/1588 +f 309/1635/1584 349/1637/1586 310/1640/1589 +f 310/1640/1589 349/1637/1586 1446/1641/1590 +f 637/1642/1591 638/1638/1587 1379/1636/1585 +f 349/1637/1586 328/1639/1588 327/1643/1592 +f 637/1642/1591 1379/1636/1585 1722/1644/1593 +f 490/1645/1594 349/1637/1586 327/1643/1592 +f 1379/1636/1585 617/1634/1583 1377/1646/1595 +f 1377/1646/1595 617/1634/1583 1634/1647/1596 +f 664/1648/1597 1841/1006/963 1388/1649/1598 +f 1385/1260/1211 1841/1006/963 664/1648/1597 +f 330/1650/1599 334/629/593 1929/403/373 +f 330/1650/1599 1929/403/373 1865/1651/1600 +f 639/1652/1601 637/1642/1591 1722/1644/1593 +f 490/1645/1594 327/1643/1592 329/1653/1602 +f 641/1654/1603 639/1652/1601 1722/1644/1593 +f 490/1645/1594 329/1653/1602 331/1655/1604 +f 641/1654/1603 1722/1644/1593 1720/1656/1605 +f 491/1657/1606 490/1645/1594 331/1655/1604 +f 664/1648/1597 1388/1649/1598 951/991/948 +f 1746/392/362 330/1650/1599 1865/1651/1600 +f 1388/1649/1598 641/1654/1603 1720/1656/1605 +f 491/1657/1606 331/1655/1604 330/1650/1599 +f 951/991/948 1388/1649/1598 1720/1656/1605 +f 491/1657/1606 330/1650/1599 1746/392/362 +f 1746/392/362 1865/1651/1600 1866/1658/1607 +f 1444/1659/1608 664/1648/1597 951/991/948 +f 1746/392/362 1866/1658/1607 296/1660/1609 +f 296/1660/1609 1866/1658/1607 528/1661/1610 +f 951/991/948 1720/1656/1605 1270/1662/1611 +f 1803/1663/1612 491/1657/1606 1746/392/362 +f 175/995/952 557/1664/1613 952/993/950 +f 952/993/950 557/1664/1613 1444/1659/1608 +f 528/1661/1610 1281/1665/1614 296/1660/1609 +f 296/1660/1609 1281/1665/1614 181/1666/1615 +f 952/993/950 1444/1659/1608 951/991/948 +f 1175/992/949 951/991/948 1270/1662/1611 +f 1803/1663/1612 1746/392/362 1297/391/361 +f 592/1667/1616 619/1668/1617 310/1640/1589 +f 1634/1647/1596 619/1668/1617 592/1667/1616 +f 593/1669/1618 1634/1647/1596 592/1667/1616 +f 592/1667/1616 310/1640/1589 591/1670/1619 +f 1377/1646/1595 1634/1647/1596 593/1669/1618 +f 2014/1671/1620 310/1640/1589 1446/1641/1590 +f 591/1670/1619 310/1640/1589 2014/1671/1620 +f 594/1672/1621 1377/1646/1595 593/1669/1618 +f 1964/1673/1622 1377/1646/1595 594/1672/1621 +f 2014/1671/1620 1446/1641/1590 1449/1674/1623 +f 1508/1675/1624 1964/1673/1622 594/1672/1621 +f 1998/1676/1625 2014/1671/1620 1449/1674/1623 +f 1175/992/949 1270/1662/1611 1964/1673/1622 +f 1297/391/361 1449/1674/1623 1803/1663/1612 +f 1998/1676/1625 1449/1674/1623 1297/391/361 +f 611/1677/1626 1175/992/949 1964/1673/1622 +f 611/1677/1626 1964/1673/1622 1508/1675/1624 +f 303/1678/1627 1998/1676/1625 1297/391/361 +f 598/1679/1628 1998/1676/1625 303/1678/1627 +f 1325/1680/1629 598/1679/1628 303/1678/1627 +f 1112/1681/1630 611/1677/1626 1508/1675/1624 +f 1871/990/947 1175/992/949 1435/1682/1631 +f 300/1683/1632 1297/391/361 1748/393/363 +f 1112/1681/1630 1508/1675/1624 599/1684/1633 +f 1109/395/365 598/1679/1628 1325/1680/1629 +f 1112/1681/1630 599/1684/1633 1365/1685/1634 +f 600/1686/1635 598/1679/1628 1109/395/365 +f 1365/1685/1634 599/1684/1633 601/1687/1636 +f 608/1688/1637 600/1686/1635 1109/395/365 +f 1365/1685/1634 601/1687/1636 608/1688/1637 +f 601/1687/1636 600/1686/1635 608/1688/1637 +f 1407/396/366 1325/1680/1629 1218/1689/1638 +f 1109/395/365 1325/1680/1629 1407/396/366 +f 1112/1681/1630 1365/1685/1634 607/1001/958 +f 609/1690/1639 1112/1681/1630 1151/1691/1640 +f 1151/1691/1640 1112/1681/1630 607/1001/958 +f 645/1692/1641 1151/1691/1640 607/1001/958 +f 609/1690/1639 1151/1691/1640 1630/1693/1642 +f 1433/1694/1643 1407/396/366 1218/1689/1638 +f 1296/394/364 1407/396/366 335/1695/1644 +f 645/1692/1641 607/1001/958 1954/400/370 +f 1954/400/370 1296/394/364 335/1695/1644 +f 1218/1689/1638 300/1683/1632 1748/393/363 +f 1435/1682/1631 609/1690/1639 1630/1693/1642 +f 1871/990/947 1435/1682/1631 1630/1693/1642 +f 1433/1694/1643 1218/1689/1638 1748/393/363 +f 820/1696/1645 1871/990/947 1630/1693/1642 +f 1433/1694/1643 1748/393/363 486/1697/1646 +f 644/1698/1647 645/1692/1641 1954/400/370 +f 1954/400/370 335/1695/1644 1050/1451/1400 +f 1954/400/370 1050/1451/1400 1048/1450/1399 +f 1397/947/906 555/948/907 1618/1699/1648 +f 1618/1699/1648 555/948/907 247/1700/1649 +f 1673/1701/1650 247/1700/1649 1428/1702/1651 +f 1618/1699/1648 247/1700/1649 1673/1701/1650 +f 1397/947/906 1618/1699/1648 222/1703/1652 +f 1743/1704/1653 1673/1701/1650 1428/1702/1651 +f 245/1705/1654 241/1706/1655 565/1707/1656 +f 245/1705/1654 565/1707/1656 556/1708/1657 +f 553/1709/1658 554/1562/1511 1090/1563/1512 +f 867/1489/1438 866/1485/1434 882/1710/1659 +f 882/1710/1659 866/1485/1434 621/1487/1436 +f 868/1493/1442 867/1489/1438 883/1711/1660 +f 883/1711/1660 867/1489/1438 882/1710/1659 +f 550/1497/1446 549/1495/1444 1930/1712/1661 +f 549/1495/1444 868/1493/1442 884/1713/1662 +f 884/1713/1662 868/1493/1442 883/1711/1660 +f 885/1714/1663 869/1501/1450 550/1497/1446 +f 221/1554/1503 869/1501/1450 885/1714/1663 +f 1192/1715/1664 875/1547/1496 1190/1549/1498 +f 1541/1030/987 875/1547/1496 1192/1715/1664 +f 982/1716/1665 670/1550/1499 980/1552/1501 +f 613/1016/973 682/1037/994 1193/1717/1666 +f 1193/1717/1666 682/1037/994 1971/1034/991 +f 888/1718/1667 1541/1030/987 1192/1715/1664 +f 882/1710/1659 621/1487/1436 889/1719/1668 +f 889/1719/1668 621/1487/1436 1541/1030/987 +f 889/1719/1668 1541/1030/987 888/1718/1667 +f 1930/1712/1661 549/1495/1444 884/1713/1662 +f 1193/1717/1666 1971/1034/991 890/1720/1669 +f 890/1720/1669 1971/1034/991 221/1554/1503 +f 890/1720/1669 221/1554/1503 885/1714/1663 +f 983/1004/961 981/1005/962 891/1721/1670 +f 891/1721/1670 981/1005/962 1047/1722/1671 +f 1047/1722/1671 981/1005/962 613/1016/973 +f 1047/1722/1671 613/1016/973 1193/1717/1666 +f 885/1714/1663 550/1497/1446 1930/1712/1661 +f 886/1723/1672 1191/1002/959 983/1004/961 +f 886/1723/1672 983/1004/961 891/1721/1670 +f 893/1724/900 548/1725/900 1301/1726/900 +f 1894/1727/900 548/1725/900 893/1724/900 +f 257/1728/1673 7/20/20 523/797/761 +f 523/797/761 7/20/20 1876/22/22 +f 256/865/829 257/1728/1673 523/797/761 +f 256/865/829 523/797/761 1860/820/784 +f 129/997/954 237/1729/1674 1518/329/299 +f 133/1730/1675 237/1729/1674 129/997/954 +f 1966/1731/1676 237/1729/1674 133/1730/1675 +f 135/1732/1677 1966/1731/1676 133/1730/1675 +f 1764/315/285 1966/1731/1676 135/1732/1677 +f 217/314/284 1966/1731/1676 1764/315/285 +f 219/1733/1678 1302/295/265 1014/260/230 +f 1014/260/230 1762/262/232 219/1733/1678 +f 1545/280/250 1706/278/248 198/1734/1679 +f 1545/280/250 198/1734/1679 200/1735/1680 +f 1545/280/250 200/1735/1680 113/1736/1681 +f 113/1736/1681 200/1735/1680 1656/281/251 +f 1656/281/251 200/1735/1680 202/1737/1682 +f 1656/281/251 202/1737/1682 1762/262/232 +f 181/1666/1615 1281/1665/1614 178/1738/1683 +f 1558/1739/1684 1556/1740/1685 1196/1741/1686 +f 1196/1741/1686 1556/1740/1685 1002/1742/1687 +f 894/1743/1688 1916/1744/1688 169/1745/1688 +f 1000/1746/1689 166/1747/1690 1557/1748/1691 +f 1195/1749/1692 1000/1746/1689 1557/1748/1691 +f 172/1750/1693 171/1751/1693 895/1752/1693 +f 1901/1753/1694 63/73/73 69/79/79 +f 961/83/83 54/63/63 390/462/432 +f 1599/1754/1695 68/78/78 67/77/77 +f 74/84/84 1777/82/82 704/1755/1696 +f 701/1208/1159 61/71/71 74/84/84 +f 367/437/407 380/450/420 369/439/409 +f 369/439/409 380/450/420 896/1756/1697 +f 369/439/409 896/1756/1697 351/870/834 +f 896/1756/1697 380/450/420 522/781/745 +f 354/416/386 896/1756/1697 522/781/745 +f 1454/685/649 896/1756/1697 354/416/386 +f 354/416/386 522/781/745 353/417/387 +f 522/781/745 379/449/419 529/878/842 +f 529/878/842 379/449/419 381/879/843 +f 353/417/387 522/781/745 529/878/842 +f 357/927/889 521/779/743 1582/928/890 +f 520/780/744 521/779/743 357/927/889 +f 356/1757/1698 520/780/744 357/927/889 +f 488/675/639 519/778/742 520/780/744 +f 488/675/639 520/780/744 489/677/641 +f 489/677/641 520/780/744 1458/420/390 +f 1199/423/393 519/778/742 488/675/639 +f 1200/1758/1699 521/779/743 519/778/742 +f 1582/928/890 521/779/743 1200/1758/1699 +f 460/546/516 364/1759/1700 527/866/830 +f 518/777/741 460/546/516 527/866/830 +f 360/426/396 518/777/741 527/866/830 +f 362/665/629 517/776/740 518/777/741 +f 362/665/629 518/777/741 360/426/396 +f 492/718/682 459/547/517 517/776/740 +f 363/717/681 459/547/517 492/718/682 +f 492/718/682 517/776/740 1053/429/399 +f 361/428/398 492/718/682 1053/429/399 +f 678/1032/989 677/1760/1701 791/1172/1127 +f 673/1548/1497 791/1172/1127 861/1465/1414 +f 678/1032/989 791/1172/1127 875/1547/1496 +f 875/1547/1496 791/1172/1127 673/1548/1497 +f 860/1464/1413 790/1171/1126 824/1367/1318 +f 824/1367/1318 790/1171/1126 676/1368/1319 +f 1394/1028/985 860/1464/1413 824/1367/1318 +f 674/1293/1244 861/1465/1414 860/1464/1413 +f 1727/1291/1242 861/1465/1414 674/1293/1244 +f 863/1468/1417 864/1467/1416 670/1550/1499 +f 672/1761/1702 863/1468/1417 670/1550/1499 +f 670/1550/1499 864/1467/1416 2024/1551/1500 +f 823/1301/1252 863/1468/1417 822/1300/1251 +f 822/1300/1251 863/1468/1417 1144/1025/982 +f 862/1466/1415 863/1468/1417 823/1301/1252 +f 1390/1021/978 862/1466/1415 823/1301/1252 +f 1390/1021/978 823/1301/1252 667/1022/979 +f 2024/1551/1500 864/1467/1416 668/1762/1703 +f 668/1762/1703 864/1467/1416 862/1466/1415 +f 682/1037/994 691/1046/1003 680/1763/1704 +f 1289/1764/1705 691/1046/1003 682/1037/994 +f 663/1015/972 1289/1764/1705 682/1037/994 +f 865/1469/1418 691/1046/1003 1289/1764/1705 +f 1288/1765/1706 897/1766/1707 663/1015/972 +f 665/1018/975 1288/1765/1706 663/1015/972 +f 665/1018/975 1460/1017/974 1288/1765/1706 +f 877/1561/1510 692/1047/1004 666/1767/1708 +f 666/1767/1708 692/1047/1004 865/1469/1418 +f 554/1562/1511 692/1047/1004 877/1561/1510 +f 158/216/190 173/237/207 160/217/191 +f 1333/213/187 451/532/502 156/214/188 +f 153/211/185 784/1153/1108 996/209/183 +f 839/1768/900 1983/1769/900 1681/1770/900 +f 841/1771/900 1983/1769/900 839/1768/900 +f 1300/1772/900 1983/1769/900 841/1771/900 +f 837/1773/900 839/1768/900 1681/1770/900 +f 845/1774/900 1300/1772/900 841/1771/900 +f 1301/1726/900 1300/1772/900 845/1774/900 +f 837/1773/900 1681/1770/900 1680/1775/900 +f 844/1776/900 837/1773/900 1680/1775/900 +f 849/1777/900 1301/1726/900 845/1774/900 +f 893/1724/900 1301/1726/900 849/1777/900 +f 844/1776/900 1680/1775/900 886/1723/1672 +f 848/1778/900 844/1776/900 886/1723/1672 +f 893/1724/900 849/1777/900 853/1779/900 +f 848/1778/900 886/1723/1672 891/1721/1670 +f 852/1780/900 848/1778/900 891/1721/1670 +f 1894/1727/900 893/1724/900 853/1779/900 +f 1894/1727/900 853/1779/900 1184/1781/900 +f 856/1782/900 852/1780/900 892/1783/900 +f 892/1783/900 852/1780/900 891/1721/1670 +f 1194/1784/900 1894/1727/900 1184/1781/900 +f 1194/1784/900 1184/1781/900 859/1785/900 +f 859/1785/900 856/1782/900 887/1786/900 +f 887/1786/900 856/1782/900 892/1783/900 +f 887/1786/900 1194/1784/900 859/1785/900 +f 496/1787/900 1908/1788/900 1909/1789/900 +f 498/1790/900 1908/1788/900 496/1787/900 +f 543/1791/900 1908/1788/900 498/1790/900 +f 1496/1792/900 496/1787/900 1909/1789/900 +f 502/1793/900 543/1791/900 498/1790/900 +f 542/1794/900 543/1791/900 502/1793/900 +f 1496/1792/900 1909/1789/900 1500/941/900 +f 501/1795/900 1496/1792/900 1500/941/900 +f 506/1796/900 542/1794/900 502/1793/900 +f 539/937/899 542/1794/900 506/1796/900 +f 501/1795/900 1500/941/900 547/938/900 +f 505/1797/900 501/1795/900 547/938/900 +f 539/937/899 506/1796/900 510/1798/900 +f 505/1797/900 547/938/900 540/940/900 +f 509/1799/900 505/1797/900 540/940/900 +f 545/934/896 539/937/899 510/1798/900 +f 545/934/896 510/1798/900 514/1800/900 +f 513/1801/900 509/1799/900 544/1802/900 +f 544/1802/900 509/1799/900 540/940/900 +f 546/1803/900 545/934/896 514/1800/900 +f 546/1803/900 514/1800/900 516/1804/900 +f 516/1804/900 513/1801/900 541/1805/900 +f 541/1805/900 513/1801/900 544/1802/900 +f 541/1805/900 546/1803/900 516/1804/900 +f 1649/1806/1709 1463/1807/1710 1132/1808/1711 +f 1307/1809/1712 1463/1807/1710 1649/1806/1709 +f 1132/1808/1711 1463/1807/1710 1464/1810/1713 +f 1132/1808/1711 1464/1810/1713 1503/1811/1714 +f 2000/1812/1715 1307/1809/1712 1649/1806/1709 +f 1309/1813/1716 1307/1809/1712 2000/1812/1715 +f 1135/1814/1717 1132/1808/1711 1503/1811/1714 +f 1682/1815/1718 1309/1813/1716 2000/1812/1715 +f 1685/1816/1719 1135/1814/1717 1503/1811/1714 +f 1682/1815/1718 2000/1812/1715 103/1817/1720 +f 103/1817/1720 1135/1814/1717 1685/1816/1719 +f 1682/1815/1718 103/1817/1720 1685/1816/1719 +f 1308/1818/1721 47/1819/1722 898/1820/1723 +f 1461/1821/1724 47/1819/1722 1308/1818/1721 +f 898/1820/1723 47/1819/1722 58/1822/1725 +f 900/1823/1726 58/1822/1725 1121/1824/1727 +f 898/1820/1723 58/1822/1725 900/1823/1726 +f 902/1825/1728 1462/1826/1729 899/1827/1730 +f 60/1828/1731 1462/1826/1729 902/1825/1728 +f 900/1823/1726 1121/1824/1727 1504/1829/1732 +f 1683/1830/1733 60/1828/1731 902/1825/1728 +f 62/1831/1734 60/1828/1731 1683/1830/1733 +f 901/1832/1735 46/1833/1736 1204/1834/1737 +f 901/1832/1735 1204/1834/1737 904/1835/1738 +f 1684/1836/1739 1202/1837/1740 903/1838/1741 +f 64/1839/1742 1202/1837/1740 1684/1836/1739 +f 1374/1840/1743 1061/1841/1744 78/1842/1745 +f 1062/1843/1746 1061/1841/1744 1374/1840/1743 +f 78/1842/1745 1061/1841/1744 907/1844/1747 +f 1063/1845/1748 1062/1843/1746 1374/1840/1743 +f 78/1842/1745 907/1844/1747 909/1846/1749 +f 1714/1847/1750 78/1842/1745 909/1846/1749 +f 1063/1845/1748 1374/1840/1743 965/1848/1751 +f 1108/1849/1752 1063/1845/1748 965/1848/1751 +f 911/1850/1753 1714/1847/1750 909/1846/1749 +f 965/1848/1751 1714/1847/1750 911/1850/1753 +f 1108/1849/1752 965/1848/1751 911/1850/1753 +f 906/1851/1754 1058/1852/1755 1060/1853/1756 +f 1947/1854/1757 1058/1852/1755 906/1851/1754 +f 905/1855/1758 66/1856/1759 65/1857/1760 +f 1064/1858/1761 1947/1854/1757 906/1851/1754 +f 1900/1859/1762 1947/1854/1757 1064/1858/1761 +f 1585/1860/1763 65/1857/1760 1311/1861/1764 +f 905/1855/1758 65/1857/1760 1585/1860/1763 +f 1585/1860/1763 1311/1861/1764 1313/1862/1765 +f 1107/1863/1766 391/1864/1767 908/1865/1768 +f 1105/1866/1769 391/1864/1767 1107/1863/1766 +f 1312/1867/1770 71/1868/1771 73/1869/1772 +f 75/1870/1773 392/1871/1774 910/1872/1775 +f 1314/1873/1776 73/1869/1772 75/1870/1773 +f 1312/1867/1770 73/1869/1772 1314/1873/1776 +f 1314/1873/1776 75/1870/1773 910/1872/1775 +f 87/1874/1777 1946/1875/1778 1688/1876/1779 +f 1123/1877/1780 1946/1875/1778 87/1874/1777 +f 1539/1878/1781 1946/1875/1778 1123/1877/1780 +f 87/1874/1777 1688/1876/1779 915/1879/1782 +f 1818/1880/1783 1539/1878/1781 1123/1877/1780 +f 1245/1881/1784 87/1874/1777 915/1879/1782 +f 1818/1880/1783 1123/1877/1780 1940/1882/1785 +f 1590/1883/1786 1245/1881/1784 915/1879/1782 +f 1821/1884/1787 1818/1880/1783 1940/1882/1785 +f 1940/1882/1785 1245/1881/1784 1821/1884/1787 +f 1821/1884/1787 1245/1881/1784 1590/1883/1786 +f 1540/1885/1788 1542/1886/1789 913/1887/1790 +f 1538/1888/1791 1542/1886/1789 1540/1885/1788 +f 1687/1889/1792 1542/1886/1789 1600/1890/1793 +f 913/1887/1790 1542/1886/1789 1687/1889/1792 +f 912/1891/1794 703/1892/1795 702/1893/1796 +f 1819/1894/1797 55/1895/1798 914/1896/1799 +f 70/1897/1800 55/1895/1798 1819/1894/1797 +f 1589/1898/1801 702/1893/1796 1850/1899/1802 +f 912/1891/1794 702/1893/1796 1589/1898/1801 +f 1820/1900/1803 1776/1901/1804 916/1902/1805 +f 72/1903/1806 1776/1901/1804 1820/1900/1803 +f 917/1904/1807 1850/1899/1802 1778/1905/1808 +f 1589/1898/1801 1850/1899/1802 917/1904/1807 +f 917/1904/1807 1778/1905/1808 918/1906/1809 +f 1808/200/174 1809/1907/1810 141/201/175 +f 141/201/175 1809/1907/1810 143/1908/1811 +f 143/1908/1811 1809/1907/1810 1757/1909/1812 +f 143/1908/1811 1757/1909/1812 145/1910/1813 +f 1987/1911/1814 921/1912/1814 142/1913/1814 +f 995/1914/1815 1758/1915/1816 1690/1916/1817 +f 1470/1917/1818 1904/1918/1818 1988/1919/1818 +f 995/1914/1815 1690/1916/1817 1577/1920/1819 +f 1466/1921/1820 1468/1922/1820 879/1923/1820 +f 880/1924/1821 1691/1925/1822 1692/1926/1823 +f 1693/1927/1824 1469/1928/1824 1467/1929/1824 +f 880/1924/1821 1692/1926/1823 881/1930/1825 +f 149/1931/1826 919/1932/1827 1807/1933/1828 +f 920/1934/1829 919/1932/1827 149/1931/1826 +f 149/1931/1826 1807/1933/1828 1903/1935/1830 +f 922/1936/1831 920/1934/1829 149/1931/1826 +f 923/1937/1832 149/1931/1826 1903/1935/1830 +f 924/1938/1833 149/1931/1826 923/1937/1832 +f 922/1936/1831 149/1931/1826 924/1938/1833 +f 56/66/66 50/59/59 43/51/51 49/58/58 +f 137/1939/1834 136/1940/1835 138/1941/1836 139/1942/1837 +f 2010/1943/1838 1071/1944/1839 925/1945/1840 +f 418/1946/1841 926/1947/1841 415/1948/1841 +f 1511/1949/1842 1073/1950/1843 1905/1951/1844 +f 2010/1943/1838 925/1945/1840 417/1952/1845 +f 417/1952/1845 925/1945/1840 1823/1953/1846 +f 1509/1954/1847 1511/1949/1842 1905/1951/1844 +f 417/1952/1845 1823/1953/1846 1569/1955/1848 +f 929/1956/1849 927/1957/1850 1353/1958/1851 +f 1353/1958/1851 927/1957/1850 269/1959/1852 +f 533/1960/1853 928/1961/1854 930/1962/1855 +f 533/1960/1853 930/1962/1855 535/1963/1856 +f 1523/1964/1857 1520/1965/1858 1355/1966/1859 +f 1355/1966/1859 1520/1965/1858 534/1967/1860 +f 137/1939/1834 1072/1968/1861 136/1940/1835 +f 1070/1969/1862 1072/1968/1861 137/1939/1834 +f 136/1940/1835 1072/1968/1861 1512/1970/1863 +f 1822/1971/1864 1070/1969/1862 137/1939/1834 +f 138/1941/1836 136/1940/1835 1512/1970/1863 +f 139/1942/1837 1822/1971/1864 137/1939/1834 +f 1521/1972/1865 138/1941/1836 1512/1970/1863 +f 1822/1971/1864 139/1942/1837 1522/1973/1866 +f 139/1942/1837 138/1941/1836 1522/1973/1866 +f 1522/1973/1866 138/1941/1836 1521/1972/1865 +f 88/1974/1867 122/1975/1868 1128/1976/1869 +f 121/1977/1870 122/1975/1868 88/1974/1867 +f 1128/1976/1869 122/1975/1868 1845/1978/1871 +f 91/1979/1872 121/1977/1870 88/1974/1867 +f 128/1980/1873 121/1977/1870 91/1979/1872 +f 973/1981/1874 1128/1976/1869 1845/1978/1871 +f 1662/1982/1875 128/1980/1873 91/1979/1872 +f 1913/1983/1876 973/1981/1874 1845/1978/1871 +f 1662/1982/1875 91/1979/1872 975/1984/1877 +f 975/1984/1877 973/1981/1874 134/1985/1878 +f 134/1985/1878 973/1981/1874 1913/1983/1876 +f 1662/1982/1875 975/1984/1877 134/1985/1878 +f 94/1986/1879 1695/1987/1880 1208/1988/1881 +f 98/1989/1882 1695/1987/1880 94/1986/1879 +f 1091/1990/1883 1695/1987/1880 98/1989/1882 +f 94/1986/1879 1208/1988/1881 1247/1991/1884 +f 1247/1991/1884 1208/1988/1881 934/1992/1885 +f 1380/1993/1886 1091/1990/1883 98/1989/1882 +f 1092/1994/1887 1091/1990/1883 1380/1993/1886 +f 1249/1995/1888 1247/1991/1884 934/1992/1885 +f 1473/1996/1889 1249/1995/1888 934/1992/1885 +f 1380/1993/1886 1249/1995/1888 1473/1996/1889 +f 1092/1994/1887 1380/1993/1886 1473/1996/1889 +f 1205/1997/1890 1694/1998/1891 1769/1999/1892 +f 1207/2000/1893 1694/1998/1891 1205/1997/1890 +f 826/2001/1894 932/2002/1895 933/2003/1896 +f 827/2004/1897 932/2002/1895 826/2001/1894 +f 831/2005/1898 931/2006/1899 830/2007/1900 +f 1957/2008/1901 931/2006/1899 831/2005/1898 +f 829/2009/1902 933/2003/1896 1093/2010/1903 +f 826/2001/1894 933/2003/1896 829/2009/1902 +f 1861/2011/1904 1957/2008/1901 831/2005/1898 +f 829/2009/1902 1093/2010/1903 832/2012/1905 +f 1474/2013/1906 1957/2008/1901 1861/2011/1904 +f 1812/2014/1907 935/2015/1908 936/2016/1909 +f 1472/2017/1910 1474/2013/1906 1861/2011/1904 +f 1812/2014/1907 936/2016/1909 835/2018/1911 +f 1238/2019/1912 106/2020/1913 104/2021/1914 +f 79/2022/1915 106/2020/1913 1238/2019/1912 +f 108/2023/1916 106/2020/1913 79/2022/1915 +f 82/2024/1917 108/2023/1916 79/2022/1915 +f 1238/2019/1912 104/2021/1914 112/2025/1918 +f 968/2026/1919 1238/2019/1912 112/2025/1918 +f 114/2027/1920 108/2023/1916 82/2024/1917 +f 114/2027/1920 82/2024/1917 84/2028/1921 +f 117/2029/1922 968/2026/1919 112/2025/1918 +f 114/2027/1920 84/2028/1921 116/2030/1923 +f 84/2028/1921 968/2026/1919 116/2030/1923 +f 116/2030/1923 968/2026/1919 117/2029/1922 +f 874/1546/1495 871/1542/1491 872/1543/1492 873/1545/1494 +f 255/577/541 8/21/21 7/20/20 +f 255/577/541 7/20/20 257/1728/1673 +f 256/865/829 255/577/541 257/1728/1673 +f 558/1610/1559 559/1609/1558 148/1611/1560 144/204/178 994/203/177 +f 561/1616/1565 562/1615/1564 563/1614/1563 560/1607/1556 +f 1890/1613/1562 562/1615/1564 51/65/65 1234/39/39 +o 3MF_Object.027_3MF_Mesh.010 +v 173.977295 179.030975 3.995728 +v 173.520111 183.555679 13.764374 +v -174.077728 178.894882 3.753052 +v -173.395020 184.668640 15.465744 +v -118.014900 144.459946 -5.108414 +v -118.257484 144.459946 -2.409943 +v -119.585121 144.459946 -6.284103 +v -18.284420 144.459946 -2.830231 +v -18.705963 144.459946 -5.203094 +v 117.627113 144.459946 -5.210495 +v -9.733801 144.459946 -2.858612 +v -9.292040 144.459946 -5.203094 +v 120.079247 144.459946 -7.111435 +v 119.245186 144.459946 -2.178329 +v -118.360031 145.926041 -2.580841 +v -18.178642 145.974640 -2.749908 +v -18.691750 145.639877 -5.084946 +v 106.486168 146.021103 -2.860535 +v 106.508469 145.713699 -5.160950 +v -9.308865 145.674362 -5.064743 +v -9.738590 146.008835 -2.771347 +v 117.585579 145.816574 -5.004456 +v -172.446472 187.311295 15.086029 +v -150.484009 185.762360 13.872757 +v -173.209595 186.349380 13.984024 +v -150.519409 188.929443 15.477966 +v -35.000824 187.470215 14.991348 +v -34.661091 200.020218 15.109726 +v -35.013702 185.621933 13.476898 +v -34.999229 179.607529 1.087402 +v -35.240158 171.467316 -2.757599 +v -35.000019 176.621445 -1.496338 +v -111.520752 159.007217 -2.786743 +v -106.117172 159.050140 -2.213501 +v -118.462585 152.596878 -2.751740 +v -122.148407 156.129959 -2.858810 +v -125.285797 158.217148 -2.852997 +v 0.000999 200.003876 16.191193 +v -123.258537 199.202057 15.107620 +v -126.711288 195.240372 15.100647 +v -126.916916 188.137039 15.163101 +v -101.476074 158.997787 -2.786530 +v 0.031748 186.019775 13.967545 +v 0.006447 180.260971 2.257843 +v -126.790733 186.022690 14.068268 +v 34.977959 173.263016 -2.690857 +v -0.775110 151.139297 -2.827667 +v 35.303604 162.879852 -2.837433 +v 38.622917 159.306870 -2.847534 +v -38.902843 159.292130 -2.851105 +v 125.591980 158.444092 -2.870087 +v 35.000198 176.619705 -1.497131 +v 34.991821 179.566208 1.060242 +v -104.428879 162.288376 -2.173080 +v -173.672668 180.579041 2.637024 +v -149.999023 184.411423 11.244202 +v -126.805412 179.665726 1.168411 +v -149.510925 186.201385 14.368011 +v -8.143902 200.247284 15.419098 +v -6.718032 193.202896 15.262070 +v -0.086586 188.566742 15.113098 +v -0.009981 192.508591 15.419098 +v -149.467865 189.076813 15.504990 +v -118.679520 149.579788 -7.474060 +v -120.219978 147.880753 -8.993530 +v -123.667480 152.393219 -8.968094 +v -120.681183 152.341980 -7.642319 +v -126.095383 155.287704 -6.774414 +v -123.087051 154.266769 -7.320343 +v -117.890717 146.047058 -5.280258 +v -174.034637 152.418900 -9.186539 +v -148.858551 151.176605 -9.147415 +v -173.670532 154.722610 -7.693344 +v -126.830139 173.301193 -2.713104 +v -173.773956 157.296127 -2.819168 +v -173.930145 172.612366 -2.791016 +v -126.838318 176.660461 -1.441132 +v -173.812897 177.315918 -1.054779 +v -108.412453 163.794296 -2.658142 +v -0.233046 208.158768 15.313629 +v -6.578559 207.070786 15.258499 +v -4.037556 206.218307 15.419098 +v -6.315241 203.868973 15.419098 +v -0.000978 215.914856 15.083740 +v -142.792267 216.030273 15.113022 +v -139.684143 204.435822 15.322266 +v -142.771820 208.577454 15.396622 +v -138.822449 199.083344 15.426971 +v -140.538269 193.958191 15.321976 +v -144.454803 190.260071 15.426743 +v -0.020703 216.723831 2.294220 +v -142.723755 216.830902 2.366608 +v -6.249663 195.995941 15.419098 +v -3.864022 193.687744 15.419098 +v 3.860786 206.324600 15.419098 +v 6.251190 204.011932 15.419098 +v 6.322022 196.144501 15.419098 +v 4.009516 193.753784 15.419098 +v 8.482998 199.641525 15.419098 +v 142.352600 218.011551 15.449219 +v 142.695160 218.585983 2.245193 +v -142.675568 218.616913 2.244598 +v -142.329285 217.916931 15.666168 +v -142.341217 216.134949 17.272064 +v 142.335541 216.329941 17.272064 +v 142.724060 216.797073 2.385696 +v -145.362518 148.379562 -9.142426 +v -118.888245 144.459946 -8.572861 +v -145.633545 144.459946 -8.852020 +v -120.388817 144.459946 -7.144775 +v -145.595612 144.459946 -7.284210 +v -120.836670 150.039352 -6.510559 +v -124.266541 152.832642 -6.429428 +v -122.534203 150.460831 -7.149307 +v -175.620880 152.271408 -7.140213 +v -175.235413 153.347824 -6.251282 +v -123.911606 155.336411 -1.520996 +v -174.458344 155.330917 -2.047272 +v -119.536064 149.029495 -2.168655 +v -121.149811 153.368973 -1.501999 +v -119.249878 150.222702 -1.354568 +v -118.865295 152.533890 -0.770828 +v -123.672081 156.610626 -0.788422 +v -118.356247 144.459946 -0.895615 +v -174.081512 156.726913 -0.878235 +v -174.025421 144.459946 -9.287239 +v -175.955597 144.459946 -7.533951 +v -176.249756 144.459946 -9.563721 +v -154.978851 144.459946 -9.139084 +v -154.163757 144.459946 -7.560364 +v -174.173645 172.569931 -0.748535 +v 123.808983 156.544662 -0.795166 +v 174.372070 172.884964 -0.812927 +v 174.141022 156.009827 -1.095566 +v 120.388931 154.015366 -0.836075 +v 118.707565 150.534195 -0.917953 +v 118.306694 144.459946 -1.041550 +v 174.150330 176.452667 0.851746 +v -174.242035 176.366135 0.703720 +v 173.429321 185.297073 15.932526 +v -173.077454 187.787796 17.178680 +v 172.887054 187.865601 17.173477 +v -157.649017 216.237274 17.053711 +v -169.684937 216.191666 17.021454 +v -173.124725 212.686996 16.998138 +v -157.306519 197.293716 17.181305 +v -0.000479 200.002350 17.272095 +v -142.643341 197.512436 17.272064 +v 142.700470 197.275055 17.272064 +v 157.282928 197.328690 17.195099 +v 169.373718 216.171600 17.070343 +v 157.617554 216.368942 16.969574 +v 173.253235 212.719879 16.972473 +v 145.390442 193.885254 17.272064 +v 148.374634 192.542099 17.272064 +v -154.364716 193.767578 17.050995 +v -145.358246 193.964874 17.272064 +v 154.624084 193.959076 17.099304 +v -151.514374 192.531754 17.112579 +v -148.293304 192.601654 17.272064 +v 151.702087 192.598511 17.117905 +v -157.660767 217.992325 15.535995 +v -157.313080 218.590958 2.245407 +v -170.211426 218.439713 2.245361 +v -167.465454 218.063629 15.411453 +v -175.309814 177.607437 -21.979881 +v -177.231720 158.420349 -21.957092 +v -177.187347 177.826599 -21.986816 +v -175.360016 158.651260 -21.912933 +v -176.656189 156.862915 -11.856300 +v -176.349304 153.983902 -7.560089 +v -175.760986 156.304718 -2.100845 +v -176.137909 177.649948 -2.090668 +v -177.108856 179.923157 -20.402573 +v -177.068451 194.296707 -19.624390 +v -176.688843 195.155533 -12.418839 +v -177.061707 205.731659 -19.581070 +v -176.680695 205.009094 -12.267998 +v -176.963226 207.917953 -17.675369 +v -176.962555 192.132187 -17.687881 +v -175.945618 186.287140 1.772705 +v -175.980804 211.188492 1.935394 +v -176.212799 194.984619 -3.345749 +v -175.931610 189.074341 1.993851 +v -176.204407 204.862579 -3.184753 +v -176.539001 153.458115 -9.659920 +v -175.166656 210.113556 15.427551 +v -175.074249 186.275681 14.946030 +v -174.547668 215.394348 2.246674 +v -171.163116 217.030396 15.521103 +v -173.979553 214.224670 15.534378 +v -154.093170 147.391678 -7.343475 +v -150.988068 150.259476 -7.379379 +v -152.622284 149.202271 -7.635880 +v -148.914978 150.221237 -7.423187 +v -147.107544 149.252563 -7.370621 +v -146.075134 147.206375 -7.651352 +v -175.567291 178.079102 0.508423 +v -175.681915 172.865875 -1.889816 +v -157.192322 216.106903 14.937363 +v -157.224243 208.591492 15.397400 +v -169.350220 215.398499 15.190399 +v -160.327637 204.417084 15.289795 +v -172.306976 213.103363 15.043869 +v -161.168030 199.079773 15.486954 +v -159.457031 193.959412 15.346954 +v -155.523621 190.236481 15.397354 +v -157.272736 216.829895 2.366959 +v -170.294708 216.459335 2.338470 +v -169.564240 215.806366 14.680832 +v -174.388947 155.203949 -8.151993 +v -174.914520 156.497894 -13.309059 +v -175.435608 157.259903 -20.643036 +v -175.204254 179.692398 -20.460358 +v -174.685181 204.834808 -12.401749 +v -175.145599 194.193405 -19.412857 +v -175.192078 205.671265 -19.540054 +v -174.677094 195.015488 -12.250000 +v -174.097748 185.947128 1.502045 +v -175.060059 207.694244 -17.748993 +v -175.094299 192.173981 -17.630180 +v -174.212585 205.005234 -3.362442 +v -174.093628 210.453476 1.139862 +v -174.063049 189.531281 1.434067 +v -174.821259 154.777222 -11.144905 +v -174.202423 195.162933 -3.202499 +v -175.045441 153.133102 -10.651009 +v -173.238464 210.232422 14.639053 +v -174.045868 187.622543 2.411682 +v -173.934875 212.002640 2.284058 +v -173.236725 213.802444 2.328262 +v -152.766083 150.461945 -9.146469 +v -154.837219 147.591446 -9.152130 +v -175.092438 144.459946 -10.503510 +v -150.863312 150.226547 -8.170181 +v -147.644989 149.626770 -8.194336 +v -153.928284 147.294556 -8.178833 +v -175.805756 156.314407 -12.498764 +v -153.626312 193.721268 15.546921 +v -156.764832 197.195343 15.556076 +v -143.234131 197.114777 15.556122 +v -146.371704 193.721268 15.546921 +v -149.999023 192.749344 15.546921 +v 150.491547 186.442978 14.594742 +v 172.620544 186.756577 14.663040 +v 173.146606 185.732468 13.340561 +v 172.989044 188.928879 15.141449 +v 150.533295 189.073288 15.500885 +v 34.997696 187.516159 14.983063 +v 35.311394 199.712296 15.111938 +v 34.983612 185.637238 13.505585 +v 114.866173 152.224930 -2.821106 +v 122.139359 156.107422 -2.877136 +v 118.464104 152.592285 -2.743347 +v 117.390862 146.005783 -2.772141 +v 122.911453 199.618958 15.114624 +v 125.803253 196.108185 15.125366 +v 126.068375 187.846329 15.082184 +v 126.121948 185.786224 13.735489 +v 150.001007 184.411652 11.244202 +v 173.645721 180.646545 2.801605 +v 126.082581 179.596939 1.061218 +v 149.513336 186.331085 14.508011 +v 6.812261 193.293274 15.419098 +v 149.469086 188.973907 15.482697 +v 119.020340 149.442719 -7.848373 +v 121.818047 151.021439 -8.994293 +v 120.156929 147.668015 -9.016281 +v 117.891380 146.098419 -7.176178 +v 123.827187 154.554398 -7.457870 +v 124.162277 152.927567 -8.725113 +v 120.424362 152.638138 -7.014603 +v 118.518776 150.344101 -6.113403 +v 149.202393 151.227203 -9.137405 +v 173.995819 152.388901 -9.172226 +v 173.675720 154.707214 -7.689087 +v 126.090576 155.318314 -6.696075 +v 173.944946 172.462662 -2.818466 +v 126.076294 173.290924 -2.703918 +v 173.853302 157.295944 -2.863037 +v 173.788055 177.255005 -1.108170 +v 126.084869 176.653137 -1.452148 +v 6.725748 206.806091 15.260559 +v 142.804291 215.935440 15.112244 +v 142.776154 208.592987 15.397247 +v 139.673035 204.419052 15.289780 +v 138.829102 199.083664 15.465149 +v 140.540344 193.958069 15.321976 +v 144.475616 190.237335 15.397430 +v 145.561859 148.857635 -9.154190 +v 145.486145 144.459946 -8.848633 +v 118.870903 144.459946 -8.556946 +v 145.626892 144.459946 -7.373077 +v 120.388962 148.532410 -6.715652 +v 123.169685 150.771835 -7.147339 +v 121.626457 151.128830 -6.329727 +v 124.274048 152.863998 -6.439560 +v 175.578735 152.257721 -7.133148 +v 174.810028 153.321060 -6.147827 +v 119.740341 144.809174 -6.374786 +v 124.137482 155.227829 -1.722504 +v 119.632652 150.117599 -2.032700 +v 121.268021 153.131607 -1.910461 +v 176.300079 144.459946 -9.751503 +v 175.873932 144.459946 -7.493057 +v 174.131653 144.459946 -9.385422 +v 154.358063 144.459946 -7.401794 +v 154.357452 144.459946 -8.847992 +v 167.156708 218.100800 15.479828 +v 170.567352 218.275436 2.249207 +v 157.324951 218.618484 2.244598 +v 157.670990 217.930847 15.651047 +v 177.190826 177.798950 -22.002823 +v 175.371552 158.708633 -21.955879 +v 175.278656 177.437820 -21.952667 +v 177.125885 157.994247 -21.760284 +v 176.273346 153.807678 -7.289139 +v 176.668091 157.043427 -12.206001 +v 176.029785 173.022873 -2.392929 +v 177.109436 179.897034 -20.379852 +v 175.863129 178.490952 0.192566 +v 176.690826 204.852249 -12.418839 +v 177.066650 194.288849 -19.572609 +v 177.066650 205.692581 -19.625946 +v 176.682709 194.998703 -12.268005 +v 176.966827 207.873230 -17.666344 +v 176.961700 192.082809 -17.653992 +v 175.931763 186.459213 2.035370 +v 176.214874 205.023163 -3.345749 +v 175.999481 210.490646 0.848312 +v 175.953278 189.231445 1.663193 +v 176.206757 195.145203 -3.184769 +v 176.214264 153.516586 -10.142799 +v 175.753326 156.328964 -2.099060 +v 175.098999 186.618729 15.121338 +v 175.143005 210.134766 15.371490 +v 175.879333 211.922104 2.117722 +v 171.171387 217.055786 15.484314 +v 174.327576 215.632416 2.247635 +v 174.045410 214.167542 15.498886 +v 147.413483 149.252258 -7.639404 +v 148.935364 150.265732 -7.381851 +v 151.177551 150.247971 -7.348282 +v 145.945801 147.519165 -7.304092 +v 152.946777 149.261505 -7.331924 +v 154.095398 147.374847 -7.349731 +v 160.317230 204.427307 15.333069 +v 157.228210 208.577454 15.396622 +v 157.195892 215.972794 15.071732 +v 169.959106 215.366776 15.087402 +v 172.333801 213.192993 14.877594 +v 173.155518 209.883148 15.016251 +v 161.174774 199.078888 15.446976 +v 159.459015 193.959442 15.346954 +v 155.533203 190.248886 15.426926 +v 167.279968 216.244080 14.619492 +v 157.277893 216.799225 2.384262 +v 170.358643 216.385590 2.367462 +v 174.395630 155.171066 -8.216202 +v 174.930084 156.454391 -13.241699 +v 175.309082 157.371964 -20.630287 +v 175.251007 179.735657 -20.495117 +v 175.183594 194.253540 -19.492767 +v 174.687073 195.173004 -12.401756 +v 175.171448 205.507797 -19.536667 +v 174.679779 204.992325 -12.250000 +v 174.095123 185.945847 1.525391 +v 175.097778 207.778473 -17.707932 +v 175.066162 192.154953 -17.463051 +v 174.104889 210.506195 1.174774 +v 174.214813 195.002548 -3.362427 +v 174.056976 189.519165 1.458801 +v 174.820190 154.823105 -11.182785 +v 174.205078 204.844727 -3.202393 +v 174.746338 152.903854 -10.451073 +v 174.016541 187.572418 2.445312 +v 173.944183 211.986542 2.279114 +v 173.278442 213.699600 2.338348 +v 153.122345 150.250961 -9.149078 +v 154.896057 147.383682 -9.151627 +v 174.782166 144.459946 -10.411438 +v 150.056244 150.391861 -8.187256 +v 153.542816 148.350113 -8.149872 +v 146.061737 147.283386 -8.188660 +v 175.838684 156.354935 -12.534431 +v 146.373718 193.721268 15.546921 +v 143.235260 197.195312 15.556091 +v 156.752258 197.105469 15.554199 +v 153.628326 193.721268 15.546921 +v 150.001007 192.749344 15.546921 +v -118.360031 145.926041 -2.580841 +v -118.360031 145.926041 -2.580841 +v -118.360031 145.926041 -2.580841 +v -18.178642 145.974640 -2.749908 +v -18.178642 145.974640 -2.749908 +v -173.209595 186.349380 13.984024 +v -157.660767 217.992325 15.535995 +v -157.313080 218.590958 2.245407 +v -142.675568 218.616913 2.244598 +v -142.723755 216.830902 2.366608 +v -157.272736 216.829895 2.366959 +v -148.858551 151.176605 -9.147415 +v -145.362518 148.379562 -9.142426 +v -119.585121 144.459946 -6.284103 +v -120.388817 144.459946 -7.144775 +v -154.978851 144.459946 -9.139084 +v -154.978851 144.459946 -9.139084 +v -154.163757 144.459946 -7.560364 +v -154.163757 144.459946 -7.560364 +v -175.309814 177.607437 -21.979881 +v -175.360016 158.651260 -21.912933 +v -177.108856 179.923157 -20.402573 +v -175.945618 186.287140 1.772705 +v -175.945618 186.287140 1.772705 +v -175.980804 211.188492 1.935394 +v -175.980804 211.188492 1.935394 +v -174.547668 215.394348 2.246674 +v -175.204254 179.692398 -20.460358 +v -175.192078 205.671265 -19.540054 +v -175.060059 207.694244 -17.748993 +v -174.093628 210.453476 1.139862 +v -174.093628 210.453476 1.139862 +v -174.821259 154.777222 -11.144905 +v -174.821259 154.777222 -11.144905 +v -175.045441 153.133102 -10.651009 +v -175.045441 153.133102 -10.651009 +v -170.294708 216.459335 2.338470 +v -173.236725 213.802444 2.328262 +v -152.766083 150.461945 -9.146469 +v -154.837219 147.591446 -9.152130 +v -175.805756 156.314407 -12.498764 +v 176.682709 194.998703 -12.268005 +v 176.682709 194.998703 -12.268005 +v 174.687073 195.173004 -12.401756 +v 174.687073 195.173004 -12.401756 +v 118.870903 144.459946 -8.556946 +v 118.870903 144.459946 -8.556946 +v 176.206757 195.145203 -3.184769 +v 176.206757 195.145203 -3.184769 +v 176.273346 153.807678 -7.289139 +v 175.753326 156.328964 -2.099060 +v 147.413483 149.252258 -7.639404 +v 147.413483 149.252258 -7.639404 +v 147.413483 149.252258 -7.639404 +v 148.935364 150.265732 -7.381851 +v 148.935364 150.265732 -7.381851 +v 145.945801 147.519165 -7.304092 +v 157.324951 218.618484 2.244598 +v 142.695160 218.585983 2.245193 +v 174.930084 156.454391 -13.241699 +v 175.309082 157.371964 -20.630287 +v 175.309082 157.371964 -20.630287 +v 175.873932 144.459946 -7.493057 +v 175.873932 144.459946 -7.493057 +v 175.097778 207.778473 -17.707932 +v 174.104889 210.506195 1.174774 +v 174.820190 154.823105 -11.182785 +v -9.733801 144.459946 -2.858612 +v -9.733801 144.459946 -2.858612 +v -9.292040 144.459946 -5.203094 +v -9.292040 144.459946 -5.203094 +v 106.486168 146.021103 -2.860535 +v -9.738590 146.008835 -2.771347 +v -9.738590 146.008835 -2.771347 +v -173.773956 157.296127 -2.819168 +v -173.773956 157.296127 -2.819168 +v -173.930145 172.612366 -2.791016 +v -145.633545 144.459946 -8.852020 +v -145.633545 144.459946 -8.852020 +v -145.595612 144.459946 -7.284210 +v -145.595612 144.459946 -7.284210 +v -176.680695 205.009094 -12.267998 +v -176.680695 205.009094 -12.267998 +v -176.204407 204.862579 -3.184753 +v -176.204407 204.862579 -3.184753 +v -176.656189 156.862915 -11.856300 +v -176.539001 153.458115 -9.659920 +v -174.685181 204.834808 -12.401749 +v -174.685181 204.834808 -12.401749 +v -175.094299 192.173981 -17.630180 +v -174.063049 189.531281 1.434067 +v -174.063049 189.531281 1.434067 +v -152.622284 149.202271 -7.635880 +v -152.622284 149.202271 -7.635880 +v -152.622284 149.202271 -7.635880 +v -150.863312 150.226547 -8.170181 +v -142.792267 216.030273 15.113022 +v -157.192322 216.106903 14.937363 +v 154.358063 144.459946 -7.401794 +v 154.358063 144.459946 -7.401794 +v 177.190826 177.798950 -22.002823 +v 177.125885 157.994247 -21.760284 +v 177.125885 157.994247 -21.760284 +v 177.125885 157.994247 -21.760284 +v 177.109436 179.897034 -20.379852 +v 176.214874 205.023163 -3.345749 +v 176.214874 205.023163 -3.345749 +v 175.879333 211.922104 2.117722 +v 174.327576 215.632416 2.247635 +v 152.946777 149.261505 -7.331924 +v 154.095398 147.374847 -7.349731 +v 174.679779 204.992325 -12.250000 +v 174.679779 204.992325 -12.250000 +v 174.214813 195.002548 -3.362427 +v 174.214813 195.002548 -3.362427 +v 174.205078 204.844727 -3.202393 +v 174.205078 204.844727 -3.202393 +v 174.056976 189.519165 1.458801 +v 174.056976 189.519165 1.458801 +v 174.016541 187.572418 2.445312 +v 145.626892 144.459946 -7.373077 +v 145.626892 144.459946 -7.373077 +v -118.356247 144.459946 -0.895615 +v -118.356247 144.459946 -0.895615 +v -177.231720 158.420349 -21.957092 +v -177.231720 158.420349 -21.957092 +v -177.187347 177.826599 -21.986816 +v -177.068451 194.296707 -19.624390 +v -177.061707 205.731659 -19.581070 +v -176.962555 192.132187 -17.687881 +v -176.212799 194.984619 -3.345749 +v -176.212799 194.984619 -3.345749 +v -154.093170 147.391678 -7.343475 +v -148.914978 150.221237 -7.423187 +v -169.350220 215.398499 15.190399 +v -172.306976 213.103363 15.043869 +v -175.435608 157.259903 -20.643036 +v -175.435608 157.259903 -20.643036 +v -174.677094 195.015488 -12.250000 +v -174.677094 195.015488 -12.250000 +v -174.202423 195.162933 -3.202499 +v -174.202423 195.162933 -3.202499 +v -18.284420 144.459946 -2.830231 +v -18.284420 144.459946 -2.830231 +v -18.705963 144.459946 -5.203094 +v -18.705963 144.459946 -5.203094 +v 176.690826 204.852249 -12.418839 +v 176.690826 204.852249 -12.418839 +v -18.691750 145.639877 -5.084946 +v -18.691750 145.639877 -5.084946 +v -118.888245 144.459946 -8.572861 +v -118.888245 144.459946 -8.572861 +v 125.591980 158.444092 -2.870087 +v 125.591980 158.444092 -2.870087 +v 125.591980 158.444092 -2.870087 +v 125.591980 158.444092 -2.870087 +v 173.853302 157.295944 -2.863037 +v 173.853302 157.295944 -2.863037 +v 170.567352 218.275436 2.249207 +v 176.966827 207.873230 -17.666344 +v 175.999481 210.490646 0.848312 +v 176.668091 157.043427 -12.206001 +v 176.214264 153.516586 -10.142799 +v -9.308865 145.674362 -5.064743 +v -9.308865 145.674362 -5.064743 +v 175.066162 192.154953 -17.463051 +v 173.944183 211.986542 2.279114 +v 173.278442 213.699600 2.338348 +v 150.056244 150.391861 -8.187256 +v 150.056244 150.391861 -8.187256 +v -174.025421 144.459946 -9.287239 +v -174.025421 144.459946 -9.287239 +v -170.211426 218.439713 2.245361 +v -176.963226 207.917953 -17.675369 +v -147.107544 149.252563 -7.370621 +v -174.097748 185.947128 1.502045 +v -174.097748 185.947128 1.502045 +v -174.212585 205.005234 -3.362442 +v -174.212585 205.005234 -3.362442 +v -173.934875 212.002640 2.284058 +v -175.092438 144.459946 -10.503510 +v -175.092438 144.459946 -10.503510 +v 172.620544 186.756577 14.663040 +v 173.146606 185.732468 13.340561 +v 172.989044 188.928879 15.141449 +v 106.508469 145.713699 -5.160950 +v -173.812897 177.315918 -1.054779 +v -0.020703 216.723831 2.294220 +v 145.561859 148.857635 -9.154190 +v 145.486145 144.459946 -8.848633 +v 145.486145 144.459946 -8.848633 +v 174.131653 144.459946 -9.385422 +v 174.131653 144.459946 -9.385422 +v 154.357452 144.459946 -8.847992 +v 154.357452 144.459946 -8.847992 +v 175.371552 158.708633 -21.955879 +v 175.371552 158.708633 -21.955879 +v 175.278656 177.437820 -21.952667 +v 157.195892 215.972794 15.071732 +v 167.279968 216.244080 14.619492 +v 157.277893 216.799225 2.384262 +v 170.358643 216.385590 2.367462 +v 175.171448 205.507797 -19.536667 +v 174.746338 152.903854 -10.451073 +v 174.782166 144.459946 -10.411438 +v 174.782166 144.459946 -10.411438 +v 114.866173 152.224930 -2.821106 +v 114.866173 152.224930 -2.821106 +v 117.390862 146.005783 -2.772141 +v 117.390862 146.005783 -2.772141 +v 117.390862 146.005783 -2.772141 +v 117.390862 146.005783 -2.772141 +v 173.645721 180.646545 2.801605 +v 173.788055 177.255005 -1.108170 +v 176.961700 192.082809 -17.653992 +v 175.953278 189.231445 1.663193 +v 175.953278 189.231445 1.663193 +v 123.169685 150.771835 -7.147339 +v 151.177551 150.247971 -7.348282 +v 151.177551 150.247971 -7.348282 +v 142.724060 216.797073 2.385696 +v 142.804291 215.935440 15.112244 +v 175.251007 179.735657 -20.495117 +v 174.095123 185.945847 1.525391 +v 174.095123 185.945847 1.525391 +v 120.079247 144.459946 -7.111435 +v 120.079247 144.459946 -7.111435 +v 118.464104 152.592285 -2.743347 +v 118.464104 152.592285 -2.743347 +v -173.672668 180.579041 2.637024 +v 122.139359 156.107422 -2.877136 +v -125.285797 158.217148 -2.852997 +v -176.688843 195.155533 -12.418839 +v -176.688843 195.155533 -12.418839 +v -174.045868 187.622543 2.411682 +v -147.644989 149.626770 -8.194336 +v -175.931610 189.074341 1.993851 +v -175.931610 189.074341 1.993851 +v 177.066650 194.288849 -19.572609 +v 177.066650 205.692581 -19.625946 +v -146.075134 147.206375 -7.651352 +v -146.075134 147.206375 -7.651352 +v 169.959106 215.366776 15.087402 +v 172.333801 213.192993 14.877594 +v 153.122345 150.250961 -9.149078 +v 153.542816 148.350113 -8.149872 +v -118.014900 144.459946 -5.108414 +v -118.014900 144.459946 -5.108414 +v -118.014900 144.459946 -5.108414 +v -118.014900 144.459946 -5.108414 +v -118.257484 144.459946 -2.409943 +v -118.257484 144.459946 -2.409943 +v -118.257484 144.459946 -2.409943 +v 119.245186 144.459946 -2.178329 +v -117.890717 146.047058 -5.280258 +v -117.890717 146.047058 -5.280258 +v -117.890717 146.047058 -5.280258 +v -0.000978 215.914856 15.083740 +v -175.955597 144.459946 -7.533951 +v -175.955597 144.459946 -7.533951 +v -176.249756 144.459946 -9.563721 +v -176.249756 144.459946 -9.563721 +v -176.137909 177.649948 -2.090668 +v 117.585579 145.816574 -5.004456 +v 117.585579 145.816574 -5.004456 +v 173.944946 172.462662 -2.818466 +v 117.627113 144.459946 -5.210495 +v 117.627113 144.459946 -5.210495 +v 176.300079 144.459946 -9.751503 +v 176.300079 144.459946 -9.751503 +v 175.931763 186.459213 2.035370 +v 175.931763 186.459213 2.035370 +v 175.183594 194.253540 -19.492767 +v 118.306694 144.459946 -1.041550 +v 118.306694 144.459946 -1.041550 +v -174.914520 156.497894 -13.309059 +v 173.155518 209.883148 15.016251 +v -122.148407 156.129959 -2.858810 +v -118.462585 152.596878 -2.751740 +v -175.145599 194.193405 -19.412857 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.126827 0.470570 +vt 0.128811 0.475789 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.999503 0.313531 +vt 0.998191 0.734951 +vt 0.000472 0.303064 +vt 0.002431 0.808348 +vt 0.015700 0.176639 +vt 0.018476 0.173792 +vt 0.013398 0.173224 +vt 0.002393 0.444563 +vt 0.015700 0.176639 +vt 0.000073 0.446664 +vt 0.021220 0.823760 +vt 0.006028 0.474404 +vt 0.003694 0.472541 +vt 0.025840 0.826348 +vt 0.019801 0.826486 +vt 0.013398 0.173224 +vt 0.016519 0.787219 +vt 0.018527 0.790671 +vt 0.006408 0.473628 +vt 0.006057 0.470868 +vt 0.018527 0.790671 +vt 0.006408 0.473628 +vt 0.006028 0.474404 +vt 0.021220 0.823760 +vt 0.023502 0.820249 +vt 0.019418 0.795574 +vt 0.096741 0.067790 +vt 0.095623 0.066533 +vt 0.103540 0.108419 +vt 0.112449 0.108053 +vt 0.034102 0.198487 +vt 0.028228 0.202090 +vt 0.031997 0.201293 +vt 0.038303 0.177416 +vt 0.036186 0.180114 +vt 0.029627 0.183328 +vt 0.021007 0.177308 +vt 0.024744 0.183706 +vt 0.019861 0.184083 +vt 0.113213 0.404453 +vt 0.111126 0.195287 +vt 0.106849 0.189325 +vt 0.096713 0.405897 +vt 0.096159 0.184347 +vt 0.030439 0.220942 +vt 0.026615 0.217971 +vt 0.030294 0.225021 +vt 0.096953 0.482397 +vt 0.073659 0.414773 +vt 0.078487 0.494356 +vt 0.093534 0.419438 +vt 0.096028 0.182741 +vt 0.096308 0.404802 +vt 0.058923 0.580457 +vt 0.062607 0.411755 +vt 0.018586 0.490065 +vt 0.036615 0.585790 +vt 0.015986 0.496086 +vt 0.037017 0.403085 +vt 0.002972 0.447899 +vt 0.028815 0.594002 +vt 0.011531 0.498402 +vt 0.031173 0.393151 +vt 0.029763 0.774726 +vt 0.025974 0.602381 +vt 0.012998 0.213512 +vt 0.016519 0.787219 +vt 0.029552 0.783852 +vt 0.009124 0.496418 +vt 0.006057 0.470868 +vt 0.015986 0.486115 +vt 0.008631 0.492528 +vt 0.000073 0.446664 +vt 0.003694 0.472541 +vt 0.065094 0.579391 +vt 0.067982 0.412872 +vt 0.071280 0.577609 +vt 0.074680 0.061419 +vt 0.099113 0.113620 +vt 0.079354 0.165347 +vt 0.101152 0.168546 +vt 0.106551 0.117223 +vt 0.102175 0.473799 +vt 0.108145 0.471632 +vt 0.109585 0.423431 +vt 0.098076 0.482243 +vt 0.108781 0.421269 +vt 0.095194 0.420267 +vt 0.100705 0.481815 +vt 0.102823 0.170081 +vt 0.113884 0.114853 +vt 0.025355 0.176904 +vt 0.031038 0.170877 +vt 0.023801 0.174089 +vt 0.029242 0.175420 +vt 0.036776 0.171320 +vt 0.033082 0.173412 +vt 0.021007 0.177308 +vt 0.038218 0.050573 +vt 0.033775 0.111196 +vt 0.039566 0.052977 +vt 0.036186 0.180114 +vt 0.038623 0.177166 +vt 0.029627 0.183328 +vt 0.024744 0.183706 +vt 0.068222 0.163340 +vt 0.058708 0.060152 +vt 0.038504 0.061165 +vt 0.040825 0.164103 +vt 0.073468 0.164205 +vt 0.065265 0.060338 +vt 0.047533 0.222688 +vt 0.051239 0.214410 +vt 0.046973 0.211719 +vt 0.047384 0.204812 +vt 0.045093 0.225853 +vt 0.044911 0.227657 +vt 0.132467 0.512784 +vt 0.134899 0.509084 +vt 0.129303 0.497130 +vt 0.134221 0.484571 +vt 0.133174 0.476146 +vt 0.132004 0.480740 +vt 0.141350 0.487937 +vt 0.141248 0.151053 +vt 0.123373 0.410466 +vt 0.131510 0.154689 +vt 0.136802 0.152683 +vt 0.121889 0.405551 +vt 0.135651 0.485552 +vt 0.124538 0.416733 +vt 0.119948 0.181082 +vt 0.128137 0.152304 +vt 0.124107 0.191732 +vt 0.114480 0.175886 +vt 0.118704 0.143810 +vt 0.113001 0.130111 +vt 0.148445 0.493948 +vt 0.152534 0.152518 +vt 0.141248 0.151053 +vt 0.141350 0.487937 +vt 0.077546 0.177773 +vt 0.076148 0.402034 +vt 0.105833 0.474500 +vt 0.102691 0.478908 +vt 0.142286 0.848665 +vt 0.139854 0.843697 +vt 0.141714 0.151178 +vt 0.141187 0.146297 +vt 0.130806 0.147618 +vt 0.132170 0.848966 +vt 0.139854 0.843697 +vt 0.141714 0.151178 +vt 0.148445 0.493948 +vt 0.147558 0.151397 +vt 0.152534 0.152518 +vt 0.151978 0.842835 +vt 0.144859 0.843956 +vt 0.149915 0.499757 +vt 0.030425 0.121491 +vt 0.020049 0.174228 +vt 0.026304 0.123328 +vt 0.020049 0.174228 +vt 0.026304 0.123328 +vt 0.020111 0.173194 +vt 0.027189 0.122429 +vt 0.020500 0.168528 +vt 0.022891 0.164058 +vt 0.021850 0.167311 +vt 0.020111 0.173194 +vt 0.018476 0.173792 +vt 0.030489 0.042627 +vt 0.032696 0.040362 +vt 0.019971 0.161637 +vt 0.031453 0.039459 +vt 0.013398 0.173224 +vt 0.016597 0.169945 +vt 0.017432 0.165813 +vt 0.016461 0.169108 +vt 0.015827 0.168154 +vt 0.019640 0.160615 +vt 0.013762 0.171926 +vt 0.032456 0.037990 +vt 0.029178 0.052062 +vt 0.030988 0.051017 +vt 0.031716 0.049736 +vt 0.027327 0.088499 +vt 0.028086 0.089765 +vt 0.019486 0.020858 +vt 0.024408 0.838339 +vt 0.022053 0.976186 +vt 0.036738 0.959724 +vt 0.021448 0.833089 +vt 0.021386 0.829961 +vt 0.013762 0.171926 +vt 0.019257 0.827448 +vt 0.994666 0.148671 +vt 0.994463 0.193908 +vt 0.009728 0.126314 +vt 0.010033 0.193908 +vt 1.000000 0.177902 +vt 0.000000 0.171516 +vt 0.997930 0.828484 +vt 0.002668 1.000000 +vt 0.002590 0.940754 +vt 0.997517 0.937512 +vt 0.140333 0.950271 +vt 0.135894 0.046907 +vt 0.140926 0.961736 +vt 0.113294 0.069824 +vt 0.114330 0.063786 +vt 0.115717 0.061946 +vt 0.124436 0.079955 +vt 0.140295 0.142012 +vt 0.138508 0.487839 +vt 0.136902 0.498119 +vt 0.144074 0.856942 +vt 0.129531 0.918981 +vt 0.119242 0.934813 +vt 0.119268 0.930847 +vt 0.120870 0.936539 +vt 0.140908 0.870428 +vt 0.139421 0.883007 +vt 0.137738 0.506180 +vt 0.127493 0.092538 +vt 0.136592 0.128467 +vt 0.140156 0.497859 +vt 0.132562 0.907404 +vt 0.131541 0.103725 +vt 0.134086 0.116057 +vt 0.136278 0.896072 +vt 0.113398 0.068166 +vt 0.111386 0.065822 +vt 0.111021 0.063374 +vt 0.113632 0.064465 +vt 0.045038 0.039643 +vt 0.044455 0.039431 +vt 0.041482 0.018939 +vt 0.043473 0.021622 +vt 0.039049 0.034238 +vt 0.033374 0.040947 +vt 0.044455 0.039431 +vt 0.041482 0.018939 +vt 0.032399 0.038979 +vt 0.054750 0.026896 +vt 0.044409 0.042753 +vt 0.101100 0.054338 +vt 0.100932 0.053932 +vt 0.101639 0.054838 +vt 0.102431 0.055377 +vt 0.101625 0.055012 +vt 0.100859 0.054287 +vt 0.078466 0.037630 +vt 0.108312 0.059841 +vt 0.100323 0.052421 +vt 0.096601 0.044684 +vt 0.104320 0.056859 +vt 0.035535 0.042844 +vt 0.030988 0.051017 +vt 0.031716 0.049736 +vt 0.115751 0.061024 +vt 0.123954 0.035364 +vt 0.110208 0.061696 +vt 0.114139 0.063394 +vt 0.114854 0.062215 +vt 0.031716 0.049736 +vt 0.028227 0.091434 +vt 0.026425 0.103041 +vt 0.027988 0.096202 +vt 0.026173 0.110739 +vt 0.026173 0.110739 +vt 0.026403 0.117189 +vt 0.027725 0.121391 +vt 0.027189 0.122429 +vt 0.028086 0.089765 +vt 0.113398 0.068166 +vt 0.133558 0.029073 +vt 0.058555 0.019027 +vt 0.075267 0.006670 +vt 0.033578 0.027544 +vt 0.049197 0.009256 +vt 0.054750 0.026896 +vt 0.020049 0.174228 +vt 0.015700 0.176639 +vt 0.040825 0.164103 +vt 0.037146 0.167685 +vt 0.038504 0.061165 +vt 0.018494 0.180118 +vt 0.066658 0.397715 +vt 0.068753 0.176466 +vt 0.046879 0.180215 +vt 0.045391 0.387045 +vt 0.049818 0.392522 +vt 0.071389 0.400294 +vt 0.072927 0.176599 +vt 0.113195 0.068333 +vt 0.111132 0.066248 +vt 0.115436 0.071313 +vt 0.113579 0.073541 +vt 0.110507 0.065461 +vt 0.114655 0.076484 +vt 0.110359 0.084548 +vt 0.108846 0.095624 +vt 0.112449 0.065350 +vt 0.110637 0.063367 +vt 0.113195 0.068333 +vt 0.110966 0.066062 +vt 0.058708 0.060152 +vt 0.045038 0.039643 +vt 0.041012 0.051556 +vt 0.043140 0.036159 +vt 0.042713 0.023659 +vt 0.043473 0.021622 +vt 0.044763 0.041352 +vt 0.065265 0.060338 +vt 0.102425 0.055059 +vt 0.101694 0.054750 +vt 0.101170 0.054277 +vt 0.100937 0.053758 +vt 0.074680 0.061419 +vt 0.076768 0.048286 +vt 0.101747 0.054767 +vt 0.101013 0.054231 +vt 0.104331 0.057212 +vt 0.107286 0.059743 +vt 0.095380 0.052095 +vt 0.040427 0.042967 +vt 0.099561 0.053127 +vt 0.037363 0.045914 +vt 0.038504 0.061165 +vt 0.109787 0.065451 +vt 0.095623 0.066533 +vt 0.087224 0.050615 +vt 0.108402 0.061059 +vt 0.110507 0.065461 +vt 0.109502 0.062140 +vt 0.033775 0.098520 +vt 0.031188 0.090492 +vt 0.029178 0.052062 +vt 0.027327 0.088499 +vt 0.111132 0.066248 +vt 0.030807 0.051677 +vt 0.029178 0.052062 +vt 0.019257 0.827448 +vt 0.013762 0.171926 +vt 0.029591 0.103942 +vt 0.029115 0.115552 +vt 0.027988 0.096202 +vt 0.026403 0.117189 +vt 0.027725 0.121391 +vt 0.027988 0.096202 +vt 0.028227 0.091434 +vt 0.029366 0.091490 +vt 0.027189 0.122429 +vt 0.026304 0.123328 +vt 0.027725 0.121391 +vt 0.028086 0.089765 +vt 0.030425 0.121491 +vt 0.029115 0.115552 +vt 0.033775 0.111196 +vt 0.029591 0.103942 +vt 0.033775 0.098520 +vt 0.027988 0.096202 +vt 0.031188 0.090492 +vt 0.027327 0.088499 +vt 0.104331 0.057212 +vt 0.102431 0.055377 +vt 0.104320 0.056859 +vt 0.102425 0.055059 +vt 0.100932 0.053932 +vt 0.102425 0.055059 +vt 0.102431 0.055377 +vt 0.100937 0.053758 +vt 0.100323 0.052421 +vt 0.100937 0.053758 +vt 0.100932 0.053932 +vt 0.099561 0.053127 +vt 0.099561 0.053127 +vt 0.104331 0.057212 +vt 0.104320 0.056859 +vt 0.100323 0.052421 +vt 0.076768 0.048286 +vt 0.044763 0.041352 +vt 0.044409 0.042753 +vt 0.078466 0.037630 +vt 0.078466 0.037630 +vt 0.076768 0.048286 +vt 0.087224 0.050615 +vt 0.095380 0.052095 +vt 0.096601 0.044684 +vt 0.101013 0.054231 +vt 0.100859 0.054287 +vt 0.096601 0.044684 +vt 0.095380 0.052095 +vt 0.101100 0.054338 +vt 0.101170 0.054277 +vt 0.101694 0.054750 +vt 0.101639 0.054838 +vt 0.101625 0.055012 +vt 0.101747 0.054767 +vt 0.107286 0.059743 +vt 0.108312 0.059841 +vt 0.108312 0.059841 +vt 0.107286 0.059743 +vt 0.108402 0.061059 +vt 0.111386 0.065822 +vt 0.111021 0.063374 +vt 0.110637 0.063367 +vt 0.112449 0.065350 +vt 0.110208 0.061696 +vt 0.109502 0.062140 +vt 0.042713 0.023659 +vt 0.041482 0.018939 +vt 0.041113 0.035670 +vt 0.039049 0.034238 +vt 0.037363 0.045914 +vt 0.035535 0.042844 +vt 0.030807 0.051677 +vt 0.030988 0.051017 +vt 0.030807 0.051677 +vt 0.043140 0.036159 +vt 0.040427 0.042967 +vt 0.040427 0.042967 +vt 0.041113 0.035670 +vt 0.037363 0.045914 +vt 0.120278 0.082568 +vt 0.132823 0.141133 +vt 0.127918 0.126141 +vt 0.121543 0.096046 +vt 0.125544 0.110753 +vt 0.042713 0.023659 +vt 0.110542 0.890604 +vt 0.100396 0.931078 +vt 0.101511 0.930220 +vt 0.102045 0.929816 +vt 0.117593 0.890046 +vt 0.024626 0.816140 +vt 0.031834 0.797374 +vt 0.028230 0.806757 +vt 0.040236 0.819184 +vt 0.033893 0.816167 +vt 0.037195 0.800949 +vt 0.033893 0.816167 +vt 0.031834 0.797374 +vt 0.028230 0.806757 +vt 0.024626 0.816140 +vt 0.024626 0.816140 +vt 0.028230 0.806757 +vt 0.031834 0.797374 +vt 0.022155 0.797644 +vt 0.024626 0.816140 +vt 0.023502 0.820249 +vt 0.019418 0.795574 +vt 0.022155 0.797644 +vt 0.115330 0.802186 +vt 0.112438 0.588646 +vt 0.111472 0.808305 +vt 0.111506 0.588286 +vt 0.100258 0.813387 +vt 0.110724 0.586951 +vt 0.095676 0.587794 +vt 0.092240 0.573405 +vt 0.078044 0.499667 +vt 0.097506 0.511576 +vt 0.095021 0.588448 +vt 0.100303 0.815104 +vt 0.103315 0.885257 +vt 0.082896 0.833048 +vt 0.080556 0.936569 +vt 0.105016 0.830301 +vt 0.111348 0.881181 +vt 0.109535 0.570331 +vt 0.108725 0.523847 +vt 0.102355 0.520295 +vt 0.094272 0.572932 +vt 0.099023 0.512143 +vt 0.106701 0.828560 +vt 0.118523 0.883316 +vt 0.030293 0.823097 +vt 0.029038 0.825320 +vt 0.033250 0.826293 +vt 0.026202 0.822453 +vt 0.036032 0.828732 +vt 0.038134 0.826544 +vt 0.034066 0.822786 +vt 0.030538 0.820823 +vt 0.038194 0.889000 +vt 0.042310 0.948525 +vt 0.043822 0.947193 +vt 0.041241 0.831279 +vt 0.040236 0.819184 +vt 0.041312 0.827111 +vt 0.033893 0.816167 +vt 0.024626 0.816140 +vt 0.042702 0.821584 +vt 0.063047 0.938535 +vt 0.072302 0.835379 +vt 0.044689 0.834809 +vt 0.043452 0.938203 +vt 0.070077 0.938531 +vt 0.077729 0.834304 +vt 0.133383 0.517971 +vt 0.129241 0.517942 +vt 0.127284 0.521306 +vt 0.140681 0.845221 +vt 0.142048 0.505852 +vt 0.123355 0.582552 +vt 0.124299 0.576579 +vt 0.138099 0.846763 +vt 0.121586 0.587973 +vt 0.136103 0.844165 +vt 0.133615 0.846117 +vt 0.120860 0.821070 +vt 0.127055 0.812301 +vt 0.128951 0.803023 +vt 0.123765 0.854107 +vt 0.118011 0.867342 +vt 0.151978 0.842835 +vt 0.149915 0.499757 +vt 0.142048 0.505852 +vt 0.140681 0.845221 +vt 0.073787 0.591134 +vt 0.080915 0.820767 +vt 0.105934 0.519273 +vt 0.102711 0.515204 +vt 0.100755 0.512243 +vt 0.035412 0.878296 +vt 0.030824 0.875590 +vt 0.025617 0.825443 +vt 0.030824 0.875590 +vt 0.025617 0.825443 +vt 0.031584 0.876558 +vt 0.026263 0.829820 +vt 0.025840 0.826348 +vt 0.027060 0.833528 +vt 0.026095 0.832614 +vt 0.027577 0.835714 +vt 0.034655 0.955650 +vt 0.036884 0.957915 +vt 0.024922 0.826630 +vt 0.025840 0.826348 +vt 0.025285 0.837740 +vt 0.022377 0.830335 +vt 0.019801 0.826486 +vt 0.022956 0.833598 +vt 0.019257 0.827448 +vt 0.035467 0.947664 +vt 0.033869 0.946843 +vt 0.036254 0.949129 +vt 0.032379 0.910186 +vt 0.032445 0.909012 +vt 0.118772 0.934468 +vt 0.116772 0.935644 +vt 0.117419 0.933663 +vt 0.119177 0.931777 +vt 0.047897 0.962359 +vt 0.048930 0.962080 +vt 0.047458 0.977946 +vt 0.045526 0.979843 +vt 0.037208 0.956982 +vt 0.043210 0.965530 +vt 0.047897 0.962359 +vt 0.036070 0.969263 +vt 0.045526 0.979843 +vt 0.047854 0.959051 +vt 0.060093 0.978132 +vt 0.107047 0.943161 +vt 0.105618 0.943765 +vt 0.106318 0.943455 +vt 0.105144 0.944224 +vt 0.106350 0.943280 +vt 0.105379 0.943749 +vt 0.086130 0.957569 +vt 0.110260 0.942539 +vt 0.112963 0.939691 +vt 0.101934 0.950838 +vt 0.104252 0.946698 +vt 0.040254 0.955125 +vt 0.035467 0.947664 +vt 0.036254 0.949129 +vt 0.037012 0.958959 +vt 0.129948 0.959417 +vt 0.121125 0.937499 +vt 0.114547 0.938949 +vt 0.119310 0.935347 +vt 0.115981 0.937079 +vt 0.120102 0.936359 +vt 0.031698 0.881847 +vt 0.030271 0.888292 +vt 0.030271 0.888292 +vt 0.030650 0.895970 +vt 0.027060 0.833528 +vt 0.030650 0.895970 +vt 0.031806 0.877622 +vt 0.031219 0.902701 +vt 0.032607 0.907475 +vt 0.036254 0.949129 +vt 0.031584 0.876558 +vt 0.032445 0.909012 +vt 0.132947 0.977009 +vt 0.076069 0.993360 +vt 0.048978 0.989828 +vt 0.037012 0.958959 +vt 0.037208 0.956982 +vt 0.025617 0.825443 +vt 0.021220 0.823760 +vt 0.043452 0.938203 +vt 0.044689 0.834809 +vt 0.023502 0.820249 +vt 0.072147 0.822445 +vt 0.063388 0.595335 +vt 0.052930 0.785223 +vt 0.045796 0.770706 +vt 0.045327 0.600927 +vt 0.041216 0.606913 +vt 0.068410 0.592822 +vt 0.076478 0.822053 +vt 0.120389 0.926621 +vt 0.119632 0.931499 +vt 0.121795 0.928740 +vt 0.117305 0.933093 +vt 0.116722 0.933346 +vt 0.116300 0.933227 +vt 0.118892 0.922598 +vt 0.115089 0.913833 +vt 0.113800 0.901970 +vt 0.117410 0.932716 +vt 0.118319 0.934119 +vt 0.119632 0.931499 +vt 0.116451 0.935574 +vt 0.044628 0.948678 +vt 0.048930 0.962080 +vt 0.043452 0.938203 +vt 0.046446 0.961560 +vt 0.063047 0.938535 +vt 0.047458 0.977946 +vt 0.046609 0.975489 +vt 0.048805 0.960345 +vt 0.105661 0.943841 +vt 0.106354 0.943586 +vt 0.105354 0.944208 +vt 0.107379 0.943314 +vt 0.070077 0.938531 +vt 0.082888 0.948941 +vt 0.106414 0.943578 +vt 0.105485 0.943877 +vt 0.112951 0.939261 +vt 0.104360 0.945597 +vt 0.099989 0.945548 +vt 0.043827 0.955471 +vt 0.109811 0.942440 +vt 0.041490 0.951698 +vt 0.116300 0.933227 +vt 0.080556 0.936569 +vt 0.091720 0.946680 +vt 0.102045 0.929816 +vt 0.100396 0.931078 +vt 0.114088 0.937890 +vt 0.115261 0.936728 +vt 0.116722 0.933346 +vt 0.117305 0.933093 +vt 0.038030 0.901527 +vt 0.035483 0.908464 +vt 0.033869 0.946843 +vt 0.032379 0.910186 +vt 0.117410 0.932716 +vt 0.101511 0.930220 +vt 0.035386 0.947032 +vt 0.033869 0.946843 +vt 0.033850 0.891968 +vt 0.030271 0.888292 +vt 0.031698 0.881847 +vt 0.033850 0.891968 +vt 0.033889 0.904884 +vt 0.031219 0.902701 +vt 0.033850 0.891968 +vt 0.030650 0.895970 +vt 0.032607 0.907475 +vt 0.031698 0.881847 +vt 0.031806 0.877622 +vt 0.032659 0.877463 +vt 0.031584 0.876558 +vt 0.030824 0.875590 +vt 0.032379 0.910186 +vt 0.032445 0.909012 +vt 0.035412 0.878296 +vt 0.031698 0.881847 +vt 0.038030 0.901527 +vt 0.033889 0.904884 +vt 0.110260 0.942539 +vt 0.107047 0.943161 +vt 0.107379 0.943314 +vt 0.109811 0.942440 +vt 0.105354 0.944208 +vt 0.105144 0.944224 +vt 0.107047 0.943161 +vt 0.107379 0.943314 +vt 0.105354 0.944208 +vt 0.104360 0.945597 +vt 0.105144 0.944224 +vt 0.104252 0.946698 +vt 0.110260 0.942539 +vt 0.109811 0.942440 +vt 0.104252 0.946698 +vt 0.104360 0.945597 +vt 0.086130 0.957569 +vt 0.047854 0.959051 +vt 0.048805 0.960345 +vt 0.082888 0.948941 +vt 0.082888 0.948941 +vt 0.086130 0.957569 +vt 0.091720 0.946680 +vt 0.101934 0.950838 +vt 0.099989 0.945548 +vt 0.105379 0.943749 +vt 0.105485 0.943877 +vt 0.099989 0.945548 +vt 0.101934 0.950838 +vt 0.105618 0.943765 +vt 0.105661 0.943841 +vt 0.106318 0.943455 +vt 0.106354 0.943586 +vt 0.106414 0.943578 +vt 0.106350 0.943280 +vt 0.112963 0.939691 +vt 0.112951 0.939261 +vt 0.114547 0.938949 +vt 0.114088 0.937890 +vt 0.116772 0.935644 +vt 0.117419 0.933663 +vt 0.116451 0.935574 +vt 0.118319 0.934119 +vt 0.115261 0.936728 +vt 0.115981 0.937079 +vt 0.043210 0.965530 +vt 0.045526 0.979843 +vt 0.044821 0.963189 +vt 0.040254 0.955125 +vt 0.046609 0.975489 +vt 0.046446 0.961560 +vt 0.043827 0.955471 +vt 0.041490 0.951698 +vt 0.035386 0.947032 +vt 0.035467 0.947664 +vt 0.035386 0.947032 +vt 0.125327 0.916186 +vt 0.137432 0.857089 +vt 0.126714 0.902767 +vt 0.132330 0.872255 +vt 0.130188 0.888579 +vt 0.045526 0.979843 +vt 0.047458 0.977946 +vt 0.046609 0.975489 +vt 0.002890 0.445254 +vt 0.002393 0.444563 +vt 0.000073 0.446664 +vt 0.002972 0.447899 +vt 0.003694 0.472541 +vt 0.006028 0.474404 +vt 0.006057 0.470868 +vt 0.006408 0.473628 +vt 0.129351 0.497315 +vt 0.129472 0.497470 +vt 0.129642 0.497533 +vt 0.108151 0.522106 +vt 0.129816 0.497480 +vt 0.129335 0.496941 +vn -0.0105 0.2965 0.9550 +vn -0.0103 0.2908 0.9567 +vn -0.0016 0.2913 0.9566 +vn -0.0017 0.2953 0.9554 +vn -0.0000 0.3434 0.9392 +vn -0.0000 0.3334 0.9428 +vn 0.0003 0.3354 0.9421 +vn -0.0003 0.3353 0.9421 +vn -0.0000 0.3335 0.9428 +vn -0.0004 0.3388 0.9409 +vn -0.0006 0.3453 0.9385 +vn -0.0005 0.3388 0.9408 +vn -0.0005 0.3508 0.9365 +vn -0.0017 0.2934 0.9560 +vn -0.0016 0.2953 0.9554 +vn -0.0105 0.2932 0.9560 +vn 0.0143 0.3350 0.9421 +vn 0.0133 0.3226 0.9464 +vn -0.0143 0.3353 0.9420 +vn -0.0132 0.3212 0.9469 +vn -0.0107 0.2956 0.9553 +vn -0.0104 0.2878 0.9576 +vn -0.0016 0.2866 0.9581 +vn 0.0104 0.2934 0.9559 +vn -0.0008 0.2934 0.9560 +vn -0.0008 0.2887 0.9574 +vn 0.0108 0.2973 0.9547 +vn 0.0103 0.2874 0.9578 +vn 0.0094 0.2915 0.9565 +vn 0.0094 0.2956 0.9553 +vn -0.0008 0.2954 0.9554 +vn -0.0008 0.2914 0.9566 +vn 0.0095 0.2956 0.9553 +vn -0.0008 0.2953 0.9554 +vn 0.0104 0.2955 0.9553 +vn -0.0131 0.3260 0.9453 +vn -0.0133 0.3267 0.9450 +vn -0.0124 0.3260 0.9453 +vn -0.0114 0.3278 0.9447 +vn -0.0097 0.3148 0.9491 +vn -0.0103 0.3033 0.9529 +vn -0.0091 0.3137 0.9495 +vn -0.0109 0.3136 0.9495 +vn -0.0106 0.3098 0.9507 +vn -0.0104 0.2965 0.9550 +vn -0.0103 0.2878 0.9576 +vn -0.0026 0.3456 0.9384 +vn -0.0093 0.3443 0.9388 +vn -0.0096 0.3383 0.9410 +vn -0.0026 0.3265 0.9452 +vn -0.0097 0.3272 0.9449 +vn -0.0088 0.3148 0.9491 +vn -0.0000 0.3262 0.9453 +vn -0.0030 0.3422 0.9396 +vn 0.0019 0.3408 0.9402 +vn -0.0028 0.3265 0.9452 +vn -0.0097 0.3260 0.9453 +vn 0.0030 0.3397 0.9405 +vn -0.0031 0.3368 0.9416 +vn -0.0001 0.3008 0.9537 +vn 0.0030 0.3218 0.9468 +vn -0.0016 0.2912 0.9567 +vn 0.0034 0.3155 0.9489 +vn -0.0033 0.3155 0.9489 +vn 0.0109 0.3140 0.9494 +vn 0.0093 0.2915 0.9565 +vn -0.0009 0.2913 0.9566 +vn -0.0016 0.2886 0.9574 +vn 0.0021 0.2887 0.9574 +vn 0.0030 0.3428 0.9394 +vn -0.0030 0.3428 0.9394 +vn 0.0029 0.3422 0.9396 +vn -0.0144 0.3404 0.9402 +vn -0.0117 0.3290 0.9443 +vn -0.0105 0.3421 0.9396 +vn -0.0114 0.3257 0.9454 +vn -0.0005 0.3348 0.9423 +vn 0.0000 0.3279 0.9447 +vn -0.0114 0.3280 0.9446 +vn -0.0107 0.3076 0.9515 +vn -0.0112 0.3161 0.9486 +vn -0.0110 0.3077 0.9514 +vn -0.0108 0.3131 0.9497 +vn -0.0113 0.3166 0.9485 +vn -0.0110 0.3160 0.9487 +vn -0.0158 0.3166 0.9484 +vn -0.0135 0.3142 0.9493 +vn -0.0156 0.3176 0.9481 +vn -0.0103 0.3032 0.9529 +vn -0.0109 0.3398 0.9404 +vn -0.0150 0.3388 0.9408 +vn -0.0151 0.3118 0.9500 +vn -0.0108 0.3427 0.9394 +vn -0.0148 0.3430 0.9392 +vn -0.0090 0.3194 0.9476 +vn -0.0093 0.3230 0.9463 +vn 0.0003 0.3545 0.9351 +vn -0.0000 0.3574 0.9339 +vn -0.0005 0.3559 0.9345 +vn -0.0003 0.3543 0.9351 +vn 0.0000 0.3695 0.9292 +vn -0.0107 0.3696 0.9291 +vn -0.0105 0.3518 0.9360 +vn -0.0108 0.3579 0.9337 +vn -0.0105 0.3435 0.9391 +vn -0.0106 0.3359 0.9418 +vn -0.0110 0.3299 0.9439 +vn -0.0000 0.3994 0.9168 +vn -0.0115 0.3994 0.9167 +vn -0.0107 0.3695 0.9291 +vn -0.0005 0.3388 0.9409 +vn 0.0106 0.3718 0.9283 +vn 0.0115 0.4024 0.9154 +vn -0.0115 0.4024 0.9154 +vn -0.0106 0.3712 0.9285 +vn -0.0105 0.3652 0.9309 +vn 0.0105 0.3655 0.9307 +vn 0.0115 0.3993 0.9168 +vn -0.0133 0.3090 0.9510 +vn -0.0108 0.3004 0.9538 +vn -0.0133 0.3009 0.9535 +vn -0.0133 0.3010 0.9535 +vn -0.0108 0.2973 0.9547 +vn -0.0131 0.2976 0.9546 +vn -0.0108 0.3064 0.9519 +vn -0.0111 0.3114 0.9502 +vn -0.0110 0.3086 0.9511 +vn -0.0108 0.2974 0.9547 +vn -0.0158 0.3119 0.9500 +vn -0.0156 0.3119 0.9500 +vn -0.0106 0.3056 0.9521 +vn -0.0151 0.3067 0.9517 +vn -0.0104 0.2956 0.9553 +vn -0.0105 0.3021 0.9532 +vn -0.0103 0.2962 0.9551 +vn -0.0102 0.2992 0.9541 +vn -0.0106 0.3064 0.9518 +vn -0.0102 0.2848 0.9585 +vn -0.0150 0.3068 0.9516 +vn -0.0104 0.2957 0.9552 +vn -0.0159 0.3019 0.9532 +vn -0.0162 0.3025 0.9530 +vn -0.0160 0.2981 0.9544 +vn -0.0142 0.3015 0.9533 +vn -0.0139 0.2982 0.9544 +vn -0.0148 0.3342 0.9424 +vn 0.0106 0.3063 0.9519 +vn 0.0148 0.3348 0.9422 +vn 0.0149 0.3060 0.9519 +vn 0.0103 0.3019 0.9533 +vn 0.0102 0.2958 0.9552 +vn -0.0102 0.2849 0.9585 +vn 0.0102 0.2851 0.9584 +vn 0.0145 0.3373 0.9413 +vn -0.0145 0.3375 0.9412 +vn 0.0132 0.3213 0.9469 +vn -0.0130 0.3228 0.9464 +vn 0.0130 0.3229 0.9463 +vn -0.0117 0.3658 0.9306 +vn -0.0126 0.3658 0.9306 +vn -0.0129 0.3607 0.9326 +vn -0.0083 0.3374 0.9413 +vn -0.0107 0.3375 0.9413 +vn 0.0000 0.3413 0.9400 +vn 0.0107 0.3371 0.9414 +vn 0.0118 0.3374 0.9413 +vn 0.0126 0.3657 0.9306 +vn 0.0117 0.3662 0.9305 +vn 0.0129 0.3609 0.9325 +vn 0.0109 0.3320 0.9432 +vn 0.0111 0.3299 0.9439 +vn -0.0116 0.3322 0.9431 +vn -0.0109 0.3321 0.9432 +vn 0.0116 0.3324 0.9431 +vn -0.0114 0.3302 0.9438 +vn -0.0112 0.3300 0.9439 +vn 0.0114 0.3303 0.9438 +vn -0.0118 0.3716 0.9283 +vn -0.0127 0.4024 0.9154 +vn -0.0137 0.4022 0.9155 +vn -0.0125 0.3719 0.9282 +vn -0.0172 0.3967 0.9178 +vn -0.0173 0.3971 0.9176 +vn -0.0176 0.3596 0.9329 +vn -0.0174 0.3599 0.9328 +vn -0.0163 0.3311 0.9435 +vn -0.0159 0.3160 0.9486 +vn -0.0152 0.3086 0.9511 +vn -0.0150 0.3459 0.9381 +vn -0.0171 0.3965 0.9179 +vn -0.0168 0.4204 0.9072 +vn -0.0159 0.4016 0.9157 +vn -0.0166 0.4403 0.8977 +vn -0.0158 0.4180 0.9083 +vn -0.0163 0.4384 0.8987 +vn -0.0166 0.4109 0.9115 +vn -0.0146 0.3519 0.9359 +vn -0.0143 0.3916 0.9200 +vn -0.0150 0.3781 0.9257 +vn -0.0145 0.3559 0.9344 +vn -0.0148 0.3939 0.9190 +vn -0.0161 0.3196 0.9474 +vn -0.0162 0.3024 0.9530 +vn -0.0159 0.2982 0.9544 +vn -0.0132 0.3601 0.9328 +vn -0.0133 0.3246 0.9457 +vn -0.0141 0.3974 0.9175 +vn -0.0127 0.3702 0.9289 +vn -0.0130 0.3660 0.9305 +vn -0.0139 0.3033 0.9528 +vn -0.0136 0.3087 0.9511 +vn -0.0137 0.3073 0.9515 +vn -0.0134 0.3088 0.9510 +vn -0.0134 0.3087 0.9511 +vn -0.0132 0.3068 0.9517 +vn -0.0132 0.3035 0.9527 +vn -0.0118 0.3715 0.9283 +vn -0.0148 0.3409 0.9400 +vn -0.0150 0.3372 0.9413 +vn -0.0118 0.3700 0.9290 +vn -0.0127 0.3684 0.9296 +vn -0.0118 0.3579 0.9337 +vn -0.0121 0.3518 0.9360 +vn -0.0129 0.3653 0.9308 +vn -0.0122 0.3434 0.9391 +vn -0.0121 0.3358 0.9419 +vn -0.0118 0.3300 0.9439 +vn -0.0127 0.3994 0.9167 +vn -0.0137 0.3989 0.9169 +vn -0.0127 0.3701 0.9289 +vn -0.0149 0.3388 0.9408 +vn -0.0183 0.3272 0.9448 +vn -0.0163 0.3338 0.9425 +vn -0.0173 0.3538 0.9352 +vn -0.0173 0.3539 0.9351 +vn -0.0174 0.3600 0.9328 +vn -0.0169 0.3962 0.9180 +vn -0.0147 0.3430 0.9392 +vn -0.0156 0.4181 0.9083 +vn -0.0164 0.4400 0.8978 +vn -0.0166 0.4196 0.9076 +vn -0.0157 0.4009 0.9160 +vn -0.0143 0.3405 0.9402 +vn -0.0144 0.3519 0.9359 +vn -0.0162 0.4382 0.8987 +vn -0.0164 0.4108 0.9116 +vn -0.0147 0.3946 0.9187 +vn -0.0142 0.3923 0.9197 +vn -0.0144 0.3579 0.9336 +vn -0.0161 0.3255 0.9454 +vn -0.0147 0.3781 0.9256 +vn -0.0161 0.3213 0.9468 +vn -0.0130 0.3619 0.9321 +vn -0.0133 0.3266 0.9451 +vn -0.0143 0.3526 0.9357 +vn -0.0141 0.3920 0.9199 +vn -0.0140 0.3947 0.9187 +vn -0.0139 0.3129 0.9497 +vn -0.0141 0.3075 0.9514 +vn -0.0127 0.3685 0.9296 +vn -0.0162 0.3045 0.9524 +vn 0.0102 0.2852 0.9584 +vn -0.0136 0.3103 0.9505 +vn -0.0136 0.3086 0.9511 +vn -0.0134 0.3092 0.9509 +vn -0.0137 0.3104 0.9505 +vn -0.0137 0.3072 0.9516 +vn -0.0133 0.3093 0.9509 +vn -0.0134 0.3093 0.9509 +vn -0.0139 0.3032 0.9528 +vn -0.0139 0.3048 0.9523 +vn -0.0132 0.3036 0.9527 +vn -0.0132 0.3090 0.9510 +vn -0.0135 0.3143 0.9492 +vn -0.0137 0.3103 0.9505 +vn -0.0138 0.3073 0.9515 +vn -0.0140 0.3049 0.9523 +vn -0.0142 0.3016 0.9533 +vn -0.0156 0.4180 0.9083 +vn -0.0158 0.4179 0.9083 +vn -0.0148 0.3781 0.9257 +vn -0.0146 0.3518 0.9360 +vn -0.0164 0.4401 0.8978 +vn -0.0163 0.4383 0.8987 +vn -0.0162 0.4381 0.8988 +vn -0.0162 0.4382 0.8988 +vn -0.0164 0.4383 0.8987 +vn -0.0142 0.3924 0.9197 +vn -0.0141 0.3921 0.9198 +vn -0.0137 0.4021 0.9155 +vn -0.0127 0.3993 0.9167 +vn -0.0163 0.3315 0.9433 +vn -0.0163 0.3316 0.9433 +vn -0.0171 0.3964 0.9179 +vn -0.0118 0.3403 0.9402 +vn -0.0108 0.3402 0.9403 +vn -0.0111 0.3350 0.9421 +vn -0.0116 0.3351 0.9421 +vn -0.0113 0.3336 0.9427 +vn -0.0172 0.3538 0.9352 +vn 0.0115 0.3256 0.9454 +vn 0.0134 0.3269 0.9450 +vn 0.0132 0.3260 0.9453 +vn 0.0152 0.3284 0.9444 +vn 0.0115 0.3280 0.9446 +vn 0.0103 0.2913 0.9566 +vn 0.0100 0.3027 0.9530 +vn 0.0106 0.3098 0.9507 +vn 0.0103 0.3032 0.9529 +vn 0.0102 0.2913 0.9566 +vn 0.0102 0.2914 0.9566 +vn 0.0093 0.3449 0.9386 +vn 0.0027 0.3451 0.9386 +vn 0.0096 0.3395 0.9405 +vn 0.0096 0.3269 0.9450 +vn 0.0027 0.3266 0.9452 +vn 0.0027 0.3265 0.9452 +vn 0.0097 0.3263 0.9452 +vn 0.0117 0.3289 0.9443 +vn 0.0104 0.3422 0.9396 +vn 0.0143 0.3402 0.9402 +vn 0.0114 0.3256 0.9454 +vn 0.0006 0.3444 0.9388 +vn 0.0005 0.3347 0.9423 +vn 0.0114 0.3279 0.9447 +vn 0.0107 0.3081 0.9513 +vn 0.0109 0.3074 0.9515 +vn 0.0111 0.3136 0.9495 +vn 0.0106 0.3004 0.9537 +vn 0.0112 0.3166 0.9485 +vn 0.0110 0.3168 0.9484 +vn 0.0107 0.3123 0.9499 +vn 0.0106 0.3061 0.9519 +vn 0.0136 0.3143 0.9492 +vn 0.0158 0.3166 0.9484 +vn 0.0155 0.3176 0.9481 +vn 0.0102 0.2914 0.9565 +vn 0.0150 0.3386 0.9408 +vn 0.0108 0.3398 0.9405 +vn 0.0151 0.3119 0.9500 +vn 0.0147 0.3430 0.9392 +vn 0.0107 0.3428 0.9394 +vn 0.0005 0.3555 0.9347 +vn 0.0005 0.3510 0.9364 +vn 0.0107 0.3694 0.9292 +vn 0.0107 0.3579 0.9337 +vn 0.0105 0.3519 0.9360 +vn 0.0105 0.3434 0.9391 +vn 0.0107 0.3359 0.9419 +vn 0.0110 0.3300 0.9439 +vn 0.0005 0.3390 0.9408 +vn 0.0133 0.3099 0.9507 +vn 0.0133 0.3009 0.9536 +vn 0.0108 0.3003 0.9538 +vn 0.0131 0.2978 0.9545 +vn 0.0108 0.3041 0.9526 +vn 0.0110 0.3091 0.9510 +vn 0.0108 0.3080 0.9513 +vn 0.0111 0.3115 0.9502 +vn 0.0157 0.3118 0.9500 +vn 0.0156 0.3117 0.9501 +vn 0.0107 0.2963 0.9550 +vn 0.0108 0.3059 0.9520 +vn 0.0104 0.2974 0.9547 +vn 0.0104 0.2874 0.9578 +vn 0.0104 0.3025 0.9531 +vn 0.0161 0.3029 0.9529 +vn 0.0159 0.3021 0.9532 +vn 0.0159 0.2981 0.9544 +vn 0.0141 0.3009 0.9535 +vn 0.0139 0.2979 0.9545 +vn 0.0125 0.3718 0.9282 +vn 0.0138 0.4019 0.9156 +vn 0.0127 0.4024 0.9154 +vn 0.0117 0.3712 0.9285 +vn 0.0174 0.3971 0.9176 +vn 0.0171 0.3963 0.9180 +vn 0.0174 0.3602 0.9327 +vn 0.0176 0.3582 0.9335 +vn 0.0158 0.3150 0.9490 +vn 0.0164 0.3323 0.9430 +vn 0.0151 0.3386 0.9408 +vn 0.0148 0.3422 0.9395 +vn 0.0158 0.4181 0.9083 +vn 0.0168 0.4202 0.9073 +vn 0.0166 0.4404 0.8977 +vn 0.0159 0.4009 0.9160 +vn 0.0163 0.4382 0.8987 +vn 0.0166 0.4107 0.9116 +vn 0.0145 0.3515 0.9361 +vn 0.0148 0.3946 0.9187 +vn 0.0144 0.3931 0.9194 +vn 0.0145 0.3569 0.9340 +vn 0.0149 0.3780 0.9257 +vn 0.0158 0.3150 0.9489 +vn 0.0164 0.3322 0.9431 +vn 0.0161 0.3209 0.9470 +vn 0.0162 0.3029 0.9529 +vn 0.0159 0.2980 0.9544 +vn 0.0152 0.3086 0.9511 +vn 0.0133 0.3249 0.9457 +vn 0.0131 0.3602 0.9328 +vn 0.0143 0.3923 0.9197 +vn 0.0128 0.3703 0.9288 +vn 0.0141 0.3978 0.9174 +vn 0.0130 0.3659 0.9306 +vn 0.0133 0.3074 0.9515 +vn 0.0134 0.3087 0.9511 +vn 0.0134 0.3085 0.9511 +vn 0.0135 0.3084 0.9512 +vn 0.0111 0.3089 0.9510 +vn 0.0136 0.3086 0.9511 +vn 0.0132 0.3034 0.9528 +vn 0.0138 0.3067 0.9517 +vn 0.0139 0.3032 0.9528 +vn 0.0233 0.3215 0.9466 +vn 0.0105 0.2934 0.9559 +vn 0.0104 0.2954 0.9553 +vn 0.0121 0.3517 0.9360 +vn 0.0118 0.3696 0.9291 +vn 0.0118 0.3579 0.9337 +vn 0.0127 0.3686 0.9295 +vn 0.0130 0.3658 0.9306 +vn 0.0130 0.3606 0.9326 +vn 0.0122 0.3435 0.9391 +vn 0.0121 0.3358 0.9418 +vn 0.0118 0.3300 0.9439 +vn 0.0126 0.3709 0.9286 +vn 0.0127 0.3993 0.9167 +vn 0.0118 0.3695 0.9291 +vn 0.0138 0.3987 0.9170 +vn 0.0157 0.3196 0.9474 +vn 0.0163 0.3336 0.9426 +vn 0.0172 0.3540 0.9351 +vn 0.0169 0.3964 0.9179 +vn 0.0166 0.4199 0.9074 +vn 0.0164 0.4398 0.8980 +vn 0.0157 0.4016 0.9157 +vn 0.0156 0.4178 0.9084 +vn 0.0144 0.3518 0.9360 +vn 0.0162 0.4382 0.8988 +vn 0.0164 0.4103 0.9118 +vn 0.0142 0.3923 0.9197 +vn 0.0148 0.3781 0.9256 +vn 0.0144 0.3578 0.9337 +vn 0.0161 0.3257 0.9454 +vn 0.0147 0.3940 0.9190 +vn 0.0160 0.3204 0.9471 +vn 0.0143 0.3524 0.9357 +vn 0.0132 0.3284 0.9444 +vn 0.0133 0.3269 0.9450 +vn 0.0141 0.3920 0.9199 +vn 0.0140 0.3946 0.9188 +vn 0.0129 0.3658 0.9306 +vn 0.0128 0.3686 0.9295 +vn 0.0139 0.3125 0.9498 +vn 0.0141 0.3071 0.9516 +vn 0.0201 0.3022 0.9530 +vn 0.0131 0.3259 0.9453 +vn 0.0161 0.3043 0.9524 +vn 0.0137 0.3086 0.9511 +vn 0.0135 0.3107 0.9504 +vn 0.0132 0.3074 0.9515 +vn 0.0136 0.3107 0.9504 +vn 0.0139 0.3067 0.9517 +vn 0.0137 0.3068 0.9517 +vn 0.0135 0.3086 0.9511 +vn 0.0137 0.3067 0.9517 +vn 0.0131 0.3035 0.9528 +vn 0.0132 0.3049 0.9523 +vn 0.0132 0.2978 0.9545 +vn 0.0133 0.3048 0.9523 +vn 0.0141 0.3009 0.9536 +vn 0.0139 0.3033 0.9528 +vn 0.0139 0.3068 0.9517 +vn 0.0139 0.2978 0.9545 +vn 0.0133 0.3073 0.9515 +vn 0.0156 0.4179 0.9084 +vn 0.0147 0.3939 0.9190 +vn 0.0148 0.3782 0.9256 +vn 0.0150 0.3780 0.9257 +vn 0.0149 0.3946 0.9187 +vn 0.0146 0.3515 0.9361 +vn 0.0171 0.3964 0.9179 +vn 0.0144 0.3579 0.9337 +vn 0.0165 0.4107 0.9116 +vn 0.0080 0.4112 0.9115 +vn 0.0162 0.4382 0.8987 +vn 0.0143 0.3931 0.9194 +vn 0.0141 0.3920 0.9198 +vn 0.0137 0.3986 0.9170 +vn 0.0176 0.3583 0.9335 +vn 0.0163 0.3317 0.9432 +vn 0.0161 0.3208 0.9470 +vn 0.0173 0.3540 0.9351 +vn 0.0161 0.3257 0.9453 +vn 0.0160 0.3204 0.9472 +vn 0.0119 0.3402 0.9403 +vn 0.0108 0.3404 0.9402 +vn 0.0116 0.3351 0.9421 +vn 0.0111 0.3351 0.9421 +vn 0.0114 0.3335 0.9427 +vn -0.0016 0.2886 0.9575 +vn -0.0008 0.2886 0.9574 +usemtl material +s off +f 2671/2031/1924 2415/2032/1925 2418/2033/1926 2563/2034/1927 +f 2062/2035/1928 2086/2036/1929 2122/2037/1930 +f 2118/2038/1931 2086/2036/1932 2062/2035/1928 +f 2117/2039/1933 2118/2038/1931 2062/2035/1928 +f 2083/2040/1934 2117/2039/1935 2062/2035/1928 +f 2083/2041/1934 2062/2035/1928 2107/2042/1936 +f 2033/2043/1937 2041/2044/1938 2094/2045/1924 2664/2046/1939 +s 1 +f 2025/2047/1940 2026/2048/1941 2027/2049/1942 +f 2026/2048/1941 2028/2050/1943 2027/2049/1942 +f 2662/2051/1939 2428/2052/1944 2030/2053/1945 +f 2559/2054/1937 2663/2055/1939 2557/2056/1946 +f 2681/2057/1947 2484/2058/1948 2482/2059/1949 +f 2640/2060/1950 2681/2057/1947 2668/2061/1951 +f 2668/2061/1951 2681/2057/1947 2482/2059/1949 +f 2482/2059/1949 2557/2056/1946 2666/2062/1945 +f 2668/2061/1951 2482/2059/1949 2666/2062/1945 +f 2486/2063/1952 2600/2064/1953 2578/2065/1954 +f 2488/2066/1955 2486/2063/1952 2578/2065/1954 +f 2043/2067/1956 2579/2068/1957 2485/2069/1948 +f 2682/2070/1947 2043/2067/1956 2485/2069/1948 +f 2678/2071/1958 2043/2072/1956 2682/2070/1947 +f 2047/2073/1959 2420/2074/1960 2048/2075/1961 +f 2047/2073/1959 2048/2075/1961 2050/2076/1962 +f 2057/2077/1963 2693/2078/1964 2058/2079/1965 +f 2057/2077/1963 2061/2080/1966 2692/2081/1967 +f 2693/2082/1964 2057/2077/1963 2692/2081/1967 +f 2670/2083/1968 2417/2084/1925 2665/2085/1969 +f 2052/2086/1970 2063/2087/1971 2064/2088/1972 +f 2051/2089/1973 2052/2086/1970 2065/2090/1974 +f 2065/2090/1974 2052/2086/1970 2064/2088/1972 +f 2058/2091/1965 2693/2092/1964 2066/2093/1975 +f 2067/2094/1976 2054/2095/1977 2068/2096/1978 +f 2053/2097/1979 2054/2095/1977 2067/2094/1976 +f 2065/2090/1974 2069/2098/1980 2051/2089/1973 +f 2051/2089/1973 2069/2098/1980 2053/2099/1979 +f 2070/2100/1981 2055/2101/1982 2071/2102/1983 +f 2072/2103/1984 2070/2100/1981 2071/2104/1983 +f 2071/2102/1983 2055/2105/1982 2419/2106/1985 +f 2073/2107/1986 2072/2103/1984 2071/2108/1983 +f 2419/2106/1985 2055/2105/1982 2074/2109/1987 +f 2074/2109/1987 2066/2093/1975 2419/2106/1985 +f 2567/2110/1988 2073/2111/1986 2071/2108/1983 +f 2419/2106/1985 2066/2093/1975 2693/2092/1964 +f 2419/2106/1985 2693/2092/1964 2416/2112/1925 +f 2042/2113/1989 2567/2114/1988 2071/2115/1983 +f 2487/2116/1990 2071/2117/1983 2419/2106/1985 +f 2042/2113/1989 2071/2118/1983 2487/2116/1990 +f 2487/2116/1990 2419/2106/1985 2558/2119/1991 +f 2483/2120/1992 2487/2116/1990 2558/2119/1991 +f 2076/2121/1993 2055/2101/1982 2070/2100/1981 +f 2056/2122/1994 2055/2101/1982 2076/2121/1993 +f 2077/2123/1995 2056/2122/1994 2076/2121/1993 +f 2054/2095/1977 2056/2122/1994 2077/2123/1995 +f 2068/2096/1978 2054/2095/1977 2077/2123/1995 +f 2420/2074/1960 2644/2124/1996 2048/2075/1961 +f 2048/2075/1961 2644/2124/1996 2080/2125/1997 +f 2080/2125/1997 2644/2124/1996 2081/2126/1998 +f 2080/2125/1997 2081/2126/1998 2069/2127/1980 +f 2082/2128/1999 2080/2125/1997 2069/2127/1980 +f 2084/2129/2000 2083/2130/1934 2052/2131/1970 +f 2084/2129/2000 2052/2131/1970 2085/2132/2001 +f 2085/2132/2001 2052/2133/1970 2051/2134/1973 +f 2086/2135/1932 2084/2129/2000 2085/2132/2001 +f 2065/2136/1974 2082/2128/1999 2069/2127/1980 +f 2087/2137/2002 2082/2128/1999 2065/2136/1974 +f 2088/2138/2003 2090/2139/2004 2089/2140/2005 +f 2091/2141/2006 2090/2139/2004 2088/2138/2003 +f 2092/2142/2007 2090/2139/2004 2093/2143/2008 +f 2088/2138/2003 2089/2140/2005 2669/2144/1924 +f 2093/2143/2008 2090/2139/2004 2091/2141/2006 +f 2095/2145/2009 2426/2146/2010 2090/2139/2004 +f 2097/2147/2011 2095/2145/2009 2090/2139/2004 +f 2097/2147/2011 2090/2139/2004 2092/2142/2007 +f 2060/2148/1967 2092/2142/2007 2093/2143/2008 +f 2646/2149/1966 2092/2142/2007 2060/2148/1967 +f 2060/2148/1967 2093/2143/2008 2091/2141/2006 +f 2060/2148/1967 2091/2141/2006 2059/2150/1964 +f 2059/2150/1964 2091/2141/2006 2088/2138/2003 +f 2059/2150/1964 2088/2138/2003 2669/2144/1924 +f 2669/2144/1924 2059/2150/2012 2039/2151/1925 +f 2098/2152/2013 2491/2153/2014 2489/2154/2015 +f 2061/2155/1966 2098/2152/2013 2489/2154/2015 +f 2101/2156/2016 2491/2153/2014 2098/2152/2013 +f 2601/2157/2017 2491/2153/2014 2101/2156/2016 +f 2601/2157/2017 2101/2156/2016 2081/2126/1998 +f 2644/2124/1996 2601/2157/2017 2081/2126/1998 +f 2078/2158/2018 2103/2159/2019 2058/2160/1965 +f 2058/2160/1965 2103/2159/2019 2057/2161/1963 +f 2058/2162/1965 2066/2163/1975 2078/2158/2018 +f 2119/2164/2020 2104/2165/2021 2062/2166/1928 +f 2104/2167/2021 2105/2168/2022 2106/2169/2023 +f 2107/2042/1936 2105/2168/2022 2083/2041/1934 +f 2106/2169/2023 2105/2168/2022 2107/2042/1936 +f 2672/2170/2024 2511/2171/2025 2052/2172/1970 +f 2110/2173/2026 2511/2171/2025 2111/2174/2027 +f 2052/2175/1970 2511/2171/2025 2110/2173/2026 +f 2104/2176/2021 2672/2170/2024 2105/2168/2022 +f 2105/2168/2022 2672/2170/2024 2052/2177/1970 +f 2083/2041/1934 2105/2168/2022 2052/2177/1970 +f 2063/2178/1971 2110/2173/2026 2112/2179/2028 +f 2052/2175/1970 2110/2173/2026 2063/2180/1971 +f 2064/2181/1972 2112/2179/2028 2113/2182/2029 +f 2063/2178/1971 2112/2179/2028 2064/2181/1972 +f 2065/2136/1974 2064/2181/1972 2113/2182/2029 +f 2065/2136/1974 2113/2182/2029 2114/2183/2030 +f 2065/2136/1974 2114/2183/2030 2087/2137/2002 +f 2602/2184/2031 2424/2185/2032 2109/2186/2033 +f 2108/2187/2024 2602/2184/2031 2109/2186/2033 +f 2053/2099/1979 2081/2188/1998 2054/2189/1977 +f 2069/2098/1980 2081/2188/1998 2053/2099/1979 +f 2053/2097/1979 2067/2094/1976 2085/2132/2001 +f 2051/2134/1973 2053/2097/1979 2085/2132/2001 +f 2083/2130/1934 2084/2129/2000 2117/2190/2034 +f 2118/2191/1931 2084/2129/2000 2086/2135/1932 +f 2117/2190/2034 2084/2129/2000 2118/2191/1931 +f 2124/2192/2035 2473/2193/2036 2423/2194/2037 +f 2127/2195/2038 2124/2192/2035 2423/2194/2037 +f 2128/2196/2039 2129/2197/2040 2127/2195/2038 +f 2129/2197/2040 2124/2192/2035 2127/2195/2038 +f 2125/2198/2036 2126/2199/2037 2115/2200/2031 +f 2115/2200/2031 2126/2201/2037 2116/2202/2032 +f 2130/2203/2041 2125/2204/2036 2115/2205/2031 +f 2427/2206/2042 2090/2139/2004 2426/2146/2010 +f 2089/2140/2005 2090/2139/2004 2427/2206/2042 +f 2566/2207/2043 2089/2140/2005 2133/2208/2044 +f 2133/2208/2044 2089/2140/2005 2427/2206/2042 +f 2565/2209/2043 2492/2210/2045 2429/2211/2046 +f 2429/2211/2046 2492/2210/2045 2494/2212/2047 +f 2428/2052/1944 2565/2209/2043 2429/2211/2046 +f 2662/2051/1939 2565/2209/2043 2428/2052/1944 +f 2136/2213/2048 2137/2214/2049 2138/2215/2050 +f 2134/2216/2051 2136/2213/2048 2138/2215/2050 +f 2031/2217/1944 2136/2213/2048 2134/2216/2051 +f 2137/2214/2049 2139/2218/2052 2138/2215/2050 +f 2137/2214/2049 2140/2219/2053 2139/2218/2052 +f 2137/2214/2049 2141/2220/2054 2140/2219/2053 +f 2141/2220/2054 2142/2221/2055 2140/2219/2053 +f 2667/2222/1969 2143/2223/2056 2031/2217/1944 +f 2144/2224/2057 2141/2220/2054 2137/2214/2049 +f 2136/2213/2048 2144/2224/2057 2137/2214/2049 +f 2145/2225/2058 2144/2224/2057 2136/2213/2048 +f 2143/2223/2056 2145/2225/2058 2136/2213/2048 +f 2031/2217/1944 2143/2223/2056 2136/2213/2048 +f 2146/2226/2059 2144/2224/2057 2145/2225/2058 +f 2146/2226/2059 2147/2227/2060 2144/2224/2057 +f 2147/2227/2060 2141/2220/2054 2144/2224/2057 +f 2145/2225/2058 2537/2228/2061 2146/2226/2059 +f 2141/2220/2054 2149/2229/2062 2142/2221/2055 +f 2147/2227/2060 2149/2229/2062 2141/2220/2054 +f 2537/2228/2061 2145/2225/2058 2143/2223/2056 +f 2667/2222/1969 2143/2223/2063 2537/2228/2061 +f 2585/2230/2064 2675/2231/2065 2673/2232/2066 +f 2430/2233/2067 2585/2230/2064 2432/2234/2068 +f 2432/2234/2068 2585/2230/2064 2673/2232/2066 +f 2149/2229/2062 2147/2227/2060 2155/2235/2069 +f 2156/2236/2070 2157/2237/2071 2155/2235/2069 +f 2147/2227/2060 2156/2236/2070 2155/2235/2069 +f 2156/2236/2070 2158/2238/2072 2157/2237/2071 +f 2147/2227/2060 2146/2226/2059 2156/2236/2070 +f 2146/2226/2059 2159/2239/2073 2156/2236/2070 +f 2146/2226/2059 2160/2240/2074 2159/2239/2073 +f 2538/2241/2075 2160/2240/2074 2146/2226/2059 +f 2538/2241/2075 2688/2242/2076 2160/2240/2074 +f 2157/2243/2071 2162/2244/2077 2155/2245/2069 +f 2162/2244/2077 2163/2246/2078 2155/2245/2069 +f 2162/2247/2077 2025/2047/1940 2163/2248/2078 +f 2025/2047/1940 2027/2049/1942 2163/2248/2078 +f 2164/2249/2079 2028/2050/1943 2026/2048/1941 +f 2165/2250/2080 2028/2251/1943 2164/2252/2079 +f 2166/2253/2081 2165/2254/2080 2164/2255/2079 +f 2165/2254/2080 2167/2256/2082 2168/2257/2083 +f 2169/2258/2084 2165/2254/2080 2168/2257/2083 +f 2165/2254/2080 2170/2259/2085 2167/2256/2082 +f 2172/2260/2086 2171/2261/2087 2128/2196/2039 +f 2171/2262/2087 2129/2197/2040 2128/2196/2039 +f 2171/2262/2087 2173/2263/2088 2129/2197/2040 +f 2174/2264/2089 2175/2265/2090 2176/2266/2091 +f 2166/2253/2081 2177/2267/2092 2175/2265/2090 +f 2174/2264/2089 2166/2253/2081 2175/2265/2090 +f 2178/2268/2093 2173/2263/2088 2171/2262/2087 +f 2179/2269/2094 2178/2268/2093 2171/2270/2087 +f 2165/2254/2080 2180/2271/2095 2170/2259/2085 +f 2181/2272/2096 2171/2273/2087 2172/2260/2086 +f 2182/2274/2097 2166/2253/2081 2174/2264/2089 +f 2165/2254/2080 2183/2275/2098 2180/2271/2095 +f 2184/2276/2099 2171/2273/2087 2181/2272/2096 +f 2185/2277/2100 2166/2253/2081 2182/2274/2097 +f 2165/2254/2080 2179/2269/2094 2171/2273/2087 +f 2184/2276/2099 2165/2254/2080 2171/2273/2087 +f 2165/2254/2080 2184/2276/2099 2183/2275/2098 +f 2166/2253/2081 2185/2277/2100 2179/2269/2094 +f 2165/2254/2080 2166/2253/2081 2179/2269/2094 +f 2421/2278/2101 2422/2279/2102 2587/2280/2103 +f 2189/2281/2104 2421/2278/2101 2587/2280/2103 +f 2434/2282/2105 2541/2283/2106 2539/2284/2107 +f 2435/2285/2108 2434/2282/2105 2539/2284/2107 +f 2500/2286/2109 2195/2287/2110 2192/2288/2106 +f 2540/2289/2107 2500/2286/2109 2192/2288/2106 +f 2195/2287/2110 2196/2290/2111 2192/2288/2106 +f 2196/2290/2111 2677/2291/2112 2192/2288/2106 +f 2677/2291/2112 2198/2292/2113 2192/2288/2106 +f 2542/2293/2114 2647/2294/2115 2543/2295/2116 +f 2647/2294/2115 2496/2296/2117 2543/2295/2116 +f 2496/2296/2117 2588/2297/2118 2543/2295/2116 +f 2544/2298/2119 2647/2294/2115 2542/2293/2114 +f 2677/2291/2112 2437/2299/2120 2198/2292/2113 +f 2496/2296/2117 2439/2300/2121 2588/2297/2118 +f 2545/2301/2122 2647/2294/2115 2544/2298/2119 +f 2651/2302/2123 2545/2301/2122 2544/2298/2119 +f 2498/2303/2124 2439/2300/2121 2496/2296/2117 +f 2501/2304/2125 2195/2287/2110 2500/2286/2109 +f 2152/2305/2126 2151/2306/2127 2501/2304/2125 +f 2151/2306/2127 2195/2287/2110 2501/2304/2125 +f 2211/2307/2128 2439/2300/2121 2498/2303/2124 +f 2545/2301/2122 2211/2307/2128 2498/2303/2124 +f 2651/2302/2123 2211/2307/2128 2545/2301/2122 +f 2212/2308/2129 2211/2307/2128 2651/2302/2123 +f 2212/2308/2129 2651/2302/2123 2437/2299/2120 +f 2677/2291/2112 2212/2308/2129 2437/2299/2120 +f 2441/2309/2130 2214/2310/2131 2587/2280/2103 +f 2214/2310/2131 2189/2281/2104 2587/2280/2103 +f 2215/2311/2132 2214/2310/2131 2441/2309/2130 +f 2439/2300/2121 2211/2307/2128 2441/2309/2130 +f 2211/2307/2128 2215/2311/2132 2441/2309/2130 +f 2674/2312/2127 2547/2313/2133 2139/2218/2052 +f 2217/2314/2134 2138/2215/2050 2139/2218/2052 +f 2218/2315/2135 2217/2314/2134 2139/2218/2052 +f 2547/2313/2133 2218/2315/2135 2139/2218/2052 +f 2217/2314/2134 2548/2316/2136 2138/2215/2050 +f 2219/2317/2137 2589/2318/2138 2138/2215/2050 +f 2589/2318/2138 2656/2319/2139 2138/2215/2050 +f 2656/2319/2139 2495/2320/2047 2138/2215/2050 +f 2495/2320/2047 2134/2216/2051 2138/2215/2050 +f 2674/2312/2127 2433/2321/2068 2547/2313/2133 +f 2168/2257/2083 2186/2322/2140 2189/2281/2104 +f 2168/2257/2083 2167/2256/2082 2186/2322/2140 +f 2214/2310/2131 2168/2257/2083 2189/2281/2104 +f 2169/2258/2084 2215/2311/2132 2211/2307/2128 +f 2215/2311/2132 2168/2257/2083 2214/2310/2131 +f 2169/2258/2084 2168/2257/2083 2215/2311/2132 +f 2212/2308/2129 2165/2254/2080 2211/2307/2128 +f 2165/2254/2080 2169/2258/2084 2211/2307/2128 +f 2028/2323/1943 2165/2254/2080 2212/2308/2129 +f 2222/2324/2141 2212/2308/2129 2677/2291/2112 +f 2027/2325/1942 2212/2308/2129 2222/2324/2141 +f 2028/2323/1943 2212/2308/2129 2027/2325/1942 +f 2223/2326/2142 2222/2324/2141 2677/2291/2112 +f 2163/2327/2078 2222/2324/2141 2223/2326/2142 +f 2155/2235/2069 2163/2327/2078 2223/2326/2142 +f 2163/2327/2078 2027/2325/1942 2222/2324/2141 +f 2196/2290/2111 2223/2326/2142 2197/2328/2112 +f 2149/2229/2062 2223/2326/2142 2196/2290/2111 +f 2149/2229/2062 2155/2235/2069 2223/2326/2142 +f 2149/2229/2062 2196/2290/2111 2142/2221/2055 +f 2140/2219/2053 2196/2290/2111 2195/2287/2110 +f 2142/2221/2055 2196/2290/2111 2140/2219/2053 +f 2140/2219/2053 2195/2287/2110 2139/2218/2052 +f 2674/2312/2127 2139/2218/2052 2195/2287/2110 +f 2669/2144/1924 2089/2140/2005 2132/2329/2043 +f 2669/2144/1924 2132/2329/2043 2029/2330/1939 +f 2646/2331/1966 2097/2147/2011 2092/2332/2007 +f 2099/2333/2015 2097/2147/2011 2646/2331/1966 +f 2665/2085/1969 2661/2334/1939 2670/2083/1968 +f 2055/2335/1982 2098/2336/2013 2103/2159/2019 +f 2103/2159/2019 2098/2336/2013 2061/2337/1966 +f 2078/2158/2018 2055/2335/1982 2103/2159/2019 +f 2066/2163/1975 2055/2335/1982 2078/2158/2018 +f 2074/2338/1987 2055/2339/1982 2066/2163/1975 +f 2057/2161/1963 2103/2159/2019 2061/2337/1966 +f 2056/2340/1994 2098/2336/2013 2055/2335/1982 +f 2101/2341/2016 2098/2336/2013 2056/2340/1994 +f 2054/2189/1977 2101/2341/2016 2056/2340/1994 +f 2081/2188/1998 2101/2341/2016 2054/2189/1977 +f 2224/2342/2143 2549/2343/2144 2225/2344/2145 +f 2225/2344/2145 2549/2343/2144 2227/2345/2146 +f 2227/2345/2146 2549/2343/2144 2550/2346/2147 +f 2227/2345/2146 2550/2346/2147 2047/2073/1959 +f 2229/2347/2148 2227/2345/2146 2047/2073/1959 +f 2230/2348/2149 2229/2347/2148 2047/2073/1959 +f 2231/2349/2150 2230/2348/2149 2047/2073/1959 +f 2050/2076/1962 2231/2349/2150 2047/2073/1959 +f 2232/2350/2151 2451/2351/2152 2512/2352/2143 +f 2512/2352/2143 2451/2351/2152 2234/2353/2153 +f 2100/2354/2154 2190/2355/2105 2235/2356/2155 +f 2235/2356/2155 2190/2355/2105 2690/2357/2156 +f 2690/2357/2156 2190/2355/2105 2551/2358/2157 +f 2551/2358/2158 2193/2359/2159 2190/2355/2105 +f 2238/2360/2160 2190/2355/2105 2100/2354/2154 +f 2102/2361/2161 2238/2360/2160 2100/2354/2154 +f 2503/2362/2162 2443/2363/2163 2240/2364/2164 +f 2503/2362/2162 2240/2364/2164 2554/2365/2165 +f 2079/2366/2166 2238/2360/2160 2102/2361/2161 +f 2591/2367/2167 2238/2360/2160 2079/2366/2166 +f 2444/2368/2168 2443/2363/2163 2503/2362/2162 +f 2554/2365/2165 2240/2364/2164 2504/2369/2169 +f 2593/2370/2170 2444/2368/2168 2503/2362/2162 +f 2446/2371/2171 2444/2368/2168 2593/2370/2170 +f 2554/2365/2165 2504/2369/2169 2505/2372/2172 +f 2235/2356/2155 2690/2357/2156 2447/2373/2173 +f 2555/2374/2174 2554/2365/2165 2505/2372/2172 +f 2235/2356/2155 2447/2373/2173 2449/2375/2175 +f 2100/2354/2154 2235/2356/2155 2490/2376/2015 +f 2446/2371/2171 2593/2370/2170 2252/2377/2176 +f 2049/2378/2177 2555/2374/2174 2505/2372/2172 +f 2252/2377/2176 2593/2370/2170 2555/2374/2174 +f 2252/2377/2176 2555/2374/2174 2049/2378/2177 +f 2049/2378/2177 2591/2367/2167 2079/2366/2166 +f 2649/2379/2178 2591/2367/2167 2049/2378/2177 +f 2049/2378/2177 2505/2372/2172 2649/2379/2178 +f 2254/2380/2179 2446/2371/2171 2252/2377/2176 +f 2228/2381/2147 2254/2380/2179 2252/2377/2176 +f 2451/2351/2152 2452/2382/2180 2228/2381/2147 +f 2228/2381/2147 2452/2382/2180 2254/2380/2179 +f 2234/2353/2153 2451/2351/2152 2228/2381/2147 +f 2426/2146/2010 2095/2145/2009 2453/2383/2181 +f 2454/2384/2182 2095/2145/2009 2586/2385/2064 +f 2453/2383/2181 2095/2145/2009 2454/2384/2182 +f 2431/2386/2067 2454/2384/2182 2586/2385/2064 +f 2512/2352/2143 2234/2353/2153 2226/2387/2183 +f 2226/2387/2183 2234/2353/2153 2228/2381/2147 +f 2550/2346/2147 2252/2377/2176 2047/2073/1959 +f 2047/2073/1959 2252/2377/2176 2049/2378/2177 +f 2095/2145/2009 2449/2375/2175 2596/2388/2184 +f 2095/2145/2009 2596/2388/2184 2150/2389/2064 +f 2099/2333/2015 2235/2356/2155 2097/2147/2011 +f 2235/2356/2155 2449/2375/2175 2095/2145/2009 +f 2235/2356/2155 2095/2145/2009 2097/2147/2011 +f 2668/2061/1951 2666/2062/1945 2689/2390/2185 +f 2689/2390/2185 2666/2062/1945 2148/2391/2075 +f 2548/2316/2137 2259/2392/2186 2217/2314/2187 +f 2260/2393/2188 2548/2316/2137 2259/2392/2189 +f 2217/2314/2187 2259/2392/2186 2508/2394/2190 +f 2220/2395/2138 2260/2393/2191 2548/2316/2137 +f 2221/2396/2139 2220/2395/2138 2260/2393/2192 +f 2509/2397/2135 2216/2398/2193 2261/2399/2194 +f 2135/2400/2047 2493/2401/2045 2655/2402/2195 +f 2216/2398/2193 2154/2403/2068 2261/2399/2194 +f 2493/2401/2045 2131/2404/2196 2655/2402/2195 +f 2650/2405/2188 2096/2406/2197 2510/2407/2198 +f 2131/2404/2196 2096/2406/2197 2650/2405/2188 +f 2655/2402/2195 2131/2404/2196 2650/2405/2188 +f 2510/2407/2198 2096/2406/2197 2256/2408/2181 +f 2507/2409/2199 2256/2408/2181 2257/2410/2182 +f 2510/2407/2198 2256/2408/2181 2507/2409/2199 +f 2507/2409/2199 2257/2410/2182 2261/2399/2200 +f 2261/2399/2200 2257/2410/2182 2153/2411/2201 +f 2261/2399/2200 2153/2411/2201 2154/2403/2068 +f 2592/2412/2170 2497/2413/2117 2209/2414/2124 +f 2502/2415/2162 2497/2413/2117 2592/2412/2170 +f 2648/2416/2115 2239/2417/2202 2202/2418/2203 +f 2242/2419/2165 2239/2417/2202 2648/2416/2115 +f 2546/2420/2122 2553/2421/2165 2200/2422/2115 +f 2546/2420/2122 2556/2423/2204 2553/2421/2165 +f 2250/2424/2204 2246/2425/2170 2499/2426/2124 +f 2207/2427/2122 2250/2424/2204 2499/2426/2124 +f 2590/2428/2167 2442/2429/2160 2436/2430/2113 +f 2205/2431/2205 2590/2428/2167 2436/2430/2113 +f 2438/2432/2205 2243/2433/2167 2253/2434/2178 +f 2253/2434/2178 2506/2435/2172 2208/2436/2123 +f 2208/2436/2123 2438/2432/2205 2253/2434/2178 +f 2245/2437/2169 2204/2438/2119 2652/2439/2123 +f 2248/2440/2172 2245/2437/2169 2652/2439/2123 +f 2245/2437/2169 2199/2441/2114 2204/2438/2119 +f 2694/2442/2164 2199/2441/2114 2245/2437/2169 +f 2241/2443/2206 2201/2444/2116 2199/2441/2114 +f 2694/2442/2164 2241/2443/2206 2199/2441/2114 +f 2203/2445/2207 2201/2444/2116 2241/2443/2206 +f 2203/2445/2207 2241/2443/2206 2244/2446/2208 +f 2445/2447/2171 2244/2446/2209 2203/2445/2210 +f 2440/2448/2121 2445/2447/2171 2203/2445/2210 +f 2206/2449/2121 2247/2450/2211 2594/2451/2212 +f 2187/2452/2102 2188/2453/2213 2233/2454/2152 +f 2425/2455/2214 2187/2452/2102 2233/2454/2152 +f 2233/2454/2152 2188/2453/2213 2213/2456/2130 +f 2233/2454/2152 2213/2456/2130 2255/2457/2180 +f 2255/2457/2180 2213/2456/2130 2206/2449/2121 +f 2594/2451/2212 2255/2457/2180 2206/2449/2121 +f 2552/2458/2157 2191/2459/2107 2455/2460/2215 +f 2455/2460/2215 2191/2459/2107 2194/2461/2109 +f 2450/2462/2175 2455/2460/2215 2194/2461/2109 +f 2450/2462/2175 2194/2461/2109 2210/2463/2125 +f 2595/2464/2184 2210/2463/2125 2676/2465/2065 +f 2585/2230/2064 2258/2466/2184 2675/2231/2065 +f 2236/2467/2156 2552/2458/2157 2455/2460/2215 +f 2448/2468/2173 2236/2467/2156 2455/2460/2215 +f 2249/2469/2173 2262/2470/2216 2251/2471/2175 +f 2595/2464/2184 2450/2462/2175 2210/2463/2125 +f 2436/2430/2217 2541/2283/2106 2434/2282/2105 +f 2436/2430/2217 2434/2282/2105 2442/2429/2160 +f 2127/2195/2038 2423/2194/2037 2422/2279/2102 2421/2278/2101 +f 2187/2452/2102 2425/2455/2214 2116/2202/2032 2126/2201/2037 +f 2424/2185/2032 2232/2350/2151 2512/2352/2143 2109/2186/2033 +f 2111/2174/2027 2511/2171/2025 2224/2342/2143 2225/2344/2145 +f 2183/2275/2098 2184/2276/2099 2181/2272/2096 2172/2260/2086 2170/2259/2085 2180/2271/2095 +f 2170/2259/2085 2172/2260/2086 2128/2196/2039 2167/2256/2082 +f 2186/2322/2140 2167/2256/2082 2128/2196/2039 2127/2195/2038 +f 2264/2472/2218 2265/2473/2219 2111/2174/2027 2225/2344/2145 +f 2266/2474/2220 2265/2473/2219 2264/2472/2218 2263/2475/2221 2267/2476/2222 +f 2229/2347/2148 2225/2344/2145 2227/2345/2146 +f 2264/2472/2218 2225/2344/2145 2229/2347/2148 +f 2110/2173/2026 2111/2174/2027 2265/2473/2219 +f 2112/2179/2028 2110/2173/2026 2265/2473/2219 +f 2231/2349/2150 2229/2347/2148 2230/2348/2149 +f 2264/2472/2218 2229/2347/2148 2263/2475/2221 +f 2263/2475/2221 2229/2347/2148 2050/2076/1962 +f 2050/2076/1962 2229/2347/2148 2231/2349/2150 +f 2087/2137/2002 2112/2179/2028 2266/2474/2220 +f 2114/2183/2030 2112/2179/2028 2087/2137/2002 +f 2113/2182/2029 2112/2179/2028 2114/2183/2030 +f 2266/2474/2220 2112/2179/2028 2265/2473/2219 +f 2267/2476/2222 2263/2475/2221 2087/2137/2002 +f 2087/2137/2002 2263/2475/2221 2050/2076/1962 +f 2087/2137/2002 2266/2474/2220 2267/2476/2222 +f 2435/2285/2108 2539/2284/2107 2237/2477/2223 +f 2268/2478/2224 2598/2479/2225 2597/2480/2226 +f 2268/2478/2224 2597/2480/2226 2599/2481/2227 +f 2272/2482/2228 2268/2478/2224 2599/2481/2227 +f 2279/2483/2229 2570/2484/1988 2276/2485/2230 +f 2277/2486/2231 2642/2487/2232 2569/2488/1988 +f 2278/2489/2232 2075/2490/1988 2621/2491/2230 2625/2492/2229 +f 2626/2493/2233 2622/2494/2230 2567/2495/1988 2042/2496/1989 +f 2624/2497/2234 2046/2498/1958 2600/2499/1953 +f 2486/2500/1952 2624/2497/2234 2600/2499/1953 +f 2280/2501/2235 2274/2502/2236 2281/2503/2237 +f 2281/2503/2237 2274/2504/2236 2282/2505/2238 +f 2282/2505/2238 2274/2506/2236 2273/2507/2239 +f 2275/2508/2240 2068/2509/1978 2077/2123/1995 +f 2067/2510/1976 2068/2509/1978 2275/2508/2240 +f 2273/2507/2239 2275/2511/2240 2283/2512/2241 +f 2282/2505/2238 2273/2507/2239 2283/2512/2241 +f 2284/2513/2242 2286/2514/2243 2627/2515/2244 +f 2283/2516/2241 2286/2514/2243 2284/2513/2242 +f 2284/2513/2242 2627/2515/2244 2598/2479/2225 +f 2283/2516/2241 2284/2513/2242 2287/2517/2245 +f 2268/2478/2224 2284/2513/2242 2598/2479/2225 +f 2274/2518/2236 2123/2519/2246 2288/2520/2247 +f 2273/2521/2239 2274/2518/2236 2085/2522/2001 +f 2085/2522/2001 2274/2518/2236 2288/2520/2247 +f 2282/2523/2238 2283/2516/2241 2287/2517/2245 +f 2282/2523/2238 2287/2517/2245 2289/2524/2248 +f 2290/2525/2249 2292/2526/2250 2291/2527/2251 +f 2293/2528/2252 2292/2526/2250 2290/2525/2249 +f 2291/2527/2251 2295/2529/2253 2294/2530/2254 +f 2290/2525/2249 2291/2527/2251 2296/2531/2255 +f 2296/2531/2255 2291/2527/2251 2294/2530/2254 +f 2293/2528/2252 2290/2525/2249 2297/2532/2256 +f 2297/2532/2256 2290/2525/2249 2296/2531/2255 +f 2295/2529/2253 2291/2527/2251 2298/2533/2257 +f 2295/2529/2253 2298/2533/2257 2299/2534/2258 +f 2294/2530/2254 2299/2534/2258 2300/2535/2259 +f 2295/2529/2253 2299/2534/2258 2294/2530/2254 +f 2294/2530/2254 2300/2535/2259 2301/2536/2253 +f 2645/2537/2231 2294/2530/2254 2301/2538/2253 +f 2296/2531/2255 2294/2530/2254 2645/2537/2231 +f 2643/2539/2232 2296/2531/2255 2645/2537/2231 +f 2297/2532/2256 2296/2531/2255 2643/2539/2232 +f 2293/2528/2252 2297/2532/2256 2643/2539/2232 +f 2623/2540/2260 2293/2528/2252 2643/2539/2232 +f 2645/2537/2231 2301/2538/2253 2568/2541/1988 +f 2680/2542/2261 2303/2543/2262 2567/2544/1988 +f 2572/2545/2263 2680/2542/2261 2567/2544/1988 +f 2303/2543/2262 2680/2542/2261 2628/2546/2264 +f 2306/2547/2265 2303/2543/2262 2628/2546/2264 +f 2286/2514/2243 2306/2547/2265 2628/2546/2264 +f 2286/2514/2243 2628/2546/2264 2627/2515/2244 +f 2119/2164/2020 2307/2548/2266 2104/2165/2021 +f 2120/2549/2267 2307/2548/2266 2119/2164/2020 +f 2123/2550/2246 2307/2548/2266 2120/2549/2267 +f 2636/2551/2268 2672/2552/2024 2274/2553/2236 +f 2274/2554/2236 2672/2552/2024 2307/2548/2266 +f 2307/2548/2266 2672/2552/2024 2104/2165/2021 +f 2309/2555/2269 2636/2551/2268 2274/2556/2236 +f 2310/2557/2270 2309/2555/2269 2274/2556/2236 +f 2274/2554/2236 2307/2548/2266 2123/2550/2246 +f 2311/2558/2271 2310/2557/2270 2281/2559/2237 +f 2281/2559/2237 2310/2557/2270 2280/2560/2235 +f 2280/2561/2235 2310/2557/2270 2274/2556/2236 +f 2312/2562/2272 2311/2558/2271 2281/2559/2237 +f 2312/2562/2272 2281/2559/2237 2282/2523/2238 +f 2313/2563/2273 2312/2562/2272 2282/2523/2238 +f 2289/2524/2248 2313/2563/2273 2282/2523/2238 +f 2635/2564/2041 2602/2565/2031 2108/2566/2024 +f 2308/2567/2268 2635/2564/2041 2108/2566/2024 +f 2275/2511/2240 2077/2568/1995 2283/2512/2241 +f 2283/2512/2241 2077/2568/1995 2286/2569/2243 +f 2067/2510/1976 2275/2508/2240 2273/2521/2239 +f 2085/2522/2001 2067/2510/1976 2273/2521/2239 +f 2121/2570/2274 2288/2520/2247 2123/2519/2246 +f 2122/2571/1930 2288/2520/2247 2121/2570/2274 +f 2085/2522/2001 2288/2520/2247 2122/2571/1930 +f 2086/2572/1932 2085/2522/2001 2122/2571/1930 +f 2298/2533/2257 2291/2527/2251 2603/2573/2275 +f 2603/2573/2275 2291/2527/2251 2292/2526/2250 +f 2603/2573/2275 2292/2526/2250 2604/2574/2276 +f 2604/2574/2276 2292/2526/2250 2460/2575/2277 +f 2605/2576/2276 2316/2577/2277 2640/2060/1950 +f 2317/2578/2278 2605/2576/2276 2640/2060/1950 +f 2640/2060/1950 2316/2577/2277 2681/2057/1947 +f 2318/2579/2279 2641/2580/1950 2632/2581/2280 +f 2320/2582/2281 2318/2579/2279 2632/2581/2280 +f 2321/2583/2282 2320/2582/2281 2632/2581/2280 +f 2322/2584/2283 2321/2583/2282 2632/2581/2280 +f 2323/2585/2284 2321/2583/2282 2322/2584/2283 +f 2324/2586/2285 2037/2587/1950 2318/2579/2279 +f 2158/2238/2072 2325/2588/2286 2321/2583/2282 +f 2323/2585/2284 2158/2238/2072 2321/2583/2282 +f 2326/2589/2287 2038/2590/2288 2324/2586/2285 +f 2327/2591/2289 2320/2582/2281 2321/2583/2282 +f 2325/2588/2286 2327/2591/2289 2321/2583/2282 +f 2326/2589/2287 2318/2579/2279 2320/2582/2281 +f 2327/2591/2289 2326/2589/2287 2320/2582/2281 +f 2326/2589/2287 2324/2586/2285 2318/2579/2279 +f 2327/2591/2289 2160/2240/2074 2326/2589/2287 +f 2325/2588/2286 2156/2236/2070 2327/2591/2289 +f 2159/2239/2073 2160/2240/2074 2327/2591/2289 +f 2156/2236/2070 2159/2239/2073 2327/2591/2289 +f 2158/2238/2072 2156/2236/2070 2325/2588/2286 +f 2160/2240/2074 2038/2590/2288 2326/2589/2287 +f 2160/2240/2074 2161/2592/2076 2038/2590/2288 +f 2683/2593/2290 2606/2594/2291 2329/2595/2292 +f 2606/2594/2291 2608/2596/2293 2513/2597/2294 +f 2329/2595/2292 2606/2594/2291 2513/2597/2294 +f 2333/2598/2295 2573/2599/2296 2472/2600/2297 +f 2336/2601/2298 2333/2598/2295 2472/2600/2297 +f 2515/2602/2299 2612/2603/2300 2610/2604/2301 +f 2516/2605/2302 2515/2602/2299 2610/2604/2301 +f 2464/2606/2303 2576/2607/2304 2337/2608/2299 +f 2343/2609/2305 2464/2606/2303 2337/2608/2299 +f 2576/2607/2304 2517/2610/2302 2337/2608/2299 +f 2519/2611/2300 2343/2609/2305 2337/2608/2299 +f 2345/2612/2306 2343/2609/2305 2519/2611/2300 +f 2562/2613/2307 2653/2614/2308 2654/2615/2309 +f 2562/2613/2307 2349/2616/2310 2653/2614/2308 +f 2574/2617/2311 2562/2613/2307 2654/2615/2309 +f 2349/2616/2310 2629/2618/2312 2653/2614/2308 +f 2685/2619/2313 2345/2612/2306 2519/2611/2300 +f 2520/2620/2314 2562/2613/2307 2574/2617/2311 +f 2575/2621/2315 2520/2620/2314 2574/2617/2311 +f 2349/2616/2310 2630/2622/2316 2629/2618/2312 +f 2462/2623/2317 2630/2622/2316 2349/2616/2310 +f 2464/2606/2318 2576/2607/2319 2357/2624/2320 +f 2464/2606/2318 2357/2624/2320 2684/2625/2321 +f 2464/2606/2303 2477/2626/2322 2684/2625/2321 +f 2343/2609/2305 2465/2627/2323 2464/2606/2303 +f 2359/2628/2324 2630/2622/2316 2462/2623/2317 +f 2575/2621/2315 2360/2629/2325 2520/2620/2314 +f 2360/2629/2325 2462/2623/2317 2520/2620/2314 +f 2360/2629/2325 2359/2628/2324 2462/2623/2317 +f 2359/2628/2324 2345/2612/2306 2685/2619/2313 +f 2359/2628/2324 2685/2619/2313 2630/2622/2316 +f 2522/2630/2326 2360/2629/2325 2575/2621/2315 +f 2333/2598/2295 2362/2631/2327 2573/2599/2296 +f 2362/2631/2327 2523/2632/2328 2573/2599/2296 +f 2362/2631/2327 2364/2633/2329 2523/2632/2328 +f 2364/2633/2329 2522/2630/2326 2523/2632/2328 +f 2364/2633/2329 2360/2629/2325 2522/2630/2326 +f 2466/2634/2330 2469/2635/2331 2632/2581/2280 +f 2470/2636/2332 2633/2637/2333 2319/2638/2334 +f 2634/2639/2335 2322/2584/2283 2632/2581/2280 +f 2471/2640/2336 2466/2634/2330 2632/2581/2280 +f 2634/2639/2335 2524/2641/2337 2322/2584/2283 +f 2524/2641/2337 2525/2642/2338 2322/2584/2283 +f 2525/2642/2338 2478/2643/2292 2322/2584/2283 +f 2641/2580/1950 2471/2640/2336 2632/2581/2280 +f 2535/2644/2278 2471/2640/2336 2641/2580/1950 +f 2514/2645/2294 2478/2643/2292 2525/2642/2338 +f 2336/2601/2298 2175/2265/2090 2333/2598/2295 +f 2176/2266/2091 2175/2265/2090 2336/2601/2298 +f 2175/2265/2090 2362/2631/2327 2333/2598/2295 +f 2364/2633/2329 2177/2267/2092 2360/2629/2325 +f 2175/2265/2090 2177/2267/2092 2362/2631/2327 +f 2177/2267/2092 2364/2633/2329 2362/2631/2327 +f 2177/2267/2092 2359/2628/2324 2360/2629/2325 +f 2177/2267/2092 2166/2253/2081 2359/2628/2324 +f 2359/2628/2324 2164/2255/2079 2026/2646/1941 +f 2166/2253/2081 2164/2255/2079 2359/2628/2324 +f 2026/2646/1941 2025/2647/1940 2345/2612/2306 +f 2359/2628/2324 2026/2646/1941 2345/2612/2306 +f 2345/2612/2306 2157/2237/2071 2343/2609/2305 +f 2345/2612/2306 2162/2648/2077 2157/2237/2071 +f 2345/2612/2306 2025/2647/1940 2162/2648/2077 +f 2157/2237/2071 2158/2238/2072 2465/2627/2323 +f 2343/2609/2305 2157/2237/2071 2465/2627/2323 +f 2358/2649/2323 2323/2585/2284 2341/2650/2339 +f 2358/2649/2323 2158/2238/2072 2323/2585/2284 +f 2341/2650/2339 2323/2585/2284 2322/2584/2283 +f 2322/2584/2283 2478/2643/2292 2341/2650/2339 +f 2461/2651/2277 2292/2526/2250 2293/2528/2252 +f 2034/2652/2340 2461/2651/2277 2293/2528/2252 +f 2571/2653/2263 2301/2536/2253 2300/2535/2259 +f 2568/2654/1988 2301/2536/2253 2571/2653/2263 +f 2034/2652/2340 2293/2528/2252 2679/2655/2341 +f 2679/2655/2341 2293/2528/2252 2623/2540/2260 +f 2303/2656/2262 2070/2657/1981 2567/2658/1988 +f 2567/2659/1988 2070/2657/1981 2072/2660/1984 +f 2567/2659/1988 2072/2660/1984 2073/2661/1986 +f 2076/2662/1993 2070/2657/1981 2306/2663/2265 +f 2306/2663/2265 2070/2657/1981 2303/2656/2262 +f 2077/2568/1995 2076/2662/1993 2286/2569/2243 +f 2286/2569/2243 2076/2662/1993 2306/2663/2265 +f 2371/2664/2342 2613/2665/2343 2372/2666/2344 +f 2657/2667/2345 2613/2665/2343 2371/2664/2342 +f 2658/2668/2346 2657/2667/2345 2691/2669/2347 +f 2691/2669/2347 2657/2667/2345 2371/2664/2342 +f 2377/2670/2348 2691/2669/2347 2371/2664/2342 +f 2599/2481/2227 2691/2669/2347 2377/2670/2348 +f 2599/2481/2227 2377/2670/2348 2378/2671/2349 +f 2599/2481/2227 2378/2671/2349 2379/2672/2350 +f 2599/2481/2227 2379/2672/2350 2272/2482/2228 +f 2614/2673/2351 2615/2674/2352 2373/2675/2353 +f 2616/2676/2354 2615/2674/2352 2614/2673/2351 +f 2383/2677/2355 2339/2678/2300 2304/2679/2263 +f 2384/2680/2356 2339/2678/2300 2383/2677/2355 +f 2304/2679/2263 2339/2678/2300 2302/2681/2261 +f 2611/2682/2301 2339/2678/2300 2475/2683/2357 +f 2475/2683/2357 2339/2678/2300 2384/2680/2356 +f 2302/2681/2261 2339/2678/2300 2386/2684/2358 +f 2387/2685/2359 2617/2686/2360 2459/2687/2361 +f 2459/2687/2361 2617/2686/2360 2527/2688/2362 +f 2305/2689/2264 2386/2684/2358 2638/2690/2363 +f 2302/2681/2261 2386/2684/2358 2305/2689/2264 +f 2527/2688/2362 2617/2686/2360 2479/2691/2364 +f 2580/2692/2365 2387/2685/2359 2459/2687/2361 +f 2527/2688/2362 2479/2691/2364 2480/2693/2366 +f 2529/2694/2367 2580/2692/2365 2459/2687/2361 +f 2532/2695/2368 2580/2692/2365 2529/2694/2367 +f 2397/2696/2369 2384/2680/2356 2383/2677/2355 +f 2530/2697/2370 2527/2688/2362 2480/2693/2366 +f 2399/2698/2371 2397/2696/2369 2383/2677/2355 +f 2376/2699/2347 2530/2697/2370 2480/2693/2366 +f 2529/2694/2367 2530/2697/2370 2376/2699/2347 +f 2532/2695/2368 2529/2694/2367 2376/2699/2347 +f 2285/2700/2244 2305/2689/2264 2638/2690/2363 +f 2285/2700/2244 2638/2690/2363 2534/2701/2372 +f 2271/2702/2373 2532/2695/2368 2376/2699/2347 +f 2534/2701/2372 2532/2695/2368 2271/2702/2373 +f 2285/2700/2244 2534/2701/2372 2270/2703/2374 +f 2270/2703/2374 2534/2701/2372 2271/2702/2373 +f 2376/2699/2347 2480/2693/2366 2581/2704/2375 +f 2581/2704/2375 2582/2705/2376 2375/2706/2377 +f 2375/2706/2377 2582/2705/2376 2374/2707/2378 +f 2374/2707/2378 2582/2705/2376 2616/2676/2354 +f 2376/2699/2347 2581/2704/2375 2375/2706/2377 +f 2374/2707/2378 2616/2676/2354 2614/2673/2351 +f 2299/2534/2258 2298/2533/2257 2659/2708/2379 +f 2404/2709/2380 2299/2534/2258 2659/2708/2379 +f 2330/2710/2381 2299/2534/2258 2609/2711/2293 +f 2609/2711/2293 2299/2534/2258 2404/2709/2380 +f 2657/2667/2345 2380/2712/2351 2613/2665/2343 +f 2269/2713/2382 2270/2703/2374 2271/2702/2373 +f 2620/2714/2383 2399/2698/2371 2299/2534/2258 +f 2607/2715/2291 2620/2714/2383 2299/2534/2258 +f 2300/2535/2259 2383/2677/2355 2571/2653/2263 +f 2299/2534/2258 2399/2698/2371 2383/2677/2355 +f 2300/2535/2259 2299/2534/2258 2383/2677/2355 +f 2324/2586/2285 2038/2590/2288 2037/2587/1950 +f 2633/2637/2384 2406/2716/2385 2470/2636/2331 +f 2366/2717/2331 2467/2718/2386 2583/2719/2387 +f 2407/2720/2388 2369/2721/2389 2584/2722/2387 +f 2369/2721/2389 2367/2723/2390 2584/2722/2387 +f 2370/2724/2338 2407/2720/2388 2369/2721/2391 +f 2468/2725/2330 2368/2726/2392 2408/2727/2393 +f 2368/2726/2392 2536/2728/2394 2408/2727/2393 +f 2536/2728/2278 2408/2727/2395 2315/2729/2276 +f 2332/2730/2396 2370/2724/2397 2407/2720/2398 +f 2331/2731/2399 2332/2730/2293 2370/2724/2338 +f 2408/2727/2395 2314/2732/2275 2315/2729/2276 +f 2583/2719/2387 2298/2533/2257 2603/2573/2275 +f 2583/2719/2387 2603/2573/2275 2467/2718/2400 +f 2365/2733/2330 2314/2732/2275 2408/2727/2395 +f 2403/2734/2379 2298/2533/2257 2583/2719/2387 +f 2660/2735/2398 2403/2734/2379 2583/2719/2387 +f 2404/2709/2380 2403/2734/2379 2660/2735/2398 +f 2609/2711/2293 2404/2709/2380 2660/2735/2398 +f 2521/2736/2314 2561/2737/2307 2526/2738/2401 +f 2521/2736/2314 2526/2738/2401 2531/2739/2402 +f 2458/2740/2361 2457/2741/2310 2346/2742/2307 +f 2390/2743/2401 2458/2740/2361 2346/2742/2307 +f 2388/2744/2361 2528/2745/2403 2456/2746/2310 +f 2528/2745/2403 2463/2747/2404 2456/2746/2310 +f 2353/2748/2405 2398/2749/2370 2356/2750/2317 +f 2356/2750/2317 2398/2749/2370 2395/2751/2403 +f 2686/2752/2406 2344/2753/2407 2637/2754/2358 +f 2639/2755/2363 2686/2752/2406 2637/2754/2358 +f 2391/2756/2363 2352/2757/2313 2400/2758/2372 +f 2631/2759/2316 2396/2760/2408 2400/2758/2372 +f 2352/2757/2313 2631/2759/2316 2400/2758/2372 +f 2351/2761/2409 2393/2762/2410 2533/2763/2368 +f 2355/2764/2316 2351/2761/2409 2533/2763/2368 +f 2351/2761/2409 2347/2765/2308 2687/2766/2359 +f 2351/2761/2409 2687/2766/2359 2393/2762/2410 +f 2348/2767/2309 2389/2768/2360 2687/2766/2359 +f 2347/2765/2308 2348/2767/2309 2687/2766/2359 +f 2392/2769/2411 2348/2767/2309 2350/2770/2311 +f 2389/2768/2360 2348/2767/2309 2392/2769/2411 +f 2354/2771/2412 2350/2770/2311 2392/2769/2411 +f 2394/2772/2366 2354/2771/2412 2392/2769/2411 +f 2394/2772/2366 2354/2771/2315 2361/2773/2366 +f 2401/2774/2413 2394/2772/2366 2361/2773/2366 +f 2334/2775/2296 2335/2776/2297 2382/2777/2414 +f 2382/2777/2414 2335/2776/2297 2381/2778/2352 +f 2402/2779/2376 2334/2775/2296 2382/2777/2414 +f 2363/2780/2328 2334/2775/2296 2402/2779/2376 +f 2361/2773/2366 2363/2780/2328 2401/2774/2413 +f 2401/2774/2413 2363/2780/2328 2402/2779/2376 +f 2342/2781/2304 2518/2782/2415 2409/2783/2416 +f 2342/2781/2304 2409/2783/2416 2577/2784/2417 +f 2409/2783/2416 2518/2782/2415 2476/2785/2418 +f 2409/2783/2416 2476/2785/2418 2474/2786/2356 +f 2409/2783/2416 2474/2786/2356 2481/2787/2419 +f 2409/2783/2416 2481/2787/2419 2577/2784/2417 +f 2577/2784/2417 2481/2787/2419 2618/2788/2420 +f 2577/2784/2417 2618/2788/2420 2619/2789/2383 +f 2577/2784/2417 2619/2789/2383 2328/2790/2321 +f 2683/2593/2290 2405/2791/2383 2606/2594/2291 +f 2637/2754/2358 2515/2602/2299 2344/2753/2407 +f 2612/2603/2300 2515/2602/2299 2637/2754/2358 +f 2124/2192/2035 2336/2601/2298 2472/2600/2297 2473/2193/2036 +f 2182/2274/2097 2174/2264/2089 2173/2263/2088 2178/2268/2093 2179/2269/2094 2185/2277/2100 +f 2174/2264/2089 2176/2266/2091 2129/2197/2040 2173/2263/2088 +f 2336/2601/2298 2124/2192/2035 2129/2197/2040 2176/2266/2091 +f 2335/2776/2297 2125/2204/2036 2130/2203/2041 2381/2778/2352 +f 2635/2564/2041 2308/2567/2268 2373/2675/2353 2615/2674/2352 +f 2636/2551/2268 2309/2555/2269 2372/2666/2344 2613/2665/2343 +f 2412/2792/2421 2372/2666/2344 2309/2555/2269 2411/2793/2422 +f 2413/2794/2423 2412/2792/2421 2411/2793/2422 2410/2795/2424 2414/2796/2425 +f 2311/2558/2271 2309/2555/2269 2310/2557/2270 +f 2411/2793/2422 2309/2555/2269 2311/2558/2271 +f 2371/2664/2342 2372/2666/2344 2412/2792/2421 +f 2377/2670/2348 2371/2664/2342 2412/2792/2421 +f 2313/2563/2273 2311/2558/2271 2312/2562/2272 +f 2411/2793/2422 2311/2558/2271 2410/2795/2424 +f 2410/2795/2424 2311/2558/2271 2289/2524/2248 +f 2289/2524/2248 2311/2558/2271 2313/2563/2273 +f 2272/2482/2228 2377/2670/2348 2413/2794/2423 +f 2379/2672/2350 2377/2670/2348 2272/2482/2228 +f 2378/2671/2349 2377/2670/2348 2379/2672/2350 +f 2413/2794/2423 2377/2670/2348 2412/2792/2421 +f 2414/2796/2425 2410/2795/2424 2272/2482/2228 +f 2272/2482/2228 2410/2795/2424 2289/2524/2248 +f 2272/2482/2228 2413/2794/2423 2414/2796/2425 +f 2340/2797/2302 2338/2798/2301 2385/2799/2418 +f 2564/2800/1938 2560/2801/1937 2032/2802/2426 +f 2040/2803/1926 2564/2800/1938 2032/2802/2426 +f 2035/2804/2427 2036/2805/1948 2045/2806/1955 +f 2045/2806/1955 2036/2805/1948 2044/2807/1957 +f 2062/2808/1928 2120/2549/2267 2119/2164/2020 +f 2062/2809/1928 2123/2550/2246 2120/2549/2267 +f 2062/2810/1928 2121/2570/2274 2123/2811/2246 +f 2121/2570/2274 2062/2812/1928 2122/2571/1930 +f 2107/2042/1936 2062/2035/1928 2106/2169/2023 +f 2062/2813/1928 2104/2167/2021 2106/2169/2023 +f 2663/2055/1939 2666/2062/1945 2557/2056/1946 +l 2171 2062 +o 3MF_Object.005_3MF_Mesh.003 +v -175.999954 151.530212 -0.043945 +v -173.499954 152.200119 -0.043945 +v -173.499954 152.200119 -1.043945 +v -175.999954 151.530212 -1.043945 +v -120.160301 -142.299866 -0.044113 +v -122.839859 -154.299911 -0.044113 +v -122.839813 -154.299866 -1.044113 +v -146.775070 144.508667 -0.043961 +v -146.392258 148.759476 -0.043945 +v -146.392258 148.759476 -1.043945 +v -146.775070 144.508667 -1.043961 +v -154.069855 149.700089 -0.043945 +v -152.922165 144.080460 -0.043945 +v -152.930435 144.086899 -1.043945 +v -154.069855 149.700089 -1.043945 +v 124.000053 151.530106 -0.043945 +v 126.500046 152.200012 -0.043945 +v 126.500046 152.200012 -1.043945 +v 124.000053 151.530106 -1.043945 +v 122.169937 149.699997 -0.043945 +v 122.169937 149.699997 -1.043945 +v 148.300049 142.855515 -0.043961 +v 150.000046 142.399994 -0.043961 +v 150.000046 142.399994 -1.043961 +v 148.300049 142.855515 -1.043961 +v 173.500046 152.199982 -0.043945 +v 175.565979 151.827972 -0.043945 +v 175.565979 151.827972 -1.043945 +v 173.500046 152.199982 -1.043945 +v 116.499977 -138.639709 -0.044098 +v 111.499954 -137.299988 -0.044098 +v 111.499954 -137.299988 -1.044098 +v 116.499977 -138.639709 -1.044098 +v -111.500015 -137.299927 -0.044098 +v -111.500015 -137.299927 -1.044098 +v -151.699951 142.855606 -0.043961 +v -151.699951 142.855606 -1.043961 +v 143.159424 151.992310 -0.043945 +v 145.135559 150.735519 -0.043945 +v 145.135559 150.735519 -1.043945 +v 143.159424 151.992310 -1.043945 +v 120.160255 -142.300003 -0.044113 +v 120.160217 -142.299957 -1.044113 +v 152.930527 144.086807 -0.043945 +v 154.069946 149.699997 -0.043945 +v 154.069946 149.699997 -1.043945 +v 152.922256 144.080368 -1.043945 +v 146.219452 149.113419 -0.043945 +v 146.219452 149.113419 -1.043945 +v 122.839699 -154.299957 -0.044113 +v -173.500046 -157.960190 -0.044113 +v -177.160248 -154.299896 -0.044113 +v -177.160248 -154.299896 -1.044113 +v -173.500046 -157.960190 -1.044113 +v -168.500046 -159.299896 -0.044113 +v -168.500046 -159.299896 -1.044113 +v 121.500046 147.200012 -0.043945 +v 121.500046 147.200012 -1.043945 +v 168.499954 -159.300018 -0.044113 +v 131.499954 -159.300003 -0.044113 +v 131.499954 -159.300003 -1.044113 +v 168.499954 -159.300018 -1.044113 +v -178.500046 -149.299896 -0.044113 +v -178.500046 -149.299896 -1.044113 +v 151.700043 142.855515 -0.043961 +v 151.700043 142.855515 -1.043961 +v -149.999954 142.400101 -0.043961 +v -148.299957 142.855606 -0.043961 +v -148.299957 142.855606 -1.043961 +v -149.999954 142.400101 -1.043961 +v -142.899719 152.069977 -0.043945 +v -126.499962 152.200104 -0.043945 +v -126.499962 152.200104 -1.043945 +v -142.899719 152.069977 -1.043945 +v -116.500046 -138.639633 -0.044098 +v -120.160347 -142.299911 -1.044113 +v -116.500046 -138.639633 -1.044098 +v -122.169853 149.700089 -0.043945 +v -122.169853 149.700089 -1.043945 +v 178.499954 -149.300018 -0.044113 +v 177.160156 -154.300018 -0.044113 +v 177.160156 -154.300018 -1.044113 +v 178.499954 -149.300018 -1.044113 +v 155.900040 151.530106 -0.043945 +v 158.400040 152.200012 -0.043945 +v 158.400040 152.200012 -1.043945 +v 155.900040 151.530106 -1.043945 +v 146.769791 144.699051 -0.043945 +v 146.769791 144.699051 -1.043945 +v 173.499954 -157.960312 -0.044113 +v 173.499954 -157.960312 -1.044113 +v 119.653809 141.907761 -0.043961 +v 121.345543 143.560516 -0.043961 +v 121.345543 143.560516 -1.043961 +v 119.653809 141.907761 -1.043961 +v 126.499947 -157.960297 -0.044113 +v 122.839745 -154.300003 -1.044113 +v 126.499947 -157.960297 -1.044113 +v -119.639458 141.854614 -0.043961 +v -119.639458 141.854614 -1.043961 +v -131.500046 -159.299911 -0.044113 +v -131.500046 -159.299911 -1.044113 +v 178.500046 147.199997 -0.043945 +v 178.500046 147.199997 -1.043945 +v -178.127930 149.266052 -0.043945 +v -178.127930 149.266052 -1.043945 +v 177.830139 149.699997 -0.043945 +v 177.830139 149.699997 -1.043945 +v -121.292206 143.546326 -0.043961 +v -121.292206 143.546326 -1.043961 +v -121.499954 147.200104 -0.043945 +v -121.499954 147.200104 -1.043945 +v -156.334015 151.828079 -0.043945 +v -156.334015 151.828079 -1.043945 +v -126.500061 -157.960205 -0.044113 +v -126.500061 -157.960205 -1.044113 +v 175.687531 -140.020432 -1.044098 +v 175.695587 -140.022873 -0.044098 +v 175.789291 -139.286743 -0.044083 +v 175.789291 -139.286743 -1.044113 +v 175.222610 -140.890244 -0.044098 +v 174.464264 -141.523285 -0.044113 +v 173.516510 -141.802185 -0.044113 +v 172.576523 -141.721710 -0.044113 +v 171.659927 -141.247116 -0.044113 +v 171.173004 -140.687088 -0.044113 +v 170.849991 -140.020447 -0.044067 +v 170.748215 -139.286743 -0.044098 +v 174.872208 -141.240646 -1.044098 +v 175.364502 -140.687088 -1.044098 +v 170.753326 -139.039001 -1.044098 +v 170.841949 -138.550598 -0.044067 +v 175.695587 -138.550613 -1.044083 +v 175.687531 -138.553055 -0.044083 +v 175.222626 -137.683273 -1.044098 +v 175.364502 -137.886398 -0.044098 +v 174.840088 -137.302017 -0.044083 +v 173.268753 -136.766205 -1.044113 +v 173.268753 -136.766205 -0.044083 +v 172.491516 -136.877579 -0.044083 +v 172.576492 -136.851791 -1.044113 +v 172.976501 -141.801270 -1.044098 +v 171.032211 -138.091232 -1.044067 +v 171.314865 -137.683289 -0.044083 +v 174.004913 -141.713562 -1.044113 +v 174.669098 -137.190994 -1.044113 +v 172.304184 -141.615417 -1.044098 +v 173.960999 -136.851791 -0.044083 +v 174.045975 -136.877579 -1.044113 +v 171.697418 -137.302048 -1.044098 +v 171.868423 -137.190994 -0.044098 +v 170.841949 -140.022903 -1.044067 +v 171.469711 -141.085831 -1.044128 +v -173.468811 -136.766144 -0.044098 +v -173.468811 -136.766144 -1.044098 +v -172.691589 -136.877518 -1.044098 +v -172.776550 -136.851730 -0.044098 +v -172.068466 -137.190933 -1.044098 +v -172.068466 -137.190933 -0.044098 +v -171.484070 -137.715363 -1.044098 +v -171.540390 -137.646744 -0.044098 +v -171.140137 -138.322113 -1.044098 +v -171.059647 -138.509460 -0.044098 +v -170.945602 -139.082809 -1.044098 +v -170.945602 -139.490570 -0.044098 +v -171.059631 -140.063904 -1.044098 +v -171.215714 -140.440720 -0.044098 +v -171.514908 -140.890137 -1.044113 +v -171.859985 -141.247055 -0.044113 +v -172.236496 -141.497925 -1.044113 +v -172.776581 -141.721649 -0.044113 +v -173.176559 -141.801208 -1.044113 +v -173.761063 -141.801208 -0.044113 +v -173.960541 -141.758789 -1.044113 +v -174.701111 -141.497940 -0.044113 +v -174.622803 -141.539795 -1.044113 +v -175.429184 -140.895493 -1.044113 +v -175.422684 -140.890167 -0.044113 +v -175.903778 -139.978928 -1.044098 +v -175.797485 -140.251251 -0.044098 +v -175.983337 -139.578964 -0.044098 +v -175.983337 -138.994415 -1.044098 +v -175.903778 -138.594452 -0.044098 +v -175.797485 -138.322113 -1.044098 +v -175.397217 -137.646729 -1.044083 +v -175.453537 -137.715347 -0.044083 +v -174.869141 -137.190918 -1.044098 +v -174.869141 -137.190918 -0.044098 +v -174.161072 -136.851730 -1.044083 +v -174.246048 -136.877518 -0.044083 +v 173.602341 149.253555 -0.043945 +v 173.602341 149.253555 -1.043945 +v 174.379547 149.142197 -1.043945 +v 174.294586 149.167969 -0.043945 +v 175.242279 148.661438 -1.043945 +v 175.173691 148.717743 -0.043945 +v 175.855469 147.886993 -1.043945 +v 175.813599 147.965302 -0.043945 +v 176.118973 146.922897 -1.043945 +v 176.074463 147.224701 -0.043945 +v 176.125565 146.529114 -0.043945 +v 176.074448 146.241287 -1.043945 +v 175.813583 145.500717 -1.043945 +v 175.855453 145.579025 -0.043945 +v 175.205795 144.779114 -1.043945 +v 175.384628 144.950729 -0.043945 +v 174.756348 144.479919 -0.043945 +v 174.379562 144.323837 -1.043930 +v 173.806229 144.209808 -0.043945 +v 173.398468 144.209808 -1.043930 +v 173.110611 144.260910 -0.043945 +v 172.637772 144.404343 -1.043945 +v 172.370010 144.521790 -0.043945 +v 172.030991 144.748306 -1.043930 +v 171.648499 145.129501 -0.043945 +v 171.506592 145.332687 -1.043945 +v 171.167389 146.040756 -1.043945 +v 171.193176 145.955795 -0.043945 +v 171.081802 146.733017 -1.043945 +v 171.081802 146.733017 -0.043945 +v 171.193176 147.510254 -1.043945 +v 171.167389 147.425278 -0.043945 +v 171.673965 148.373016 -1.043945 +v 171.617661 148.304398 -0.043945 +v 172.202011 148.828781 -1.043945 +v 172.202011 148.828781 -0.043945 +v 172.910110 149.167969 -1.043945 +v 172.825150 149.142212 -0.043945 +v -173.088669 149.407181 -0.043945 +v -173.000290 149.398468 -1.043945 +v -172.060303 149.095230 -1.043945 +v -172.138580 149.137070 -0.043945 +v -171.510284 148.666245 -1.043945 +v -171.510284 148.666245 -0.043945 +v -171.039474 148.037964 -1.043945 +v -171.081329 148.116257 -0.043945 +v -170.820465 147.375687 -1.043945 +v -170.778061 147.176178 -0.043945 +v -170.778061 146.591751 -1.043945 +v -170.820465 146.392227 -0.043945 +v -171.177094 145.470444 -1.043945 +v -171.039474 145.729950 -0.043945 +v -171.510284 145.101669 -0.043945 +v -172.060287 144.672684 -1.043945 +v -172.138565 144.630859 -0.043945 +v -172.800842 144.411850 -1.043945 +v -173.088699 144.360748 -0.043945 +v -173.496460 144.360748 -1.043930 +v -174.069778 144.474777 -0.043945 +v -174.446609 144.630859 -1.043945 +v -174.692917 144.788208 -0.043945 +v -175.252930 145.275116 -1.043945 +v -175.246429 145.280441 -0.043945 +v -175.727524 146.191650 -1.043945 +v -175.701752 146.106705 -0.043945 +v -175.813110 146.883957 -1.043945 +v -175.813110 146.883957 -0.043945 +v -175.701752 147.661209 -1.043945 +v -175.727524 147.576263 -0.043945 +v -175.220963 148.523956 -1.043945 +v -175.277283 148.455338 -0.043945 +v -174.692902 148.979721 -1.043945 +v -174.692902 148.979721 -0.043945 +v -173.984802 149.318909 -1.043945 +v -174.069763 149.293152 -0.043945 +v -175.999954 151.530212 -0.043945 +v -175.999954 151.530212 -0.043945 +v -173.499954 152.200119 -0.043945 +v -173.499954 152.200119 -0.043945 +v -175.999954 151.530212 -1.043945 +v -175.999954 151.530212 -1.043945 +v -146.775070 144.508667 -0.043961 +v -146.775070 144.508667 -0.043961 +v -146.392258 148.759476 -0.043945 +v -146.392258 148.759476 -0.043945 +v -146.775070 144.508667 -1.043961 +v -146.775070 144.508667 -1.043961 +v 174.294586 149.167969 -0.043945 +v 175.173691 148.717743 -0.043945 +v 124.000053 151.530106 -0.043945 +v 124.000053 151.530106 -0.043945 +v 126.500046 152.200012 -0.043945 +v 126.500046 152.200012 -0.043945 +v 124.000053 151.530106 -1.043945 +v 124.000053 151.530106 -1.043945 +v 122.169937 149.699997 -0.043945 +v 122.169937 149.699997 -0.043945 +v 148.300049 142.855515 -0.043961 +v 148.300049 142.855515 -0.043961 +v 150.000046 142.399994 -0.043961 +v 150.000046 142.399994 -0.043961 +v 148.300049 142.855515 -1.043961 +v 148.300049 142.855515 -1.043961 +v 116.499977 -138.639709 -0.044098 +v 116.499977 -138.639709 -0.044098 +v 111.499954 -137.299988 -0.044098 +v 111.499954 -137.299988 -0.044098 +v 171.314865 -137.683289 -0.044083 +v 171.314865 -137.683289 -0.044083 +v 171.697418 -137.302048 -1.044098 +v 171.697418 -137.302048 -1.044098 +v 116.499977 -138.639709 -1.044098 +v 116.499977 -138.639709 -1.044098 +v 143.159424 151.992310 -0.043945 +v 143.159424 151.992310 -0.043945 +v 145.135559 150.735519 -0.043945 +v 145.135559 150.735519 -0.043945 +v 171.506592 145.332687 -1.043945 +v 171.167389 146.040756 -1.043945 +v 143.159424 151.992310 -1.043945 +v 143.159424 151.992310 -1.043945 +v 120.160255 -142.300003 -0.044113 +v 120.160255 -142.300003 -0.044113 +v 154.069946 149.699997 -1.043945 +v 154.069946 149.699997 -1.043945 +v 152.922256 144.080368 -1.043945 +v 152.922256 144.080368 -1.043945 +v -177.160248 -154.299896 -1.044113 +v -177.160248 -154.299896 -1.044113 +v -173.500046 -157.960190 -1.044113 +v -173.500046 -157.960190 -1.044113 +v 172.202011 148.828781 -0.043945 +v 172.202011 148.828781 -0.043945 +v 172.825150 149.142212 -0.043945 +v 131.499954 -159.300003 -1.044113 +v 131.499954 -159.300003 -1.044113 +v 168.499954 -159.300018 -1.044113 +v 168.499954 -159.300018 -1.044113 +v -178.500046 -149.299896 -1.044113 +v -178.500046 -149.299896 -1.044113 +v -149.999954 142.400101 -0.043961 +v -149.999954 142.400101 -0.043961 +v -148.299957 142.855606 -0.043961 +v -148.299957 142.855606 -0.043961 +v -149.999954 142.400101 -1.043961 +v -149.999954 142.400101 -1.043961 +v -116.500046 -138.639633 -0.044098 +v -116.500046 -138.639633 -0.044098 +v -120.160301 -142.299866 -0.044113 +v -120.160301 -142.299866 -0.044113 +v -116.500046 -138.639633 -1.044098 +v -116.500046 -138.639633 -1.044098 +v -152.930435 144.086899 -1.043945 +v -152.930435 144.086899 -1.043945 +v -151.699951 142.855606 -1.043961 +v -151.699951 142.855606 -1.043961 +v 177.160156 -154.300018 -1.044113 +v 177.160156 -154.300018 -1.044113 +v 178.499954 -149.300018 -1.044113 +v 178.499954 -149.300018 -1.044113 +v 155.900040 151.530106 -1.043945 +v 155.900040 151.530106 -1.043945 +v 146.769791 144.699051 -0.043945 +v 146.769791 144.699051 -0.043945 +v 173.499954 -157.960312 -0.044113 +v 173.499954 -157.960312 -0.044113 +v 173.499954 -157.960312 -1.044113 +v 173.499954 -157.960312 -1.044113 +v 171.081802 146.733017 -0.043945 +v 171.081802 146.733017 -0.043945 +v 171.167389 147.425278 -0.043945 +v 126.499947 -157.960297 -1.044113 +v 126.499947 -157.960297 -1.044113 +v -175.246429 145.280441 -0.043945 +v -175.701752 146.106705 -0.043945 +v -178.127930 149.266052 -0.043945 +v -178.127930 149.266052 -0.043945 +v -178.127930 149.266052 -1.043945 +v -178.127930 149.266052 -1.043945 +v 175.813599 147.965302 -0.043945 +v 176.074463 147.224701 -0.043945 +v -156.334015 151.828079 -0.043945 +v -156.334015 151.828079 -0.043945 +v -156.334015 151.828079 -1.043945 +v -156.334015 151.828079 -1.043945 +v -174.692902 148.979721 -0.043945 +v -174.692902 148.979721 -0.043945 +v -174.069763 149.293152 -0.043945 +v 175.695587 -140.022873 -0.044098 +v 175.222610 -140.890244 -0.044098 +v 175.222610 -140.890244 -0.044098 +v 172.576523 -141.721710 -0.044113 +v 172.576523 -141.721710 -0.044113 +v 171.659927 -141.247116 -0.044113 +v 175.364502 -140.687088 -1.044098 +v 175.687531 -140.020432 -1.044098 +v 175.695587 -138.550613 -1.044083 +v 175.222626 -137.683273 -1.044098 +v 175.222626 -137.683273 -1.044098 +v 172.304184 -141.615417 -1.044098 +v 172.304184 -141.615417 -1.044098 +v 172.491516 -136.877579 -0.044083 +v 171.868423 -137.190994 -0.044098 +v 174.872208 -141.240646 -1.044098 +v 174.872208 -141.240646 -1.044098 +v 174.004913 -141.713562 -1.044113 +v -148.299957 142.855606 -1.043961 +v -148.299957 142.855606 -1.043961 +v -172.691589 -136.877518 -1.044098 +v -172.068466 -137.190933 -1.044098 +v -172.068466 -137.190933 -1.044098 +v -171.140137 -138.322113 -1.044098 +v -170.945602 -139.082809 -1.044098 +v -170.945602 -139.082809 -1.044098 +v -173.500046 -157.960190 -0.044113 +v -173.500046 -157.960190 -0.044113 +v -171.059631 -140.063904 -1.044098 +v -171.059631 -140.063904 -1.044098 +v -171.514908 -140.890137 -1.044113 +v -171.514908 -140.890137 -1.044113 +v -172.236496 -141.497925 -1.044113 +v -172.236496 -141.497925 -1.044113 +v -172.776581 -141.721649 -0.044113 +v -172.776581 -141.721649 -0.044113 +v -173.176559 -141.801208 -1.044113 +v -173.176559 -141.801208 -1.044113 +v 176.125565 146.529114 -0.043945 +v 176.125565 146.529114 -0.043945 +v 175.855453 145.579025 -0.043945 +v -175.903778 -139.978928 -1.044098 +v -175.903778 -139.978928 -1.044098 +v -175.797485 -140.251251 -0.044098 +v -175.797485 -140.251251 -0.044098 +v -175.797485 -138.322113 -1.044098 +v -175.797485 -138.322113 -1.044098 +v -175.903778 -138.594452 -0.044098 +v -175.903778 -138.594452 -0.044098 +v -175.397217 -137.646729 -1.044083 +v -173.499954 152.200119 -1.043945 +v -173.499954 152.200119 -1.043945 +v -146.392258 148.759476 -1.043945 +v -146.392258 148.759476 -1.043945 +v 176.074448 146.241287 -1.043945 +v 176.074448 146.241287 -1.043945 +v 126.500046 152.200012 -1.043945 +v 126.500046 152.200012 -1.043945 +v 175.205795 144.779114 -1.043945 +v 175.205795 144.779114 -1.043945 +v 174.756348 144.479919 -0.043945 +v 174.756348 144.479919 -0.043945 +v 150.000046 142.399994 -1.043961 +v 150.000046 142.399994 -1.043961 +v 173.398468 144.209808 -1.043930 +v 173.398468 144.209808 -1.043930 +v 173.110611 144.260910 -0.043945 +v 173.110611 144.260910 -0.043945 +v 111.499954 -137.299988 -1.044098 +v 111.499954 -137.299988 -1.044098 +v -111.500015 -137.299927 -0.044098 +v -111.500015 -137.299927 -0.044098 +v -170.778061 146.591751 -1.043945 +v -170.778061 146.591751 -1.043945 +v -171.177094 145.470444 -1.043945 +v -174.692917 144.788208 -0.043945 +v -174.692917 144.788208 -0.043945 +v 145.135559 150.735519 -1.043945 +v 145.135559 150.735519 -1.043945 +v 171.648499 145.129501 -0.043945 +v 171.648499 145.129501 -0.043945 +v 171.193176 145.955795 -0.043945 +v 146.219452 149.113419 -0.043945 +v 146.219452 149.113419 -0.043945 +v 172.202011 148.828781 -1.043945 +v 172.202011 148.828781 -1.043945 +v 172.910110 149.167969 -1.043945 +v -168.500046 -159.299896 -1.044113 +v -168.500046 -159.299896 -1.044113 +v -173.000290 149.398468 -1.043945 +v -172.060303 149.095230 -1.043945 +v 151.700043 142.855515 -0.043961 +v 151.700043 142.855515 -0.043961 +v 175.242279 148.661438 -1.043945 +v 175.855469 147.886993 -1.043945 +v -142.899719 152.069977 -0.043945 +v -142.899719 152.069977 -0.043945 +v -173.496460 144.360748 -1.043930 +v -173.496460 144.360748 -1.043930 +v -174.446609 144.630859 -1.043945 +v -174.446609 144.630859 -1.043945 +v -175.252930 145.275116 -1.043945 +v -175.727524 146.191650 -1.043945 +v 178.500046 147.199997 -1.043945 +v 178.500046 147.199997 -1.043945 +v -174.692902 148.979721 -1.043945 +v -174.692902 148.979721 -1.043945 +v -173.984802 149.318909 -1.043945 +v 173.602341 149.253555 -1.043945 +v 173.602341 149.253555 -1.043945 +v 172.976501 -141.801270 -1.044098 +v 172.976501 -141.801270 -1.044098 +v 172.370010 144.521790 -0.043945 +v 172.370010 144.521790 -0.043945 +v -172.776550 -136.851730 -0.044098 +v -172.068466 -137.190933 -0.044098 +v -172.068466 -137.190933 -0.044098 +v -175.983337 -139.578964 -0.044098 +v -175.983337 -139.578964 -0.044098 +v -174.069778 144.474777 -0.043945 +v -174.069778 144.474777 -0.043945 +v -175.453537 -137.715347 -0.044083 +v 175.813583 145.500717 -1.043945 +v 173.602341 149.253555 -0.043945 +v 173.602341 149.253555 -0.043945 +v 173.806229 144.209808 -0.043945 +v 173.806229 144.209808 -0.043945 +v -111.500015 -137.299927 -1.044098 +v -111.500015 -137.299927 -1.044098 +v 146.219452 149.113419 -1.043945 +v 146.219452 149.113419 -1.043945 +v 171.617661 148.304398 -0.043945 +v -168.500046 -159.299896 -0.044113 +v -168.500046 -159.299896 -0.044113 +v -178.500046 -149.299896 -0.044113 +v -178.500046 -149.299896 -0.044113 +v 151.700043 142.855515 -1.043961 +v 151.700043 142.855515 -1.043961 +v -171.081329 148.116257 -0.043945 +v -170.778061 147.176178 -0.043945 +v -170.778061 147.176178 -0.043945 +v -142.899719 152.069977 -1.043945 +v -142.899719 152.069977 -1.043945 +v -120.160347 -142.299911 -1.044113 +v -120.160347 -142.299911 -1.044113 +v 155.900040 151.530106 -0.043945 +v 155.900040 151.530106 -0.043945 +v 158.400040 152.200012 -0.043945 +v 158.400040 152.200012 -0.043945 +v 119.653809 141.907761 -0.043961 +v 119.653809 141.907761 -0.043961 +v 121.345543 143.560516 -0.043961 +v 121.345543 143.560516 -0.043961 +v 119.653809 141.907761 -1.043961 +v 119.653809 141.907761 -1.043961 +v -119.639458 141.854614 -0.043961 +v -119.639458 141.854614 -0.043961 +v -119.639458 141.854614 -1.043961 +v -119.639458 141.854614 -1.043961 +v -131.500046 -159.299911 -0.044113 +v -131.500046 -159.299911 -0.044113 +v 177.830139 149.699997 -0.043945 +v 177.830139 149.699997 -0.043945 +v 177.830139 149.699997 -1.043945 +v 177.830139 149.699997 -1.043945 +v -121.292206 143.546326 -0.043961 +v -121.292206 143.546326 -0.043961 +v -175.727524 147.576263 -0.043945 +v -175.277283 148.455338 -0.043945 +v 146.769791 144.699051 -1.043945 +v 146.769791 144.699051 -1.043945 +v -126.500061 -157.960205 -0.044113 +v -126.500061 -157.960205 -0.044113 +v -126.500061 -157.960205 -1.044113 +v -126.500061 -157.960205 -1.044113 +v 175.565979 151.827972 -0.043945 +v 175.565979 151.827972 -0.043945 +v 175.565979 151.827972 -1.043945 +v 175.565979 151.827972 -1.043945 +v 174.464264 -141.523285 -0.044113 +v 171.173004 -140.687088 -0.044113 +v 171.173004 -140.687088 -0.044113 +v 175.364502 -137.886398 -0.044098 +v 174.840088 -137.302017 -0.044083 +v 174.840088 -137.302017 -0.044083 +v 170.753326 -139.039001 -1.044098 +v 170.753326 -139.039001 -1.044098 +v 171.032211 -138.091232 -1.044067 +v 173.960999 -136.851791 -0.044083 +v -171.484070 -137.715363 -1.044098 +v -171.059647 -138.509460 -0.044098 +v -171.059647 -138.509460 -0.044098 +v -171.215714 -140.440720 -0.044098 +v -171.215714 -140.440720 -0.044098 +v 122.169937 149.699997 -1.043945 +v 122.169937 149.699997 -1.043945 +v 121.500046 147.200012 -1.043945 +v 121.500046 147.200012 -1.043945 +v -174.622803 -141.539795 -1.044113 +v -175.429184 -140.895493 -1.044113 +v -175.983337 -138.994415 -1.044098 +v -175.983337 -138.994415 -1.044098 +v 172.637772 144.404343 -1.043945 +v 172.637772 144.404343 -1.043945 +v 172.030991 144.748306 -1.043930 +v 172.030991 144.748306 -1.043930 +v 120.160217 -142.299957 -1.044113 +v 120.160217 -142.299957 -1.044113 +v 171.193176 147.510254 -1.043945 +v 171.673965 148.373016 -1.043945 +v -171.039474 148.037964 -1.043945 +v -170.820465 147.375687 -1.043945 +v -173.088669 149.407181 -0.043945 +v -172.138580 149.137070 -0.043945 +v 158.400040 152.200012 -1.043945 +v 158.400040 152.200012 -1.043945 +v 121.345543 143.560516 -1.043961 +v 121.345543 143.560516 -1.043961 +v -131.500046 -159.299911 -1.044113 +v -131.500046 -159.299911 -1.044113 +v -175.701752 147.661209 -1.043945 +v -175.220963 148.523956 -1.043945 +v -121.292206 143.546326 -1.043961 +v -121.292206 143.546326 -1.043961 +v 170.849991 -140.020447 -0.044067 +v -172.060287 144.672684 -1.043945 +v -172.800842 144.411850 -1.043945 +v -172.800842 144.411850 -1.043945 +v 176.118973 146.922897 -1.043945 +v 174.669098 -137.190994 -1.044113 +v 174.045975 -136.877579 -1.044113 +v 171.469711 -141.085831 -1.044128 +v 171.469711 -141.085831 -1.044128 +v -171.540390 -137.646744 -0.044098 +v -170.945602 -139.490570 -0.044098 +v -170.945602 -139.490570 -0.044098 +v -171.859985 -141.247055 -0.044113 +v -173.761063 -141.801208 -0.044113 +v -173.761063 -141.801208 -0.044113 +v -174.701111 -141.497940 -0.044113 +v -175.422684 -140.890167 -0.044113 +v -122.839859 -154.299911 -0.044113 +v -122.839859 -154.299911 -0.044113 +v -154.069855 149.700089 -0.043945 +v -154.069855 149.700089 -0.043945 +v -152.922165 144.080460 -0.043945 +v -152.922165 144.080460 -0.043945 +v -154.069855 149.700089 -1.043945 +v -154.069855 149.700089 -1.043945 +v 175.384628 144.950729 -0.043945 +v 173.500046 152.199982 -0.043945 +v 173.500046 152.199982 -0.043945 +v 173.500046 152.199982 -1.043945 +v 173.500046 152.199982 -1.043945 +v -170.820465 146.392227 -0.043945 +v -171.039474 145.729950 -0.043945 +v 122.839699 -154.299957 -0.044113 +v 122.839699 -154.299957 -0.044113 +v 121.500046 147.200012 -0.043945 +v 121.500046 147.200012 -0.043945 +v 152.930527 144.086807 -0.043945 +v 152.930527 144.086807 -0.043945 +v -126.499962 152.200104 -0.043945 +v -126.499962 152.200104 -0.043945 +v -122.169853 149.700089 -0.043945 +v -122.169853 149.700089 -0.043945 +v -122.169853 149.700089 -1.043945 +v -122.169853 149.700089 -1.043945 +v -171.510284 145.101669 -0.043945 +v -175.813110 146.883957 -0.043945 +v -175.813110 146.883957 -0.043945 +v -121.499954 147.200104 -0.043945 +v -121.499954 147.200104 -0.043945 +v 175.789291 -139.286743 -1.044113 +v 175.789291 -139.286743 -1.044113 +v 173.516510 -141.802185 -0.044113 +v 173.516510 -141.802185 -0.044113 +v -172.138565 144.630859 -0.043945 +v -171.510284 148.666245 -1.043945 +v -171.510284 148.666245 -1.043945 +v 170.841949 -138.550598 -0.044067 +v 170.841949 -140.022903 -1.044067 +v -173.468811 -136.766144 -0.044098 +v -173.468811 -136.766144 -0.044098 +v -173.468811 -136.766144 -1.044098 +v -173.468811 -136.766144 -1.044098 +v -173.960541 -141.758789 -1.044113 +v -126.499962 152.200104 -1.043945 +v -126.499962 152.200104 -1.043945 +v -174.869141 -137.190918 -1.044098 +v -174.869141 -137.190918 -1.044098 +v -174.246048 -136.877518 -0.044083 +v -122.839813 -154.299866 -1.044113 +v -122.839813 -154.299866 -1.044113 +v 174.379547 149.142197 -1.043945 +v 174.379562 144.323837 -1.043930 +v 174.379562 144.323837 -1.043930 +v 171.081802 146.733017 -1.043945 +v 171.081802 146.733017 -1.043945 +v 122.839745 -154.300003 -1.044113 +v 122.839745 -154.300003 -1.044113 +v -173.088699 144.360748 -0.043945 +v -173.088699 144.360748 -0.043945 +v 154.069946 149.699997 -0.043945 +v 154.069946 149.699997 -0.043945 +v -175.813110 146.883957 -1.043945 +v -175.813110 146.883957 -1.043945 +v -121.499954 147.200104 -1.043945 +v -121.499954 147.200104 -1.043945 +v 175.789291 -139.286743 -0.044083 +v 175.789291 -139.286743 -0.044083 +v 170.748215 -139.286743 -0.044098 +v 170.748215 -139.286743 -0.044098 +v 173.268753 -136.766205 -1.044113 +v 173.268753 -136.766205 -1.044113 +v 173.268753 -136.766205 -0.044083 +v 173.268753 -136.766205 -0.044083 +v 172.576492 -136.851791 -1.044113 +v -177.160248 -154.299896 -0.044113 +v -177.160248 -154.299896 -0.044113 +v -174.869141 -137.190918 -0.044098 +v -174.869141 -137.190918 -0.044098 +v -174.161072 -136.851730 -1.044083 +v -151.699951 142.855606 -0.043961 +v -151.699951 142.855606 -0.043961 +v 168.499954 -159.300018 -0.044113 +v 168.499954 -159.300018 -0.044113 +v 131.499954 -159.300003 -0.044113 +v 131.499954 -159.300003 -0.044113 +v -171.510284 148.666245 -0.043945 +v -171.510284 148.666245 -0.043945 +v 178.499954 -149.300018 -0.044113 +v 178.499954 -149.300018 -0.044113 +v 177.160156 -154.300018 -0.044113 +v 177.160156 -154.300018 -0.044113 +v 126.499947 -157.960297 -0.044113 +v 126.499947 -157.960297 -0.044113 +v 178.500046 147.199997 -0.043945 +v 178.500046 147.199997 -0.043945 +v 175.687531 -138.553055 -0.044083 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.640625 0.784724 +vt 0.656250 0.685539 +vt 0.609371 0.685538 +vt 0.515626 0.784723 +vt 0.546875 0.685538 +vt 0.481568 0.685539 +vt 0.893436 0.784724 +vt 0.906250 0.685536 +vt 0.859373 0.685537 +vt 0.171872 0.685539 +vt 0.203126 0.784724 +vt 0.234375 0.685537 +vt 0.578128 0.784723 +vt 0.609371 0.685538 +vt 0.455934 0.784723 +vt 0.481568 0.685539 +vt 0.437500 0.685539 +vt 0.140628 0.784724 +vt 0.106566 0.685538 +vt 0.799684 0.784723 +vt 0.812500 0.685538 +vt 0.762815 0.685538 +vt 0.737184 0.784723 +vt 0.762815 0.685538 +vt 0.700316 0.685538 +vt 0.674679 0.784723 +vt 0.700316 0.685538 +vt 0.640629 0.685538 +vt 0.580935 0.685538 +vt 0.609374 0.784723 +vt 0.640629 0.685538 +vt 0.518432 0.685538 +vt 0.544066 0.784723 +vt 0.580935 0.685538 +vt 0.468750 0.685538 +vt 0.481568 0.784723 +vt 0.518432 0.685538 +vt 0.268434 0.784723 +vt 0.294067 0.685538 +vt 0.231567 0.685538 +vt 0.205934 0.784723 +vt 0.231567 0.685538 +vt 0.187500 0.685538 +vt 0.737183 0.784734 +vt 0.761975 0.685548 +vt 0.718750 0.685548 +vt 0.549684 0.685548 +vt 0.575319 0.784734 +vt 0.609371 0.685548 +vt 0.487185 0.685548 +vt 0.512816 0.784734 +vt 0.549684 0.685548 +vt 0.393434 0.685548 +vt 0.419064 0.784734 +vt 0.437500 0.685548 +vt 0.768430 0.784734 +vt 0.781250 0.685548 +vt 0.731571 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.656170 0.685548 +vt 0.625000 0.784734 +vt 0.674681 0.784734 +vt 0.487184 0.685548 +vt 0.512815 0.784734 +vt 0.531250 0.685548 +vt 0.424679 0.685548 +vt 0.450317 0.784734 +vt 0.487184 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.703127 0.685537 +vt 0.750000 0.784724 +vt 0.750000 0.685536 +vt 0.703128 0.784723 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.750000 0.685536 +vt 0.796873 0.784724 +vt 0.796872 0.685539 +vt 0.250000 0.784723 +vt 0.044068 0.685536 +vt 0.000000 0.784724 +vt 0.049685 0.784724 +vt 0.843750 0.784723 +vt 0.893436 0.784724 +vt 0.859373 0.685537 +vt 0.437500 0.685539 +vt 0.390626 0.784723 +vt 0.455934 0.784723 +vt 0.515626 0.784723 +vt 0.955932 0.784724 +vt 0.950316 0.685536 +vt 0.640625 0.784724 +vt 0.093750 0.784723 +vt 0.140628 0.784724 +vt 0.106566 0.685538 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.343750 0.784723 +vt 0.296875 0.685539 +vt 0.296874 0.784724 +vt 1.000000 0.685536 +vt 1.000000 0.784724 +vt 0.250000 0.784723 +vt 0.955931 0.784723 +vt 1.000000 0.685538 +vt 0.950316 0.685538 +vt 0.375083 0.685537 +vt 0.343750 0.784723 +vt 0.906250 0.784723 +vt 0.906250 0.685538 +vt 0.862177 0.784723 +vt 0.906250 0.685538 +vt 0.856563 0.685538 +vt 0.419067 0.784723 +vt 0.424682 0.685538 +vt 0.799684 0.784723 +vt 0.737184 0.784723 +vt 0.674679 0.784723 +vt 0.544066 0.784723 +vt 0.481568 0.784723 +vt 0.359374 0.685538 +vt 0.359374 0.784723 +vt 0.312500 0.784723 +vt 0.187500 0.685538 +vt 0.143436 0.784723 +vt 0.205934 0.784723 +vt 0.312500 0.784723 +vt 0.268434 0.784723 +vt 0.093750 0.784723 +vt 0.137821 0.685538 +vt 0.093750 0.685538 +vt 0.049685 0.784723 +vt 0.093750 0.685538 +vt 0.044068 0.685538 +vt 0.000000 0.784723 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.955932 0.784734 +vt 1.000000 0.685548 +vt 0.950317 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.893435 0.784734 +vt 0.887823 0.685548 +vt 0.830933 0.784734 +vt 0.825317 0.685548 +vt 0.781247 0.784734 +vt 0.718750 0.685548 +vt 0.674682 0.784734 +vt 0.737183 0.784734 +vt 0.669066 0.685548 +vt 0.625000 0.784734 +vt 0.468750 0.784734 +vt 0.437500 0.685548 +vt 0.419064 0.784734 +vt 0.609371 0.685548 +vt 0.575319 0.784734 +vt 0.512816 0.784734 +vt 0.468750 0.784734 +vt 0.343750 0.685548 +vt 0.299684 0.784734 +vt 0.359377 0.784734 +vt 0.359377 0.784734 +vt 0.393434 0.685548 +vt 0.294068 0.685548 +vt 0.250000 0.784734 +vt 0.250000 0.685548 +vt 0.205932 0.784734 +vt 0.250000 0.784734 +vt 0.200315 0.685548 +vt 0.143432 0.784734 +vt 0.093750 0.784734 +vt 0.137818 0.685548 +vt 0.093750 0.685548 +vt 0.049681 0.784734 +vt 0.093750 0.685548 +vt 0.044067 0.685548 +vt 0.000000 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.924682 0.784734 +vt 0.981566 0.685548 +vt 0.919069 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.875000 0.784734 +vt 0.875000 0.685548 +vt 0.875000 0.685548 +vt 0.830934 0.784734 +vt 0.875000 0.784734 +vt 0.825319 0.685548 +vt 0.731571 0.685548 +vt 0.718750 0.784734 +vt 0.768430 0.784734 +vt 0.580932 0.685548 +vt 0.575319 0.784734 +vt 0.531250 0.685548 +vt 0.512815 0.784734 +vt 0.406250 0.784734 +vt 0.359376 0.685548 +vt 0.359376 0.784734 +vt 0.450317 0.784734 +vt 0.406250 0.784734 +vt 0.299685 0.784734 +vt 0.294071 0.685548 +vt 0.250000 0.784734 +vt 0.250000 0.685548 +vt 0.205929 0.784734 +vt 0.250000 0.784734 +vt 0.200315 0.685548 +vt 0.143433 0.784734 +vt 0.093750 0.784734 +vt 0.137819 0.685548 +vt 0.093750 0.685548 +vt 0.049681 0.784734 +vt 0.093750 0.685548 +vt 0.044067 0.685548 +vt 0.000000 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.750000 0.784724 +vt 0.000000 0.685536 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.375083 0.685537 +vt 0.234375 0.685537 +vt 1.000000 0.784723 +vt 0.906250 0.784723 +vt 0.294067 0.685538 +vt 0.093750 0.784723 +vt 0.000000 0.685538 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 1.000000 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.487185 0.685548 +vt 0.250000 0.685548 +vt 0.093750 0.784734 +vt 0.000000 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.987183 0.784734 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.424679 0.685548 +vt 0.250000 0.685548 +vt 0.093750 0.784734 +vt 0.000000 0.685548 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vt 0.000000 0.000000 +vn 0.9760 -0.2179 0.0000 +vn -0.9760 -0.2179 0.0000 +vn -0.8451 0.5347 0.0021 +vn -0.8345 0.5510 0.0054 +vn -0.7469 0.6643 0.0290 +vn -0.1923 0.9813 -0.0069 +vn -0.2862 0.9579 0.0202 +vn -0.0849 0.9953 0.0468 +vn -0.5280 -0.8492 -0.0020 +vn -0.5498 -0.8353 0.0031 +vn -0.6643 -0.7469 0.0307 +vn 0.8798 -0.4750 0.0202 +vn 0.9538 -0.3003 -0.0127 +vn 0.9747 -0.2226 0.0223 +vn -0.4735 0.8806 -0.0193 +vn -0.5546 0.8321 0.0089 +vn 0.1512 0.9883 -0.0182 +vn 0.1902 0.9818 -0.0021 +vn 0.2663 0.9634 0.0299 +vn 0.8299 -0.5579 -0.0070 +vn 0.7638 -0.6438 0.0467 +vn -0.9126 -0.4088 -0.0012 +vn -0.9220 -0.3873 0.0035 +vn -0.9683 -0.2476 0.0315 +vn -0.9999 -0.0152 -0.0062 +vn -0.9999 0.0152 0.0062 +vn -0.9922 0.1153 0.0470 +vn -0.9311 0.3647 -0.0079 +vn -0.9190 0.3942 0.0051 +vn -0.8749 0.4821 0.0451 +vn -0.5642 0.8256 0.0053 +vn -0.6352 0.7721 -0.0209 +vn -0.7108 0.7034 0.0058 +vn -0.2100 0.9777 0.0062 +vn -0.1801 0.9836 -0.0062 +vn -0.3067 0.9506 0.0470 +vn 0.2003 0.9797 0.0037 +vn 0.2229 0.9748 -0.0012 +vn 0.0540 0.9980 0.0316 +vn 0.9825 0.1865 0.0036 +vn 0.9888 0.1482 0.0194 +vn 0.9956 0.0805 0.0470 +vn 0.9888 -0.1482 -0.0194 +vn 0.9825 -0.1865 -0.0036 +vn 0.9634 -0.2663 0.0299 +vn -0.9997 -0.0243 -0.0030 +vn -0.9937 -0.1117 0.0137 +vn -0.9974 0.0652 0.0322 +vn -0.3942 0.9190 0.0051 +vn -0.3647 0.9311 -0.0079 +vn -0.4821 0.8749 0.0451 +vn -0.0476 0.9987 0.0194 +vn -0.0088 1.0000 0.0036 +vn -0.1153 0.9922 0.0470 +vn 0.5597 0.8287 -0.0021 +vn 0.5919 0.8058 -0.0182 +vn 0.4929 0.8696 0.0299 +vn -0.9748 -0.2230 -0.0012 +vn -0.9797 -0.2003 0.0037 +vn -0.9980 -0.0540 0.0316 +vn -0.2588 0.9659 0.0000 +vn -0.8267 0.5625 0.0129 +vn -0.7029 0.7113 0.0000 +vn -0.8959 0.4442 0.0021 +vn 0.0088 1.0000 -0.0036 +vn 0.0476 0.9987 -0.0194 +vn -0.0732 0.9969 0.0299 +vn 0.3382 0.9409 0.0194 +vn 0.3745 0.9272 0.0036 +vn 0.2731 0.9608 0.0470 +vn -0.0000 0.0000 -1.0000 +vn -0.9960 0.0897 0.0000 +vn 0.9799 0.1995 -0.0033 +vn 0.9795 0.2012 -0.0045 +vn 0.9799 0.1995 -0.0034 +vn -0.7071 0.7071 0.0000 +vn 0.2588 0.9659 0.0000 +vn 0.1772 0.9842 0.0000 +vn -0.2588 -0.9659 0.0000 +vn -0.0000 -1.0000 0.0000 +vn 0.7068 0.7074 0.0010 +vn 0.7077 0.7065 -0.0004 +vn 0.7085 0.7057 -0.0001 +vn 0.5366 0.8438 0.0000 +vn -0.7071 -0.7071 0.0000 +vn -0.9795 0.2012 0.0045 +vn -0.9799 0.1995 0.0033 +vn -0.9801 0.1982 0.0058 +vn 0.8315 0.5556 0.0000 +vn -0.9659 0.2588 0.0000 +vn -0.9659 -0.2588 0.0000 +vn -0.7077 0.7065 0.0004 +vn -0.7068 0.7074 -0.0011 +vn -0.7076 0.7066 0.0006 +vn -0.0079 1.0000 0.0000 +vn 0.7071 -0.7071 -0.0000 +vn 0.5000 0.8660 0.0000 +vn 0.9659 -0.2588 0.0000 +vn 0.9923 0.1237 0.0000 +vn 0.2588 -0.9659 0.0000 +vn -0.6988 0.7153 0.0000 +vn -0.9991 0.0424 0.0000 +vn -0.0002 1.0000 0.0000 +vn 0.7695 0.6387 0.0000 +vn 1.0000 -0.0000 0.0000 +vn -0.7287 0.6849 0.0000 +vn -0.6879 0.7258 0.0000 +vn -1.0000 0.0012 0.0000 +vn 0.6849 0.7287 0.0000 +vn 0.7153 0.6988 0.0000 +vn 0.0125 0.9999 0.0000 +vn 0.9984 0.0568 0.0000 +vn 0.0000 1.0000 0.0000 +vn 0.9659 0.2588 0.0000 +vn 0.0217 0.9998 0.0000 +vn -0.7350 0.6780 0.0000 +vn -0.9537 0.3007 -0.0040 +vn -0.9913 0.1317 0.0042 +vn -0.9913 0.1319 0.0041 +vn -0.0000 -0.0000 1.0000 +vn -0.9913 -0.1318 -0.0042 +vn -0.9537 -0.3007 0.0040 +vn -0.9537 -0.3006 0.0040 +vn 0.9916 -0.1263 -0.0262 +vn 0.2881 -0.9576 0.0051 +vn 0.1329 -0.9911 -0.0072 +vn 0.3062 -0.9519 0.0065 +vn -0.8334 -0.5526 -0.0058 +vn -0.7439 -0.6676 -0.0300 +vn -0.8427 -0.5383 -0.0030 +vn 0.4975 0.8674 0.0011 +vn 0.6144 0.7888 -0.0158 +vn 0.4975 0.8675 0.0010 +vn 0.0852 0.9953 -0.0451 +vn -0.2881 -0.9576 -0.0051 +vn -0.3062 -0.9519 -0.0065 +vn -0.6402 0.7669 -0.0444 +vn 0.5499 -0.8352 -0.0030 +vn 0.6642 -0.7469 -0.0306 +vn 0.5280 -0.8492 0.0021 +vn 0.8759 0.4815 0.0298 +vn 0.9532 0.3016 0.0213 +vn 0.9532 0.3017 0.0214 +vn -0.1328 -0.9911 0.0072 +vn -0.1328 -0.9911 0.0071 +vn 0.9938 0.1102 0.0121 +vn -0.2816 -0.9595 0.0004 +vn -0.1329 -0.9911 0.0072 +vn -0.2989 -0.9543 -0.0004 +vn 0.5937 0.8046 -0.0125 +vn 0.7541 0.6557 -0.0377 +vn -0.4402 -0.8979 -0.0071 +vn -0.7716 -0.6361 -0.0051 +vn -0.6611 -0.7502 0.0072 +vn -0.7835 -0.6214 -0.0065 +vn 0.4893 0.8721 -0.0067 +vn 0.4709 0.8821 -0.0078 +vn -0.9922 -0.1153 -0.0470 +vn -0.9608 0.2731 -0.0470 +vn -0.7804 0.6235 -0.0467 +vn -0.4592 0.8869 -0.0496 +vn -0.0805 0.9956 -0.0470 +vn 0.7701 0.6378 0.0099 +vn 0.7699 0.6381 0.0097 +vn 0.8776 0.4792 0.0145 +vn 0.8772 -0.4800 -0.0105 +vn 0.7870 -0.6169 -0.0090 +vn 0.8772 -0.4799 -0.0105 +vn 0.9634 0.2663 -0.0299 +vn 0.9956 -0.0805 -0.0470 +vn 0.6611 -0.7502 -0.0072 +vn 0.7748 -0.6322 -0.0088 +vn 0.6611 -0.7503 -0.0071 +vn 0.2989 -0.9543 0.0004 +vn 0.4401 -0.8979 0.0072 +vn 0.2816 -0.9595 -0.0004 +vn 0.1328 -0.9911 -0.0071 +vn -0.2974 -0.9547 0.0038 +vn -0.1329 -0.9911 0.0071 +vn -0.3165 -0.9486 0.0034 +vn -0.6259 -0.7799 0.0000 +vn -0.6428 -0.7660 0.0000 +vn -0.8758 -0.4827 0.0070 +vn -0.8861 -0.4635 0.0078 +vn -0.9787 -0.2055 -0.0004 +vn -0.9540 0.2996 -0.0105 +vn -0.8875 0.4608 -0.0017 +vn -0.8778 0.4791 -0.0006 +vn -0.7099 0.7042 -0.0081 +vn 0.2903 0.9569 -0.0000 +vn -0.7219 0.6920 -0.0055 +vn -0.5994 0.7999 -0.0301 +vn -0.2732 0.9608 -0.0471 +vn 0.0732 0.9969 -0.0298 +vn 0.8337 0.5522 0.0081 +vn 0.9507 0.3100 -0.0078 +vn 0.8430 0.5379 0.0055 +vn 0.6436 0.7641 -0.0451 +vn 0.7439 0.6676 0.0301 +vn 0.9565 0.2915 -0.0078 +vn 0.9911 0.1329 -0.0072 +vn 0.9911 -0.1329 0.0072 +vn 0.9547 -0.2975 0.0038 +vn 0.9911 -0.1329 0.0071 +vn 0.9486 -0.3165 0.0034 +vn 0.7902 -0.6129 -0.0034 +vn 0.7777 -0.6286 -0.0038 +vn 0.2990 -0.9543 0.0004 +vn 0.1329 -0.9911 -0.0071 +vn -0.4469 -0.8946 -0.0034 +vn -0.1090 -0.9940 -0.0000 +vn -0.4648 -0.8854 -0.0038 +vn -0.6069 -0.7947 -0.0071 +vn -0.7947 -0.6069 0.0071 +vn -0.8808 -0.4734 -0.0051 +vn -0.7948 -0.6069 0.0071 +vn -0.8897 -0.4566 -0.0065 +vn -0.9720 0.2347 0.0121 +vn -0.9777 0.2101 0.0061 +vn -0.9980 0.0540 -0.0316 +vn -0.4902 0.8716 0.0084 +vn -0.4708 0.8822 0.0064 +vn -0.2996 0.9540 -0.0105 +vn 0.6412 0.7672 0.0145 +vn 0.7758 0.6309 0.0099 +vn 0.7760 0.6306 0.0097 +vn 0.1153 0.9922 -0.0470 +vn 0.4491 0.8930 -0.0299 +vn 0.9487 0.3162 -0.0010 +vn 0.9548 0.2971 -0.0017 +vn 0.9547 -0.2974 0.0038 +vn 0.9911 -0.1328 0.0071 +vn 0.7902 -0.6128 -0.0034 +vn 0.2831 -0.9591 0.0038 +vn 0.2638 -0.9646 0.0034 +vn -0.0871 -0.9962 0.0000 +vn 0.9801 0.1982 -0.0058 +vn 0.7076 0.7066 -0.0006 +vn -0.9799 0.1995 0.0034 +vn -0.7085 0.7057 0.0001 +vn 0.0001 -0.0000 1.0000 +vn -0.9913 -0.1319 -0.0041 +vn 0.0002 0.0001 -1.0000 +vn -0.6611 -0.7503 0.0071 +vn 0.4402 -0.8979 0.0071 +vn 0.9911 0.1329 -0.0071 +vn 0.9911 0.1328 -0.0071 +vn -0.0000 -0.0001 -1.0000 +usemtl material +s 1 +f 3314/2814/2428 3365/2815/2428 3034/2816/2428 +f 3007/2817/2429 3280/2818/2429 3329/2819/2429 +f 3074/2820/2430 3079/2821/2431 3089/2822/2432 +f 3348/2823/2433 3090/2824/2434 3184/2825/2435 +f 3257/2826/2436 3302/2827/2437 3083/2828/2438 +f 3260/2829/2439 3353/2830/2440 3258/2831/2441 +f 3090/2824/2434 3252/2832/2442 3088/2833/2443 +f 3077/2834/2444 3183/2835/2445 3084/2836/2446 +f 2992/2837/2447 3260/2829/2439 2994/2838/2448 +f 3263/2839/2449 3096/2840/2450 3097/2841/2451 +f 3308/2842/2452 3098/2843/2453 3102/2844/2454 +f 3265/2845/2455 3101/2846/2456 3103/2847/2457 +f 3106/2848/2458 3309/2849/2459 3104/2850/2460 +f 3109/2851/2461 3107/2852/2462 3105/2853/2463 +f 3359/2854/2464 3311/2855/2465 3110/2856/2466 +f 3190/2857/2467 3114/2858/2468 3273/2859/2469 +f 3120/2860/2470 3274/2861/2471 3118/2862/2472 +f 3112/2863/2473 3301/2864/2474 3127/2865/2475 +f 3369/2866/2476 3133/2867/2477 3131/2868/2478 +f 3137/2869/2479 3199/2870/2480 3368/2871/2481 +f 3277/2872/2482 3186/2873/2483 3275/2874/2484 +f 3212/2875/2485 3284/2876/2486 3146/2877/2487 +f 2960/2878/2488 3124/2879/2488 2964/2880/2488 +f 3147/2881/2489 3341/2882/2490 3328/2883/2491 +f 3171/2884/2492 3374/2885/2493 3300/2886/2494 +f 3172/2887/2495 3192/2888/2496 3170/2889/2497 +f 2956/2890/2498 3294/2891/2498 2698/2892/2498 +f 3125/2893/2499 2966/2894/2499 2968/2895/2499 +f 3316/2896/2500 3038/2897/2501 3320/2898/2502 +f 2974/2899/2488 3130/2900/2488 2978/2901/2488 +f 2980/2902/2503 2979/2903/2503 3268/2904/2503 +f 2982/2905/2504 3136/2906/2504 2986/2907/2504 +f 3323/2908/2505 3251/2909/2505 3325/2910/2505 +f 2988/2911/2506 3142/2912/2506 2996/2913/2506 +f 2991/2914/2507 3200/2915/2507 3141/2916/2507 +f 3319/2917/2508 3039/2918/2509 3037/2919/2510 +f 2998/2920/2511 3151/2921/2511 3004/2922/2511 +f 3279/2923/2512 2989/2924/2512 2997/2925/2512 +f 3334/2926/2513 3008/2927/2514 3010/2928/2515 +f 3001/2929/2516 3202/2930/2516 3150/2931/2516 +f 3099/2932/2512 3012/2933/2512 3014/2934/2512 +f 3205/2935/2506 3015/2936/2506 3160/2937/2506 +f 3331/2938/2517 3267/2939/2517 3269/2940/2517 +f 3398/2941/2507 3019/2942/2507 3021/2943/2507 +f 3391/2944/2518 3023/2945/2518 3013/2946/2518 +f 3165/2947/2519 3011/2948/2520 3210/2949/2521 +f 3025/2950/2488 3092/2951/2488 3029/2952/2488 +f 3169/2953/2522 3361/2954/2522 3215/2955/2522 +f 3035/2956/2523 3033/2957/2523 3216/2958/2523 +f 3336/2959/2524 3340/2960/2524 3360/2961/2524 +f 3404/2962/2525 3041/2963/2525 3043/2964/2525 +f 3218/2965/2488 3288/2966/2488 3046/2967/2488 +f 3034/2816/2428 3365/2815/2428 3217/2968/2428 +f 3156/2969/2526 3242/2970/2526 3203/2971/2526 +f 3049/2972/2527 3022/2973/2527 3051/2974/2527 +f 3222/2975/2528 3289/2976/2528 3226/2977/2528 +f 3408/2978/2512 3372/2979/2512 3057/2980/2512 +f 3270/2981/2529 3225/2982/2529 3332/2983/2529 +f 3228/2984/2530 3227/2985/2530 3230/2986/2530 +f 3397/2987/2504 3030/2988/2504 3040/2989/2504 +f 3243/2990/2531 2983/2991/2531 2987/2992/2531 +f 3232/2993/2507 3161/2994/2507 3291/2995/2507 +f 3410/2996/2532 3044/2997/2532 3176/2998/2532 +f 3060/2999/2533 2965/3000/2533 3062/3001/2533 +f 3401/3002/2506 3056/3003/2506 3020/3004/2506 +f 3407/3005/2523 3052/3006/2523 3042/3007/2523 +f 3144/3008/2527 3036/3009/2527 3201/3010/2527 +f 2969/3011/2534 3214/3012/2534 3126/3013/2534 +f 3207/3014/2535 3063/3015/2535 3024/3016/2535 +f 3329/2819/2429 3280/2818/2429 3373/3017/2429 +f 3248/3018/2536 3237/3019/2536 3250/3020/2536 +f 3238/3021/2537 3231/3022/2537 3295/3023/2537 +f 2977/3024/2538 3005/3025/2538 3129/3026/2538 +f 3380/3027/2539 3239/3028/2539 3296/3029/2539 +f 3221/3030/2540 3326/3031/2540 3287/3032/2540 +f 3234/3033/2541 3177/3034/2541 3236/3035/2541 +f 2985/3036/2488 3209/3037/2488 3135/3038/2488 +f 2696/3039/2542 3069/3040/2542 3123/3041/2542 +f 3337/3042/2541 3381/3043/2541 3339/3044/2541 +f 3315/3045/2523 3247/3046/2523 3366/3047/2523 +f 3028/3048/2543 2971/3049/2543 3091/3050/2543 +f 3244/3051/2527 3292/3052/2527 3246/3053/2527 +f 3376/3054/2503 3045/3055/2503 3009/3056/2503 +f 3066/3057/2536 3321/3058/2536 3068/3059/2536 +f 3080/3060/2544 3382/3061/2545 3347/3062/2546 +f 3073/3063/2544 3079/2821/2431 3074/2820/2430 +f 2774/3064/2547 3349/3065/2547 2818/3066/2547 +f 2814/3067/2548 3412/3068/2549 3081/3069/2550 +f 3353/2830/2440 2822/3070/2551 3258/2831/2441 +f 3390/3071/2552 3389/3072/2553 3086/3073/2554 +f 3255/3074/2555 3256/3075/2556 3082/3076/2557 +f 3085/3077/2558 3078/3078/2559 3076/3079/2560 +f 3077/2834/2444 2817/3080/2561 3183/2835/2445 +f 3260/2829/2439 2992/2837/2447 3353/2830/2440 +f 3302/2827/2437 3261/3081/2562 3303/3082/2563 +f 3252/2832/2442 3075/3083/2564 3088/2833/2443 +f 3087/3084/2565 2993/3085/2566 2995/3086/2567 +f 2839/3087/2498 2777/3088/2498 2836/3089/2498 +f 3254/3090/2568 2846/3091/2569 3297/3092/2570 +f 3386/3093/2571 3261/3081/2562 3388/3094/2572 +f 3255/3074/2555 3081/3069/2550 3412/3068/2549 +f 2846/3091/2569 3385/3095/2573 3297/3092/2570 +f 3390/3071/2552 3087/3084/2565 2995/3086/2567 +f 3187/3096/2574 3357/3097/2575 3093/3098/2576 +f 3090/2824/2434 3348/2823/2433 3252/2832/2442 +f 3304/3099/2577 3253/3100/2578 3078/3078/2559 +f 3188/3101/2579 3093/3098/2576 3094/3102/2579 +f 3306/3103/2580 3095/3104/2581 3262/3105/2582 +f 3096/2840/2450 3306/3103/2580 3262/3105/2582 +f 3312/3106/2583 3359/2854/2464 3271/3107/2584 +f 3308/2842/2452 3264/3108/2585 3098/2843/2453 +f 3265/2845/2455 2859/3109/2586 3101/2846/2456 +f 3309/2849/2459 3266/3110/2587 3104/2850/2460 +f 3106/2848/2458 3108/3111/2588 3309/2849/2459 +f 3109/2851/2461 3310/3112/2589 3107/2852/2462 +f 3312/3106/2583 3272/3113/2590 3313/3114/2591 +f 3272/3113/2590 3117/3115/2592 3313/3114/2591 +f 3119/3116/2593 3194/3117/2594 3121/3118/2595 +f 3190/2857/2467 3116/3119/2596 3114/2858/2468 +f 3120/2860/2470 3191/3120/2597 3274/2861/2471 +f 3393/3121/2598 3122/3122/2599 3362/3123/2600 +f 3364/3124/2601 3363/3125/2602 3395/3126/2603 +f 3395/3126/2603 3356/3127/2604 3364/3124/2601 +f 3307/3128/2547 2861/3129/2547 2795/3130/2547 +f 2888/3131/2605 3182/3132/2606 3367/3133/2607 +f 2862/3134/2498 2860/3135/2498 2750/3136/2498 +f 2890/3137/2608 3367/3133/2607 3166/3138/2609 +f 3166/3138/2609 3064/3139/2610 2890/3137/2608 +f 3167/3140/2611 3065/3141/2612 3064/3139/2610 +f 3128/3142/2613 3113/3143/2614 3111/3144/2613 +f 3301/2864/2474 3112/2863/2473 3065/3141/2612 +f 3195/3145/2615 3322/3146/2616 3113/3143/2614 +f 3140/3147/2617 3276/3148/2617 3185/3149/2617 +f 3132/3150/2618 3134/3151/2619 3322/3146/2616 +f 3369/2866/2476 3198/3152/2620 3133/2867/2477 +f 3137/2869/2479 3139/3153/2621 3199/2870/2480 +f 3002/3154/2622 3154/3155/2623 3152/3156/2624 +f 3277/2872/2482 3153/3157/2625 3186/2873/2483 +f 3152/3156/2624 3278/3158/2626 3002/3154/2622 +f 3003/3159/2627 3054/3160/2628 3154/3155/2623 +f 3371/3161/2629 3055/3162/2630 3053/3163/2631 +f 3281/3164/2632 3204/3165/2633 3055/3162/2630 +f 3017/3166/2600 3282/3167/2634 3157/3168/2600 +f 3018/3169/2635 3158/3170/2602 3159/3171/2603 +f 3159/3171/2603 3196/3172/2636 3018/3169/2635 +f 2721/3173/2547 2972/3174/2547 2973/3175/2547 +f 3286/3176/2637 3162/3177/2638 3163/3178/2639 +f 2889/3179/2498 2887/3180/2498 2722/3181/2498 +f 3403/3182/2640 3163/3178/2639 3351/3183/2640 +f 3352/3184/2641 3211/3185/2642 3402/3186/2643 +f 3284/2876/2486 3211/3185/2642 3283/3187/2644 +f 3145/3188/2645 3328/2883/2491 3327/3189/2646 +f 3327/3189/2646 3213/3190/2647 3145/3188/2645 +f 3341/2882/2490 3298/3191/2648 3350/3192/2649 +f 3350/3192/2649 3299/3193/2650 3375/3194/2650 +f 3148/3195/2651 3174/3196/2652 3058/3197/2653 +f 3171/2884/2492 3193/3198/2654 3374/2885/2493 +f 3172/2887/2495 3149/3199/2655 3192/2888/2496 +f 3174/3196/2652 3059/3200/2656 3058/3197/2653 +f 3175/3201/2657 3342/3202/2628 3059/3200/2656 +f 3379/3203/2629 3240/3204/2658 3343/3205/2659 +f 3293/3206/2632 3241/3207/2660 3240/3204/2658 +f 3071/3208/2600 2954/3209/2634 3178/3210/2600 +f 2959/3211/2661 3179/3212/2602 3180/3213/2662 +f 3180/3213/2662 2923/3214/2663 2959/3211/2661 +f 3072/3215/2547 2695/3216/2547 3070/3217/2547 +f 2799/3218/2547 2877/3219/2547 2880/3220/2547 +f 2904/3221/2498 2902/3222/2498 2840/3223/2498 +f 2960/2878/2488 2962/3224/2488 3124/2879/2488 +f 2698/2892/2498 2697/3225/2498 2958/3226/2498 +f 2697/3225/2498 2924/3227/2498 2958/3226/2498 +f 2952/3228/2498 2800/3229/2498 3294/2891/2498 +f 2800/3229/2498 2698/2892/2498 3294/2891/2498 +f 2698/2892/2498 2958/3226/2498 2956/2890/2498 +f 3125/2893/2499 2970/3230/2499 2966/2894/2499 +f 3316/2896/2500 3318/3231/2664 3038/2897/2501 +f 2974/2899/2488 2976/3232/2488 3130/2900/2488 +f 2980/2902/2503 2975/3233/2503 2979/2903/2503 +f 2982/2905/2504 2984/3234/2504 3136/2906/2504 +f 3323/2908/2505 3249/3235/2505 3251/2909/2505 +f 2988/2911/2506 2990/3236/2506 3142/2912/2506 +f 2991/2914/2507 3143/3237/2507 3200/2915/2507 +f 3319/2917/2508 3396/3238/2665 3039/2918/2509 +f 2998/2920/2511 3000/3239/2511 3151/2921/2511 +f 3279/2923/2512 3006/3240/2512 2989/2924/2512 +f 3334/2926/2513 3377/3241/2666 3008/2927/2514 +f 3001/2929/2516 3155/3242/2516 3202/2930/2516 +f 3099/2932/2512 3392/3243/2512 3012/2933/2512 +f 3205/2935/2506 3100/3244/2506 3015/2936/2506 +f 3331/2938/2517 2981/3245/2517 3267/2939/2517 +f 3398/2941/2507 3400/3246/2507 3019/2942/2507 +f 3391/2944/2518 2757/3247/2518 3023/2945/2518 +f 3165/2947/2519 3333/3248/2667 3011/2948/2520 +f 3025/2950/2488 3027/3249/2488 3092/2951/2488 +f 3169/2953/2522 3335/3250/2522 3361/2954/2522 +f 3035/2956/2523 3031/3251/2523 3033/2957/2523 +f 3336/2959/2524 3338/3252/2524 3340/2960/2524 +f 3404/2962/2525 3406/3253/2525 3041/2963/2525 +f 3218/2965/2488 3220/3254/2488 3288/2966/2488 +f 3156/2969/2526 3048/3255/2526 3242/2970/2526 +f 3049/2972/2527 3399/3256/2527 3022/2973/2527 +f 3222/2975/2528 3224/3257/2528 3289/2976/2528 +f 3408/2978/2512 3330/3258/2512 3372/2979/2512 +f 3270/2981/2529 3290/3259/2529 3225/2982/2529 +f 3228/2984/2530 3223/3260/2530 3227/2985/2530 +f 3397/2987/2504 3026/3261/2504 3030/2988/2504 +f 3243/2990/2531 3047/3262/2531 2983/2991/2531 +f 3232/2993/2507 3206/3263/2507 3161/2994/2507 +f 3410/2996/2532 3405/3264/2532 3044/2997/2532 +f 3060/2999/2533 2961/3265/2533 2965/3000/2533 +f 3401/3002/2506 3409/3266/2506 3056/3003/2506 +f 3407/3005/2523 3050/3267/2523 3052/3006/2523 +f 3144/3008/2527 2769/3268/2527 3036/3009/2527 +f 2969/3011/2534 3168/3269/2534 3214/3012/2534 +f 3207/3014/2535 3061/3270/2535 3063/3015/2535 +f 3248/3018/2536 3235/3271/2536 3237/3019/2536 +f 3238/3021/2537 3229/3272/2537 3231/3022/2537 +f 2977/3024/2538 2999/3273/2538 3005/3025/2538 +f 3380/3027/2539 3344/3274/2539 3239/3028/2539 +f 3221/3030/2540 3324/3275/2540 3326/3031/2540 +f 3234/3033/2541 3411/3276/2541 3177/3034/2541 +f 2985/3036/2488 3164/3277/2488 3209/3037/2488 +f 2696/3039/2542 3067/3278/2542 3069/3040/2542 +f 3337/3042/2541 3345/3279/2541 3381/3043/2541 +f 3315/3045/2523 3245/3280/2523 3247/3046/2523 +f 3028/3048/2543 2967/3281/2543 2971/3049/2543 +f 3244/3051/2527 3233/3282/2527 3292/3052/2527 +f 3376/3054/2503 3219/3283/2503 3045/3055/2503 +f 3066/3057/2536 3317/3284/2536 3321/3058/2536 +f 3080/3060/2544 3073/3063/2544 3382/3061/2545 +f 3073/3063/2544 3080/3060/2544 3079/2821/2431 +f 2821/3285/2547 3384/3286/2547 2754/3287/2547 +f 3384/3286/2547 2736/3288/2547 2754/3287/2547 +f 2736/3288/2547 2744/3289/2547 2754/3287/2547 +f 2744/3289/2547 2790/3290/2547 2754/3287/2547 +f 2754/3287/2547 2753/3291/2547 2821/3285/2547 +f 2821/3285/2547 2753/3291/2547 2820/3292/2668 +f 2753/3291/2547 2784/3293/2547 2818/3066/2547 +f 2784/3293/2547 2775/3294/2547 2818/3066/2547 +f 2753/3291/2547 2818/3066/2547 2819/3295/2547 +f 2775/3294/2547 2774/3064/2547 2818/3066/2547 +f 2774/3064/2547 3383/3296/2547 2812/3297/2547 +f 2774/3064/2547 2812/3297/2547 2815/3298/2547 +f 2820/3292/2668 2753/3291/2547 2819/3295/2547 +f 2774/3064/2547 2815/3298/2547 2816/3299/2547 +f 2774/3064/2547 2816/3299/2547 3349/3065/2547 +f 2814/3067/2548 2813/3300/2669 3412/3068/2549 +f 3390/3071/2552 3387/3301/2604 3389/3072/2553 +f 3085/3077/2558 3304/3099/2577 3078/3078/2559 +f 3302/2827/2437 3257/2826/2436 3261/3081/2562 +f 3346/3302/2670 2777/3088/2498 2811/3303/2498 +f 2777/3088/2498 2776/3304/2498 2841/3305/2498 +f 2811/3303/2498 2777/3088/2498 2824/3306/2498 +f 2776/3304/2498 2785/3307/2498 2841/3305/2498 +f 2785/3307/2498 2756/3308/2498 2841/3305/2498 +f 2756/3308/2498 2755/3309/2498 3354/3310/2498 +f 2755/3309/2498 2792/3311/2498 2791/3312/2498 +f 2737/3313/2498 2755/3309/2498 2791/3312/2498 +f 2737/3313/2498 3259/3314/2498 2755/3309/2498 +f 3259/3314/2498 3354/3310/2498 2755/3309/2498 +f 3354/3310/2498 3305/3315/2498 2756/3308/2498 +f 2824/3306/2498 2777/3088/2498 2823/3316/2498 +f 2823/3316/2498 2777/3088/2498 2839/3087/2498 +f 2841/3305/2498 2756/3308/2498 3305/3315/2498 +f 2841/3305/2498 2836/3089/2498 2777/3088/2498 +f 3254/3090/2568 2847/3317/2568 2846/3091/2569 +f 3386/3093/2571 3303/3082/2563 3261/3081/2562 +f 3255/3074/2555 3082/3076/2557 3081/3069/2550 +f 2846/3091/2569 2825/3318/2573 3385/3095/2573 +f 3390/3071/2552 3086/3073/2554 3087/3084/2565 +f 3187/3096/2574 3355/3319/2572 3357/3097/2575 +f 3188/3101/2579 3187/3096/2574 3093/3098/2576 +f 3306/3103/2580 3189/3320/2671 3095/3104/2581 +f 3096/2840/2450 3263/2839/2449 3306/3103/2580 +f 3312/3106/2583 3311/2855/2465 3359/2854/2464 +f 3312/3106/2583 3271/3107/2584 3272/3113/2590 +f 3272/3113/2590 3115/3321/2592 3117/3115/2592 +f 3119/3116/2593 3122/3122/2599 3194/3117/2594 +f 3393/3121/2598 3194/3117/2594 3122/3122/2599 +f 3364/3124/2601 3394/3322/2672 3363/3125/2602 +f 3395/3126/2603 3358/3323/2604 3356/3127/2604 +f 2867/3324/2547 2869/3325/2547 3208/3326/2547 +f 3208/3326/2547 2746/3327/2547 2865/3328/2547 +f 2746/3327/2547 2745/3329/2547 2865/3328/2547 +f 2865/3328/2547 2745/3329/2547 2749/3330/2547 +f 2749/3330/2547 2795/3130/2547 2861/3129/2547 +f 2863/3331/2547 2749/3330/2547 2861/3129/2547 +f 2795/3130/2547 2809/3332/2547 2700/3333/2547 +f 2699/3334/2547 3032/3335/2547 3307/3128/2547 +f 2795/3130/2547 2700/3333/2547 2699/3334/2547 +f 2749/3330/2547 2863/3331/2547 2865/3328/2547 +f 2865/3328/2547 2867/3324/2547 3208/3326/2547 +f 2795/3130/2547 2699/3334/2547 3307/3128/2547 +f 2888/3131/2605 2885/3336/2572 3182/3132/2606 +f 2750/3136/2498 2748/3337/2498 2864/3338/2498 +f 2748/3337/2498 2747/3339/2498 2864/3338/2498 +f 2864/3338/2498 2747/3339/2498 2758/3340/2498 +f 2758/3340/2498 2870/3341/2498 2868/3342/2498 +f 2758/3340/2498 2868/3342/2498 2866/3343/2498 +f 2796/3344/2498 2750/3136/2498 2860/3135/2498 +f 2864/3338/2498 2758/3340/2498 2866/3343/2498 +f 2701/3345/2498 2810/3346/2498 2796/3344/2498 +f 2858/3347/2498 2771/3348/2498 2770/3349/2498 +f 2770/3349/2498 2701/3345/2498 2796/3344/2498 +f 2858/3347/2498 2770/3349/2498 2796/3344/2498 +f 2860/3135/2498 2858/3347/2498 2796/3344/2498 +f 2750/3136/2498 2864/3338/2498 2862/3134/2498 +f 2890/3137/2608 2888/3131/2605 3367/3133/2607 +f 3166/3138/2609 3167/3140/2611 3064/3139/2610 +f 3167/3140/2611 3301/2864/2474 3065/3141/2612 +f 3128/3142/2613 3195/3145/2615 3113/3143/2614 +f 3195/3145/2615 3132/3150/2618 3322/3146/2616 +f 3140/3147/2617 3138/3350/2617 3276/3148/2617 +f 3002/3154/2622 3003/3159/2627 3154/3155/2623 +f 3003/3159/2627 3370/3351/2673 3054/3160/2628 +f 3371/3161/2629 3281/3164/2632 3055/3162/2630 +f 3281/3164/2632 3282/3167/2634 3204/3165/2633 +f 3017/3166/2600 3204/3165/2633 3282/3167/2634 +f 3018/3169/2635 3016/3352/2672 3158/3170/2602 +f 3159/3171/2603 3181/3353/2604 3196/3172/2636 +f 2797/3354/2547 2801/3355/2547 2892/3356/2547 +f 2801/3355/2547 2721/3173/2547 2973/3175/2547 +f 2797/3354/2547 2892/3356/2547 2894/3357/2547 +f 2721/3173/2547 2720/3358/2547 2972/3174/2547 +f 2720/3358/2547 3197/3359/2547 2972/3174/2547 +f 2892/3356/2547 2801/3355/2547 2973/3175/2547 +f 3286/3176/2637 2923/3360/2663 3162/3177/2638 +f 2802/3361/2498 2798/3362/2498 2891/3363/2498 +f 2798/3362/2498 2893/3364/2498 2891/3363/2498 +f 2723/3365/2498 2722/3181/2498 2887/3180/2498 +f 2722/3181/2498 2802/3361/2498 2889/3179/2498 +f 2887/3180/2498 2886/3366/2498 2723/3365/2498 +f 2802/3361/2498 2891/3363/2498 2889/3179/2498 +f 3403/3182/2640 3286/3176/2637 3163/3178/2639 +f 3352/3184/2641 3283/3187/2644 3211/3185/2642 +f 3284/2876/2486 3212/2875/2485 3211/3185/2642 +f 3145/3188/2645 3147/2881/2489 3328/2883/2491 +f 3341/2882/2490 3147/2881/2489 3298/3191/2648 +f 3350/3192/2649 3298/3191/2648 3299/3193/2650 +f 3148/3195/2651 3173/3367/2651 3174/3196/2652 +f 3174/3196/2652 3175/3201/2657 3059/3200/2656 +f 3175/3201/2657 3378/3368/2674 3342/3202/2628 +f 3379/3203/2629 3293/3206/2632 3240/3204/2658 +f 3293/3206/2632 2954/3209/2634 3241/3207/2660 +f 3071/3208/2600 3241/3207/2660 2954/3209/2634 +f 2959/3211/2661 2957/3369/2672 3179/3212/2602 +f 3180/3213/2662 3162/3370/2638 2923/3214/2663 +f 2963/3371/2547 2695/3216/2547 3072/3215/2547 +f 2695/3216/2547 2799/3218/2547 2955/3372/2547 +f 2963/3371/2547 3072/3215/2547 3285/3373/2547 +f 2799/3218/2547 2953/3374/2547 2955/3372/2547 +f 2955/3372/2547 3070/3217/2547 2695/3216/2547 +f 2922/3375/2547 3197/3359/2547 2720/3358/2547 +f 2720/3358/2547 2779/3376/2547 2918/3377/2547 +f 2779/3376/2547 2778/3378/2547 2739/3379/2547 +f 2738/3380/2547 2779/3376/2547 2739/3379/2547 +f 2779/3376/2547 2738/3380/2547 2912/3381/2547 +f 2918/3377/2547 2779/3376/2547 2916/3382/2547 +f 2920/3383/2547 2922/3375/2547 2720/3358/2547 +f 2918/3377/2547 2920/3383/2547 2720/3358/2547 +f 2738/3380/2547 2759/3384/2547 2907/3385/2547 +f 2916/3382/2547 2779/3376/2547 2914/3386/2547 +f 2914/3386/2547 2779/3376/2547 2912/3381/2547 +f 2759/3384/2547 2717/3387/2547 2905/3388/2547 +f 2912/3381/2547 2738/3380/2547 2909/3389/2547 +f 2909/3389/2547 2738/3380/2547 2907/3385/2547 +f 2907/3385/2547 2759/3384/2547 2905/3388/2547 +f 2903/3390/2547 2905/3388/2547 2717/3387/2547 +f 2782/3391/2547 2742/3392/2547 2732/3393/2547 +f 2742/3392/2547 2733/3394/2547 2732/3393/2547 +f 2732/3393/2547 2711/3395/2547 2782/3391/2547 +f 2711/3395/2547 2710/3396/2547 2714/3397/2547 +f 2714/3397/2547 2751/3398/2547 2711/3395/2547 +f 2751/3398/2547 2787/3399/2547 2711/3395/2547 +f 2716/3400/2547 2782/3391/2547 2787/3399/2547 +f 2782/3391/2547 2711/3395/2547 2787/3399/2547 +f 2717/3387/2547 2716/3400/2547 2786/3401/2547 +f 2716/3400/2547 2787/3399/2547 2786/3401/2547 +f 2803/3402/2547 2805/3403/2547 2766/3404/2547 +f 2805/3403/2547 2772/3405/2547 2766/3404/2547 +f 2766/3404/2547 2765/3406/2547 2702/3407/2547 +f 2765/3406/2547 2703/3408/2547 2702/3407/2547 +f 2766/3404/2547 2702/3407/2547 2803/3402/2547 +f 2803/3402/2547 2702/3407/2547 2762/3409/2547 +f 2793/3410/2547 2803/3402/2547 2762/3409/2547 +f 2793/3410/2547 2762/3409/2547 2761/3411/2547 +f 2707/3412/2547 2706/3413/2547 2807/3414/2547 +f 2807/3414/2547 2963/3371/2547 2928/3415/2547 +f 2963/3371/2547 3285/3373/2547 2926/3416/2547 +f 2963/3371/2547 2926/3416/2547 2928/3415/2547 +f 2707/3412/2547 2807/3414/2547 2934/3417/2547 +f 2807/3414/2547 2928/3415/2547 2930/3418/2547 +f 2730/3419/2547 2707/3412/2547 2937/3420/2547 +f 2807/3414/2547 2930/3418/2547 2932/3421/2547 +f 2807/3414/2547 2932/3421/2547 2934/3417/2547 +f 2707/3412/2547 2934/3417/2547 2936/3422/2547 +f 2761/3411/2547 2730/3419/2547 2941/3423/2547 +f 2707/3412/2547 2936/3422/2547 2937/3420/2547 +f 2730/3419/2547 2937/3420/2547 2939/3424/2547 +f 2730/3419/2547 2939/3424/2547 2941/3423/2547 +f 2797/3354/2547 2894/3357/2547 2895/3425/2547 +f 3383/3296/2547 2774/3064/2547 2828/3426/2547 +f 2774/3064/2547 2797/3354/2547 2828/3426/2547 +f 2797/3354/2547 2895/3425/2547 2898/3427/2547 +f 2797/3354/2547 2898/3427/2547 2900/3428/2547 +f 2830/3429/2547 2828/3426/2547 2797/3354/2547 +f 2831/3430/2547 2830/3429/2547 2797/3354/2547 +f 2797/3354/2547 2900/3428/2547 2901/3431/2547 +f 2831/3430/2547 2797/3354/2547 2901/3431/2547 +f 2842/3432/2547 2831/3430/2547 2901/3431/2547 +f 2842/3432/2547 2901/3431/2547 2903/3390/2547 +f 2833/3433/2547 2842/3432/2547 2903/3390/2547 +f 2833/3433/2547 2903/3390/2547 2717/3387/2547 +f 2834/3434/2547 2833/3433/2547 2717/3387/2547 +f 2834/3434/2547 2717/3387/2547 2725/3435/2547 +f 2717/3387/2547 2786/3401/2547 2725/3435/2547 +f 2845/3436/2547 2834/3434/2547 2724/3437/2547 +f 2834/3434/2547 2725/3435/2547 2724/3437/2547 +f 2786/3401/2547 2793/3410/2547 2725/3435/2547 +f 2838/3438/2547 2845/3436/2547 2724/3437/2547 +f 2793/3410/2547 2761/3411/2547 2728/3439/2547 +f 2725/3435/2547 2793/3410/2547 2728/3439/2547 +f 2736/3288/2547 3384/3286/2547 2826/3440/2547 +f 2826/3440/2547 2838/3438/2547 2736/3288/2547 +f 2761/3411/2547 2941/3423/2547 2728/3439/2547 +f 2724/3437/2547 2736/3288/2547 2838/3438/2547 +f 2941/3423/2547 2943/3441/2547 2728/3439/2547 +f 2943/3441/2547 2945/3442/2547 2851/3443/2547 +f 2728/3439/2547 2943/3441/2547 2851/3443/2547 +f 2945/3442/2547 2947/3444/2547 2884/3445/2547 +f 3307/3128/2547 3032/3335/2547 2857/3446/2547 +f 3032/3335/2547 2728/3439/2547 2851/3443/2547 +f 2857/3446/2547 3032/3335/2547 2855/3447/2547 +f 2947/3444/2547 2949/3448/2547 2882/3449/2547 +f 2855/3447/2547 3032/3335/2547 2853/3450/2547 +f 2853/3450/2547 3032/3335/2547 2851/3443/2547 +f 2851/3443/2547 2945/3442/2547 2848/3451/2547 +f 2951/3452/2547 2953/3374/2547 2799/3218/2547 +f 2848/3451/2547 2945/3442/2547 2884/3445/2547 +f 2949/3448/2547 2951/3452/2547 2799/3218/2547 +f 2799/3218/2547 3208/3326/2547 2877/3219/2547 +f 3208/3326/2547 2869/3325/2547 2872/3453/2547 +f 3208/3326/2547 2872/3453/2547 2874/3454/2547 +f 2884/3445/2547 2947/3444/2547 2882/3449/2547 +f 2882/3449/2547 2949/3448/2547 2880/3220/2547 +f 3208/3326/2547 2874/3454/2547 2875/3455/2547 +f 3208/3326/2547 2875/3455/2547 2877/3219/2547 +f 2880/3220/2547 2949/3448/2547 2799/3218/2547 +f 2924/3227/2498 2697/3225/2498 2925/3456/2498 +f 2697/3225/2498 2808/3457/2498 2927/3458/2498 +f 2925/3456/2498 2697/3225/2498 2927/3458/2498 +f 2808/3457/2498 2709/3459/2498 2708/3460/2498 +f 2808/3457/2498 2708/3460/2498 2933/3461/2498 +f 2927/3458/2498 2808/3457/2498 2929/3462/2498 +f 2708/3460/2498 2731/3463/2498 2938/3464/2498 +f 2929/3462/2498 2808/3457/2498 2931/3465/2498 +f 2931/3465/2498 2808/3457/2498 2933/3461/2498 +f 2933/3461/2498 2708/3460/2498 2935/3466/2498 +f 2731/3463/2498 2764/3467/2498 2940/3468/2675 +f 2935/3466/2498 2708/3460/2498 2938/3464/2498 +f 2938/3464/2498 2731/3463/2498 2940/3468/2675 +f 2942/3469/2498 2940/3468/2675 2764/3467/2498 +f 2800/3229/2498 2952/3228/2498 2950/3470/2498 +f 2871/3471/2498 2870/3341/2498 2758/3340/2498 +f 2873/3472/2498 2871/3471/2498 2758/3340/2498 +f 2758/3340/2498 2800/3229/2498 2876/3473/2498 +f 2800/3229/2498 2950/3470/2498 2948/3474/2498 +f 2800/3229/2498 2948/3474/2498 2946/3475/2498 +f 2876/3473/2498 2800/3229/2498 2878/3476/2498 +f 2876/3473/2498 2873/3472/2498 2758/3340/2498 +f 2800/3229/2498 2946/3475/2498 2878/3476/2498 +f 2878/3476/2498 2946/3475/2498 2879/3477/2498 +f 2946/3475/2498 2944/3478/2498 2879/3477/2498 +f 2879/3477/2498 2944/3478/2498 2881/3479/2498 +f 2944/3478/2498 2942/3469/2498 2881/3479/2498 +f 2881/3479/2498 2942/3469/2498 2883/3480/2498 +f 2942/3469/2498 2764/3467/2498 2883/3480/2498 +f 2883/3480/2498 2764/3467/2498 2849/3481/2498 +f 2764/3467/2498 2763/3482/2498 2849/3481/2498 +f 2705/3483/2498 2704/3484/2498 2768/3485/2498 +f 2849/3481/2498 2763/3482/2498 2850/3486/2498 +f 2763/3482/2498 2705/3483/2498 2804/3487/2498 +f 2850/3486/2498 2763/3482/2498 2794/3488/2498 +f 2705/3483/2498 2768/3485/2498 2767/3489/2498 +f 2767/3489/2498 2773/3490/2498 2806/3491/2498 +f 2767/3489/2498 2806/3491/2498 2804/3487/2498 +f 2763/3482/2498 2804/3487/2498 2794/3488/2498 +f 2705/3483/2498 2767/3489/2498 2804/3487/2498 +f 2852/3492/2498 2850/3486/2498 2771/3348/2498 +f 2854/3493/2498 2852/3492/2498 2771/3348/2498 +f 2850/3486/2498 2794/3488/2498 2729/3494/2498 +f 2850/3486/2498 2729/3494/2498 2771/3348/2498 +f 2771/3348/2498 2858/3347/2498 2856/3495/2498 +f 2856/3495/2498 2854/3493/2498 2771/3348/2498 +f 2794/3488/2498 2789/3496/2498 2729/3494/2498 +f 2788/3497/2498 2752/3498/2498 2712/3499/2498 +f 2752/3498/2498 2715/3500/2498 2713/3501/2498 +f 2729/3494/2498 2789/3496/2498 2726/3502/2498 +f 2789/3496/2498 2788/3497/2498 2719/3503/2498 +f 2726/3502/2498 2789/3496/2498 2718/3504/2498 +f 2718/3504/2498 2789/3496/2498 2719/3503/2498 +f 2752/3498/2498 2713/3501/2498 2712/3499/2498 +f 2712/3499/2498 2735/3505/2498 2783/3506/2498 +f 2788/3497/2498 2712/3499/2498 2783/3506/2498 +f 2735/3505/2498 2734/3507/2498 2743/3508/2498 +f 2735/3505/2498 2743/3508/2498 2783/3506/2498 +f 2727/3509/2498 2726/3502/2498 2835/3510/2498 +f 3259/3314/2498 2737/3313/2498 2837/3511/2498 +f 2737/3313/2498 2727/3509/2498 2837/3511/2498 +f 2726/3502/2498 2718/3504/2498 2832/3512/2498 +f 2788/3497/2498 2783/3506/2498 2719/3503/2498 +f 2844/3513/2498 2837/3511/2498 2727/3509/2498 +f 2835/3510/2498 2844/3513/2498 2727/3509/2498 +f 2832/3512/2498 2835/3510/2498 2726/3502/2498 +f 2832/3512/2498 2718/3504/2498 2760/3514/2498 +f 2843/3515/2498 2832/3512/2498 2760/3514/2498 +f 2741/3516/2498 2740/3517/2498 2780/3518/2498 +f 2740/3517/2498 2781/3519/2498 2780/3518/2498 +f 2843/3515/2498 2760/3514/2498 2904/3221/2498 +f 2760/3514/2498 2741/3516/2498 2908/3520/2498 +f 2910/3521/2498 2741/3516/2498 2911/3522/2498 +f 2840/3223/2498 2843/3515/2498 2904/3221/2498 +f 2741/3516/2498 2910/3521/2498 2908/3520/2498 +f 2780/3518/2498 2723/3365/2498 2917/3523/2498 +f 2723/3365/2498 2886/3366/2498 2921/3524/2498 +f 2723/3365/2498 2921/3524/2498 2919/3525/2498 +f 2741/3516/2498 2780/3518/2498 2911/3522/2498 +f 2829/3526/2498 2840/3223/2498 2902/3222/2498 +f 2723/3365/2498 2919/3525/2498 2917/3523/2498 +f 2827/3527/2498 2829/3526/2498 2798/3362/2498 +f 2760/3514/2498 2908/3520/2498 2906/3528/2498 +f 2777/3088/2498 3346/3302/2670 2827/3527/2498 +f 2893/3364/2498 2798/3362/2498 2896/3529/2498 +f 2798/3362/2498 2777/3088/2498 2827/3527/2498 +f 2896/3529/2498 2798/3362/2498 2897/3530/2498 +f 2897/3530/2498 2798/3362/2498 2899/3531/2498 +f 2760/3514/2498 2906/3528/2498 2904/3221/2498 +f 2780/3518/2498 2917/3523/2498 2915/3532/2498 +f 2780/3518/2498 2915/3532/2498 2913/3533/2498 +f 2899/3531/2498 2798/3362/2498 2829/3526/2498 +f 2780/3518/2498 2913/3533/2498 2911/3522/2498 +f 2902/3222/2498 2899/3531/2498 2829/3526/2498 +o Cube_Cube.001 +v -0.686449 -135.955338 -6.241868 +v -0.686449 142.884888 -6.241868 +v -0.686449 -135.955338 -2.061676 +v -0.686449 142.884888 -2.061676 +v 133.885986 -141.511993 -6.241868 +v 133.885986 142.884888 -2.061676 +v 133.885986 142.884888 -6.241868 +v 133.885986 -141.511993 -2.061676 +v -133.325394 142.262604 -6.241868 +v -133.325394 -142.134277 -2.061676 +v -133.325394 -142.134277 -6.241868 +v -133.325394 142.262604 -2.061676 +v 119.878510 142.884888 -6.241868 +v 119.878510 -135.955338 -2.061676 +v 119.878510 -135.955338 -6.241868 +v 119.878510 142.884888 -2.061676 +v -120.695747 -135.955338 -6.241868 +v -120.695747 142.884888 -2.061676 +v -120.695747 142.884888 -6.241868 +v -120.695747 -135.955338 -2.061676 +v -175.333893 -141.554871 -2.061676 +v -178.441818 -139.025375 -2.061676 +v -178.441818 -139.025375 -6.241868 +v -175.333893 -141.554871 -6.241868 +v -178.441818 140.535446 -2.061676 +v -175.505325 142.844376 -2.061676 +v -175.505325 142.844376 -6.241868 +v -178.441818 140.535446 -6.241868 +v 174.136795 142.884888 -2.061676 +v 177.068924 140.539276 -2.061676 +v 177.068924 140.539276 -6.241868 +v 174.136795 142.884888 -6.241868 +v 177.068924 -139.106430 -2.061676 +v 174.061844 -141.511993 -2.061676 +v 174.061844 -141.511993 -6.241868 +v 177.068924 -139.106430 -6.241868 +v -120.695747 -135.955338 -6.241868 +v -0.686449 -135.955338 -6.241868 +v 119.878510 142.884888 -6.241868 +v -0.686449 142.884888 -6.241868 +v 119.878510 -135.955338 -2.061676 +v -0.686449 -135.955338 -2.061676 +v -120.695747 142.884888 -2.061676 +v -0.686449 142.884888 -2.061676 +v 119.878510 -135.955338 -6.241868 +v 133.885986 -141.511993 -6.241868 +v 119.878510 142.884888 -2.061676 +v 133.885986 142.884888 -2.061676 +v -120.695747 142.884888 -6.241868 +v -133.325394 142.262604 -6.241868 +v -120.695747 -135.955338 -2.061676 +v -133.325394 -142.134277 -2.061676 +v 133.885986 142.884888 -6.241868 +v 133.885986 -141.511993 -2.061676 +v -133.325394 -142.134277 -6.241868 +v -133.325394 142.262604 -2.061676 +v -178.441818 -139.025375 -2.061676 +v -175.333893 -141.554871 -2.061676 +v -175.333893 -141.554871 -6.241868 +v -178.441818 -139.025375 -6.241868 +v -178.441818 140.535446 -6.241868 +v -178.441818 140.535446 -6.241868 +v -175.505325 142.844376 -6.241868 +v -175.505325 142.844376 -6.241868 +v -175.505325 142.844376 -2.061676 +v -175.505325 142.844376 -2.061676 +v -178.441818 140.535446 -2.061676 +v -178.441818 140.535446 -2.061676 +v 177.068924 140.539276 -2.061676 +v 174.136795 142.884888 -2.061676 +v 174.136795 142.884888 -6.241868 +v 177.068924 140.539276 -6.241868 +v 177.068924 -139.106430 -6.241868 +v 174.061844 -141.511993 -6.241868 +v 174.061844 -141.511993 -2.061676 +v 177.068924 -139.106430 -2.061676 +vt 0.812500 0.165334 +vt 0.812500 0.165334 +vt 0.870756 0.165334 +vt 0.870756 0.165334 +vt 0.377186 0.165334 +vt 0.377186 0.165334 +vt 0.622935 0.165334 +vt 0.622935 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.622938 0.165334 +vt 0.377115 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.377186 0.165334 +vt 0.622935 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.718750 0.165334 +vt 0.718750 0.165334 +vt 0.750000 0.165334 +vt 0.750000 0.165334 +vt 0.218750 0.165334 +vt 0.218750 0.165334 +vt 0.250000 0.165334 +vt 0.250000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.377115 0.165334 +vt 0.622938 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.781250 0.165334 +vt 0.781250 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.375000 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.625000 0.165334 +vt 0.622935 0.165334 +vt 0.377186 0.165334 +vt 0.281250 0.165334 +vt 0.281250 0.165334 +vt 0.312500 0.165334 +vt 0.312500 0.165334 +vt 0.375000 0.165334 +vt 0.625000 0.165334 +vt 0.187500 0.165334 +vt 0.187500 0.165334 +vt 0.687500 0.165334 +vt 0.687500 0.165334 +vt 0.370695 0.165334 +vt 0.370695 0.165334 +vt 0.629068 0.165334 +vt 0.622935 0.165334 +vt 0.622935 0.165334 +vt 0.629068 0.165334 +vt 0.629068 0.165334 +vt 0.629068 0.165334 +vt 0.625000 0.165334 +vt 0.622938 0.165334 +vt 0.622938 0.165334 +vt 0.625000 0.165334 +vt 0.377115 0.165334 +vt 0.377115 0.165334 +vt 0.129352 0.165334 +vt 0.125000 0.165334 +vt 0.125000 0.165334 +vt 0.129352 0.165334 +vn 0.0000 1.0000 0.0000 +vn -1.0000 0.0000 0.0000 +vn 0.0000 0.0000 -1.0000 +vn 0.0000 -1.0000 0.0000 +vn 0.0000 0.0000 1.0000 +vn 0.4395 -0.8983 0.0000 +vn -0.3687 -0.9295 0.0000 +vn -0.0492 0.9988 0.0000 +vn -0.6312 -0.7756 0.0000 +vn -0.0138 -0.9999 0.0000 +vn -0.6181 0.7861 0.0000 +vn 0.0138 0.9999 0.0000 +vn 0.6247 0.7809 0.0000 +vn 1.0000 0.0000 0.0000 +vn 0.6247 -0.7809 0.0000 +usemtl material +s off +f 3419/3534/2676 3460/3535/2676 3441/3536/2676 3483/3537/2676 +f 3435/3538/2677 3434/3539/2677 3480/3540/2677 3474/3541/2677 +f 3486/3542/2678 3458/3543/2678 3465/3544/2678 3444/3545/2678 3484/3546/2678 3485/3547/2678 +f 3423/3548/2678 3436/3549/2678 3472/3550/2678 3473/3551/2678 3475/3552/2678 3462/3553/2678 +f 3431/3554/2676 3455/3555/2676 3456/3556/2676 3414/3557/2676 +f 3427/3558/2679 3453/3559/2679 3454/3560/2679 3413/3561/2679 +f 3432/3562/2680 3415/3563/2680 3416/3564/2680 3430/3565/2680 +f 3457/3566/2678 3450/3567/2678 3452/3568/2678 3451/3569/2678 +f 3420/3570/2680 3446/3571/2680 3488/3572/2680 3481/3573/2680 3482/3574/2680 3418/3575/2680 +f 3425/3576/2676 3459/3577/2676 3460/3535/2676 3419/3534/2676 +f 3426/3578/2680 3420/3570/2680 3418/3575/2680 3428/3579/2680 +f 3470/3580/2680 3422/3581/2680 3468/3582/2680 3478/3583/2680 3479/3584/2680 3469/3585/2680 +f 3429/3586/2681 3463/3587/2681 3464/3588/2681 3467/3589/2681 +f 3449/3590/2678 3423/3548/2678 3462/3553/2678 3461/3591/2678 +f 3415/3563/2680 3426/3578/2680 3428/3579/2680 3416/3564/2680 +f 3414/3557/2676 3456/3556/2676 3459/3577/2676 3425/3576/2676 +f 3458/3543/2678 3457/3566/2678 3451/3569/2678 3465/3544/2678 +f 3417/3592/2682 3466/3593/2682 3453/3559/2682 3427/3558/2682 +f 3450/3567/2678 3449/3590/2678 3461/3591/2678 3452/3568/2678 +f 3413/3561/2679 3454/3560/2679 3463/3587/2679 3429/3586/2679 +f 3422/3581/2680 3432/3562/2680 3430/3565/2680 3468/3582/2680 +f 3421/3594/2683 3424/3595/2683 3455/3555/2683 3431/3554/2683 +f 3433/3596/2684 3434/3539/2684 3435/3538/2684 3471/3597/2684 +f 3467/3589/2685 3464/3588/2685 3433/3596/2685 3471/3597/2685 +f 3476/3598/2686 3440/3599/2686 3437/3600/2686 3477/3601/2686 +f 3439/3602/2687 3438/3603/2687 3424/3595/2687 3421/3594/2687 +f 3441/3604/2688 3442/3605/2688 3443/3606/2688 3483/3607/2688 +f 3445/3608/2689 3448/3609/2689 3443/3606/2689 3442/3605/2689 +f 3447/3610/2690 3448/3611/2690 3445/3612/2690 3487/3613/2690 +f 3447/3610/2679 3487/3613/2679 3466/3593/2679 3417/3592/2679 diff --git a/resources/meshes/ultimaker_method_platform.stl b/resources/meshes/ultimaker_method_platform.stl new file mode 100644 index 0000000000..fb80b579ff Binary files /dev/null and b/resources/meshes/ultimaker_method_platform.stl differ diff --git a/resources/meshes/ultimaker_method_xl_platform.stl b/resources/meshes/ultimaker_method_xl_platform.stl new file mode 100644 index 0000000000..c4542fbefc Binary files /dev/null and b/resources/meshes/ultimaker_method_xl_platform.stl differ diff --git a/resources/meshes/ultimaker_sketch_platform.obj b/resources/meshes/ultimaker_sketch_platform.obj new file mode 100644 index 0000000000..1653bcc574 --- /dev/null +++ b/resources/meshes/ultimaker_sketch_platform.obj @@ -0,0 +1,12393 @@ +v 100 150.91 46.268 +v -100 150.91 46.268 +v 100 150.91 -7.35 +v -100 150.91 -7.35 +v -128.5 -109.75 -0.6 +v -128.5 109.25 -0.6 +v -128.5 -109.75 -4.6 +v -128.5 109.25 -4.6 +v 123.5 -114.75 -0.6 +v -123.5 -114.75 -0.6 +v 123.5 -114.75 -4.6 +v -123.5 -114.75 -4.6 +v 128.5 109.25 -4.6 +v 128.5 109.25 -0.6 +v 128.5 -109.75 -4.6 +v 128.5 -109.75 -0.6 +v 123.5 114.25 -0.6 +v 123.5 114.25 -4.6 +v -123.5 114.25 -0.6 +v -123.5 114.25 -4.6 +v 128.48 -110.186 -0.6 +v 128.5 -109.75 -0.6 +v 123.5 -114.75 -0.6 +v 128.5 109.25 -0.6 +v 123.5 114.25 -0.6 +v 123.936 114.23 -0.6 +v 128.48 109.686 -0.6 +v 128.424 110.118 -0.6 +v 128.33 110.544 -0.6 +v 128.198 110.96 -0.6 +v 128.032 111.363 -0.6 +v 127.83 111.75 -0.6 +v 127.596 112.118 -0.6 +v 127.33 112.464 -0.6 +v 127.036 112.786 -0.6 +v 126.714 113.08 -0.6 +v 126.368 113.346 -0.6 +v 126 113.58 -0.6 +v 125.613 113.782 -0.6 +v 125.21 113.948 -0.6 +v 124.794 114.08 -0.6 +v 124.368 114.174 -0.6 +v -123.5 114.25 -0.6 +v -123.5 -114.75 -0.6 +v -128.5 109.25 -0.6 +v -123.936 114.23 -0.6 +v -124.368 114.174 -0.6 +v -124.794 114.08 -0.6 +v -125.21 113.948 -0.6 +v -125.613 113.782 -0.6 +v -126 113.58 -0.6 +v -126.368 113.346 -0.6 +v -126.714 113.08 -0.6 +v -127.036 112.786 -0.6 +v -127.33 112.464 -0.6 +v -127.596 112.118 -0.6 +v -127.83 111.75 -0.6 +v -128.032 111.363 -0.6 +v -128.198 110.96 -0.6 +v -128.33 110.544 -0.6 +v -128.424 110.118 -0.6 +v -128.48 109.686 -0.6 +v -128.5 -109.75 -0.6 +v -128.48 -110.186 -0.6 +v -128.424 -110.618 -0.6 +v -128.33 -111.044 -0.6 +v -128.198 -111.46 -0.6 +v -128.032 -111.863 -0.6 +v -127.83 -112.25 -0.6 +v -127.596 -112.618 -0.6 +v -127.33 -112.964 -0.6 +v -127.036 -113.286 -0.6 +v -126.714 -113.58 -0.6 +v -126.368 -113.846 -0.6 +v -126 -114.08 -0.6 +v -125.613 -114.282 -0.6 +v -125.21 -114.448 -0.6 +v -124.794 -114.58 -0.6 +v -124.368 -114.674 -0.6 +v -123.936 -114.73 -0.6 +v 123.936 -114.73 -0.6 +v 124.368 -114.674 -0.6 +v 124.794 -114.58 -0.6 +v 125.21 -114.448 -0.6 +v 125.613 -114.282 -0.6 +v 126 -114.08 -0.6 +v 126.368 -113.846 -0.6 +v 126.714 -113.58 -0.6 +v 127.036 -113.286 -0.6 +v 127.33 -112.964 -0.6 +v 127.596 -112.618 -0.6 +v 127.83 -112.25 -0.6 +v 128.032 -111.863 -0.6 +v 128.198 -111.46 -0.6 +v 128.33 -111.044 -0.6 +v 128.424 -110.618 -0.6 +v 128.5 109.25 -4.6 +v 123.5 -114.75 -4.6 +v 123.5 114.25 -4.6 +v -123.5 -114.75 -4.6 +v -123.5 114.25 -4.6 +v -128.5 109.25 -4.6 +v -123.936 114.23 -4.6 +v -124.368 114.174 -4.6 +v 123.936 114.23 -4.6 +v 124.368 114.174 -4.6 +v 124.794 114.08 -4.6 +v 125.21 113.948 -4.6 +v 125.613 113.782 -4.6 +v 126 113.58 -4.6 +v 126.368 113.346 -4.6 +v 126.714 113.08 -4.6 +v 127.036 112.786 -4.6 +v 127.33 112.464 -4.6 +v 127.596 112.118 -4.6 +v 127.83 111.75 -4.6 +v 128.032 111.363 -4.6 +v 128.198 110.96 -4.6 +v 128.33 110.544 -4.6 +v 128.424 110.118 -4.6 +v 128.48 109.686 -4.6 +v 128.5 -109.75 -4.6 +v 128.48 -110.186 -4.6 +v 128.424 -110.618 -4.6 +v 128.33 -111.044 -4.6 +v 128.198 -111.46 -4.6 +v 128.032 -111.863 -4.6 +v 127.83 -112.25 -4.6 +v 127.596 -112.618 -4.6 +v 127.33 -112.964 -4.6 +v 127.036 -113.286 -4.6 +v 126.714 -113.58 -4.6 +v 126.368 -113.846 -4.6 +v 126 -114.08 -4.6 +v 125.613 -114.282 -4.6 +v 125.21 -114.448 -4.6 +v 124.794 -114.58 -4.6 +v 124.368 -114.674 -4.6 +v 123.936 -114.73 -4.6 +v -123.936 -114.73 -4.6 +v -124.368 -114.674 -4.6 +v -124.794 -114.58 -4.6 +v -125.21 -114.448 -4.6 +v -125.613 -114.282 -4.6 +v -126 -114.08 -4.6 +v -126.368 -113.846 -4.6 +v -126.714 -113.58 -4.6 +v -127.036 -113.286 -4.6 +v -127.33 -112.964 -4.6 +v -127.596 -112.618 -4.6 +v -127.83 -112.25 -4.6 +v -128.032 -111.863 -4.6 +v -128.198 -111.46 -4.6 +v -128.33 -111.044 -4.6 +v -128.424 -110.618 -4.6 +v -128.48 -110.186 -4.6 +v -128.5 -109.75 -4.6 +v -128.48 109.686 -4.6 +v -128.424 110.118 -4.6 +v -128.33 110.544 -4.6 +v -128.198 110.96 -4.6 +v -128.032 111.363 -4.6 +v -127.83 111.75 -4.6 +v -127.596 112.118 -4.6 +v -127.33 112.464 -4.6 +v -127.036 112.786 -4.6 +v -126.714 113.08 -4.6 +v -126.368 113.346 -4.6 +v -126 113.58 -4.6 +v -125.613 113.782 -4.6 +v -125.21 113.948 -4.6 +v -124.794 114.08 -4.6 +v 123.936 114.23 -0.6 +v 123.936 114.23 -4.6 +v 124.368 114.174 -0.6 +v 124.368 114.174 -4.6 +v 124.794 114.08 -0.6 +v 124.794 114.08 -4.6 +v 125.21 113.948 -0.6 +v 125.21 113.948 -4.6 +v 125.613 113.782 -0.6 +v 125.613 113.782 -4.6 +v 126 113.58 -0.6 +v 126 113.58 -4.6 +v 126.368 113.346 -0.6 +v 126.368 113.346 -4.6 +v 126.714 113.08 -0.6 +v 126.714 113.08 -4.6 +v 127.036 112.786 -0.6 +v 127.036 112.786 -4.6 +v 127.33 112.464 -0.6 +v 127.33 112.464 -4.6 +v 127.596 112.118 -0.6 +v 127.596 112.118 -4.6 +v 127.83 111.75 -0.6 +v 127.83 111.75 -4.6 +v 128.032 111.363 -0.6 +v 128.032 111.363 -4.6 +v 128.198 110.96 -0.6 +v 128.198 110.96 -4.6 +v 128.33 110.544 -0.6 +v 128.33 110.544 -4.6 +v 128.424 110.118 -0.6 +v 128.424 110.118 -4.6 +v 128.48 109.686 -0.6 +v 128.48 109.686 -4.6 +v -128.48 109.686 -0.6 +v -128.48 109.686 -4.6 +v -128.424 110.118 -0.6 +v -128.424 110.118 -4.6 +v -128.33 110.544 -0.6 +v -128.33 110.544 -4.6 +v -128.198 110.96 -0.6 +v -128.198 110.96 -4.6 +v -128.032 111.363 -0.6 +v -128.032 111.363 -4.6 +v -127.83 111.75 -0.6 +v -127.83 111.75 -4.6 +v -127.596 112.118 -0.6 +v -127.596 112.118 -4.6 +v -127.33 112.464 -0.6 +v -127.33 112.464 -4.6 +v -127.036 112.786 -0.6 +v -127.036 112.786 -4.6 +v -126.714 113.08 -0.6 +v -126.714 113.08 -4.6 +v -126.368 113.346 -0.6 +v -126.368 113.346 -4.6 +v -126 113.58 -0.6 +v -126 113.58 -4.6 +v -125.613 113.782 -0.6 +v -125.613 113.782 -4.6 +v -125.21 113.948 -0.6 +v -125.21 113.948 -4.6 +v -124.794 114.08 -0.6 +v -124.794 114.08 -4.6 +v -124.368 114.174 -0.6 +v -124.368 114.174 -4.6 +v -123.936 114.23 -0.6 +v -123.936 114.23 -4.6 +v -123.936 -114.73 -0.6 +v -123.936 -114.73 -4.6 +v -124.368 -114.674 -0.6 +v -124.368 -114.674 -4.6 +v -124.794 -114.58 -0.6 +v -124.794 -114.58 -4.6 +v -125.21 -114.448 -0.6 +v -125.21 -114.448 -4.6 +v -125.613 -114.282 -0.6 +v -125.613 -114.282 -4.6 +v -126 -114.08 -0.6 +v -126 -114.08 -4.6 +v -126.368 -113.846 -0.6 +v -126.368 -113.846 -4.6 +v -126.714 -113.58 -0.6 +v -126.714 -113.58 -4.6 +v -127.036 -113.286 -0.6 +v -127.036 -113.286 -4.6 +v -127.33 -112.964 -0.6 +v -127.33 -112.964 -4.6 +v -127.596 -112.618 -0.6 +v -127.596 -112.618 -4.6 +v -127.83 -112.25 -0.6 +v -127.83 -112.25 -4.6 +v -128.032 -111.863 -0.6 +v -128.032 -111.863 -4.6 +v -128.198 -111.46 -0.6 +v -128.198 -111.46 -4.6 +v -128.33 -111.044 -0.6 +v -128.33 -111.044 -4.6 +v -128.424 -110.618 -0.6 +v -128.424 -110.618 -4.6 +v -128.48 -110.186 -0.6 +v -128.48 -110.186 -4.6 +v 128.48 -110.186 -0.6 +v 128.48 -110.186 -4.6 +v 128.424 -110.618 -0.6 +v 128.424 -110.618 -4.6 +v 128.33 -111.044 -0.6 +v 128.33 -111.044 -4.6 +v 128.198 -111.46 -0.6 +v 128.198 -111.46 -4.6 +v 128.032 -111.863 -0.6 +v 128.032 -111.863 -4.6 +v 127.83 -112.25 -0.6 +v 127.83 -112.25 -4.6 +v 127.596 -112.618 -0.6 +v 127.596 -112.618 -4.6 +v 127.33 -112.964 -0.6 +v 127.33 -112.964 -4.6 +v 127.036 -113.286 -0.6 +v 127.036 -113.286 -4.6 +v 126.714 -113.58 -0.6 +v 126.714 -113.58 -4.6 +v 126.368 -113.846 -0.6 +v 126.368 -113.846 -4.6 +v 126 -114.08 -0.6 +v 126 -114.08 -4.6 +v 125.613 -114.282 -0.6 +v 125.613 -114.282 -4.6 +v 125.21 -114.448 -0.6 +v 125.21 -114.448 -4.6 +v 124.794 -114.58 -0.6 +v 124.794 -114.58 -4.6 +v 124.368 -114.674 -0.6 +v 124.368 -114.674 -4.6 +v 123.936 -114.73 -0.6 +v 123.936 -114.73 -4.6 +v -100 150.902 -7.524 +v 100 150.902 -7.524 +v -100 150.88 -7.697 +v 100 150.88 -7.697 +v -100 150.842 -7.868 +v 100 150.842 -7.868 +v -100 150.79 -8.034 +v 100 150.79 -8.034 +v -100 150.723 -8.195 +v 100 150.723 -8.195 +v -100 150.642 -8.35 +v 100 150.642 -8.35 +v -100 150.548 -8.497 +v 100 150.548 -8.497 +v -100 150.442 -8.636 +v 100 150.442 -8.636 +v -100 150.324 -8.764 +v 100 150.324 -8.764 +v -100 150.196 -8.882 +v 100 150.196 -8.882 +v -100 150.057 -8.988 +v 100 150.057 -8.988 +v -100 149.91 -9.082 +v 100 149.91 -9.082 +v -100 149.755 -9.163 +v 100 149.755 -9.163 +v -100 149.594 -9.23 +v 100 149.594 -9.23 +v -100 149.428 -9.282 +v 100 149.428 -9.282 +v -100 149.257 -9.32 +v 100 149.257 -9.32 +v -100 149.084 -9.342 +v 100 149.084 -9.342 +v -100 148.91 -9.35 +v 100 148.91 -9.35 +v -100 152.865 48.268 +v -100 152.693 48.256 +v 100 152.865 48.268 +v 100 152.693 48.256 +v -100 152.523 48.23 +v 100 152.523 48.23 +v -100 152.356 48.19 +v 100 152.356 48.19 +v -100 152.193 48.135 +v 100 152.193 48.135 +v -100 152.035 48.067 +v 100 152.035 48.067 +v -100 151.884 47.985 +v 100 151.884 47.985 +v -100 151.74 47.89 +v 100 151.74 47.89 +v -100 151.605 47.784 +v 100 151.605 47.784 +v -100 151.48 47.666 +v 100 151.48 47.666 +v -100 151.365 47.538 +v 100 151.365 47.538 +v -100 151.262 47.4 +v 100 151.262 47.4 +v -100 151.17 47.255 +v 100 151.17 47.255 +v -100 151.092 47.102 +v 100 151.092 47.102 +v -100 151.027 46.943 +v 100 151.027 46.943 +v -100 150.976 46.78 +v 100 150.976 46.78 +v -100 150.94 46.61 +v 100 150.94 46.61 +v -100 150.917 46.44 +v 100 150.917 46.44 +v 100 157.01 -13.35 +v -100 157.01 -13.35 +v 100 157.01 48.36 +v -100 157.01 48.36 +v 100 152.693 48.256 +v 100 152.523 48.23 +v 100 152.865 48.268 +v 100 152.356 48.19 +v 100 152.193 48.135 +v 100 152.035 48.067 +v 100 151.884 47.985 +v 100 151.74 47.89 +v 100 151.605 47.784 +v 100 151.48 47.666 +v 100 151.365 47.538 +v 100 151.262 47.4 +v 100 151.17 47.255 +v 100 151.092 47.102 +v 100 151.027 46.943 +v 100 150.976 46.78 +v 100 150.94 46.61 +v 100 150.917 46.44 +v 100 150.91 46.268 +v 100 157.01 48.36 +v 100 150.91 -7.35 +v 100 157.01 -13.35 +v 100 150.902 -7.524 +v 100 150.88 -7.697 +v 100 150.842 -7.868 +v 100 150.79 -8.034 +v 100 150.723 -8.195 +v 100 150.642 -8.35 +v 100 150.548 -8.497 +v 100 150.442 -8.636 +v 100 150.324 -8.764 +v 100 150.196 -8.882 +v 100 150.057 -8.988 +v 100 149.91 -9.082 +v 100 149.755 -9.163 +v 100 149.594 -9.23 +v 100 145.626 -13.35 +v 100 149.428 -9.282 +v 100 149.257 -9.32 +v 100 149.084 -9.342 +v 100 148.91 -9.35 +v 100 145.626 -9.35 +v -100 150.917 46.44 +v -100 150.94 46.61 +v -100 150.91 46.268 +v -100 150.976 46.78 +v -100 151.027 46.943 +v -100 151.092 47.102 +v -100 151.17 47.255 +v -100 151.262 47.4 +v -100 151.365 47.538 +v -100 151.48 47.666 +v -100 151.605 47.784 +v -100 151.74 47.89 +v -100 151.884 47.985 +v -100 152.035 48.067 +v -100 152.193 48.135 +v -100 152.356 48.19 +v -100 152.523 48.23 +v -100 152.693 48.256 +v -100 152.865 48.268 +v -100 157.01 48.36 +v -100 150.91 -7.35 +v -100 157.01 -13.35 +v -100 150.902 -7.524 +v -100 150.88 -7.697 +v -100 149.257 -9.32 +v -100 149.428 -9.282 +v -100 145.626 -13.35 +v -100 149.594 -9.23 +v -100 149.755 -9.163 +v -100 149.91 -9.082 +v -100 145.626 -9.35 +v -100 148.91 -9.35 +v -100 149.084 -9.342 +v -100 150.057 -8.988 +v -100 150.196 -8.882 +v -100 150.324 -8.764 +v -100 150.442 -8.636 +v -100 150.548 -8.497 +v -100 150.642 -8.35 +v -100 150.723 -8.195 +v -100 150.79 -8.034 +v -100 150.842 -7.868 +v 100 145.626 -9.35 +v -100 145.626 -9.35 +v 100.016 145.228 -9.35 +v -100.016 145.228 -9.35 +v 100.063 144.832 -9.35 +v -100.064 144.832 -9.35 +v 100.143 144.44 -9.35 +v -100.143 144.44 -9.35 +v 100.252 144.058 -9.35 +v -100.252 144.058 -9.35 +v 100.393 143.684 -9.35 +v -100.393 143.684 -9.35 +v 100.562 143.323 -9.35 +v -100.562 143.323 -9.35 +v 100.76 142.977 -9.35 +v -100.76 142.977 -9.35 +v 100.984 142.647 -9.35 +v -100.984 142.647 -9.35 +v 101.234 142.337 -9.35 +v -101.235 142.337 -9.35 +v 128.5 108.5 -9.35 +v -128.5 108.5 -9.35 +v 123.5 -114.75 -9.35 +v -123.5 -114.75 -9.35 +v -126.772 113.105 -9.35 +v -128.478 109.057 -9.35 +v -127.122 112.67 -9.35 +v -127.436 112.21 -9.35 +v -127.713 111.724 -9.35 +v -127.95 111.218 -9.35 +v -128.147 110.696 -9.35 +v -128.3 110.16 -9.35 +v -128.41 109.612 -9.35 +v -128.5 -109.75 -9.35 +v -123.936 -114.73 -9.35 +v -128.48 -110.186 -9.35 +v -128.424 -110.618 -9.35 +v -128.33 -111.044 -9.35 +v -128.198 -111.46 -9.35 +v -128.032 -111.863 -9.35 +v -127.83 -112.25 -9.35 +v -127.596 -112.618 -9.35 +v -127.33 -112.964 -9.35 +v -127.036 -113.286 -9.35 +v -126.714 -113.58 -9.35 +v -126.368 -113.846 -9.35 +v -126 -114.08 -9.35 +v -125.613 -114.282 -9.35 +v -125.21 -114.448 -9.35 +v -124.794 -114.58 -9.35 +v -124.368 -114.674 -9.35 +v 128.5 -109.75 -9.35 +v 123.936 -114.73 -9.35 +v 124.368 -114.674 -9.35 +v 124.794 -114.58 -9.35 +v 125.21 -114.448 -9.35 +v 125.613 -114.282 -9.35 +v 126 -114.08 -9.35 +v 126.368 -113.846 -9.35 +v 126.714 -113.58 -9.35 +v 127.036 -113.286 -9.35 +v 127.33 -112.964 -9.35 +v 127.596 -112.618 -9.35 +v 127.83 -112.25 -9.35 +v 128.032 -111.863 -9.35 +v 128.198 -111.46 -9.35 +v 128.33 -111.044 -9.35 +v 128.424 -110.618 -9.35 +v 128.48 -110.186 -9.35 +v 126.772 113.105 -9.35 +v 128.478 109.057 -9.35 +v 128.41 109.612 -9.35 +v 128.3 110.16 -9.35 +v 128.147 110.696 -9.35 +v 127.95 111.218 -9.35 +v 127.713 111.724 -9.35 +v 127.436 112.21 -9.35 +v 127.122 112.67 -9.35 +v -100 157.01 -13.35 +v 100 157.01 -13.35 +v -100 145.626 -13.35 +v 100 145.626 -13.35 +v -100.016 145.228 -13.35 +v 100.016 145.228 -13.35 +v -100.064 144.832 -13.35 +v 100.063 144.832 -13.35 +v -100.143 144.44 -13.35 +v 100.143 144.44 -13.35 +v -100.252 144.058 -13.35 +v 100.252 144.058 -13.35 +v -100.393 143.684 -13.35 +v 100.393 143.684 -13.35 +v -100.562 143.323 -13.35 +v 100.562 143.323 -13.35 +v -100.76 142.977 -13.35 +v 100.76 142.977 -13.35 +v -100.984 142.647 -13.35 +v 100.984 142.647 -13.35 +v -101.235 142.337 -13.35 +v 101.234 142.337 -13.35 +v -128.5 108.5 -13.35 +v 128.5 108.5 -13.35 +v -123.5 -114.75 -13.35 +v 123.5 -114.75 -13.35 +v 126.772 113.105 -13.35 +v 128.478 109.057 -13.35 +v 127.122 112.67 -13.35 +v 127.436 112.21 -13.35 +v 127.713 111.724 -13.35 +v 127.95 111.218 -13.35 +v 128.147 110.696 -13.35 +v 128.3 110.16 -13.35 +v 128.41 109.612 -13.35 +v 128.5 -109.75 -13.35 +v 123.936 -114.73 -13.35 +v 128.48 -110.186 -13.35 +v 128.424 -110.618 -13.35 +v 128.33 -111.044 -13.35 +v 128.198 -111.46 -13.35 +v 128.032 -111.863 -13.35 +v 127.83 -112.25 -13.35 +v 127.596 -112.618 -13.35 +v 127.33 -112.964 -13.35 +v 127.036 -113.286 -13.35 +v 126.714 -113.58 -13.35 +v 126.368 -113.846 -13.35 +v 126 -114.08 -13.35 +v 125.613 -114.282 -13.35 +v 125.21 -114.448 -13.35 +v 124.794 -114.58 -13.35 +v 124.368 -114.674 -13.35 +v -128.5 -109.75 -13.35 +v -123.936 -114.73 -13.35 +v -124.368 -114.674 -13.35 +v -124.794 -114.58 -13.35 +v -125.21 -114.448 -13.35 +v -125.613 -114.282 -13.35 +v -126 -114.08 -13.35 +v -126.368 -113.846 -13.35 +v -126.714 -113.58 -13.35 +v -127.036 -113.286 -13.35 +v -127.33 -112.964 -13.35 +v -127.596 -112.618 -13.35 +v -127.83 -112.25 -13.35 +v -128.032 -111.863 -13.35 +v -128.198 -111.46 -13.35 +v -128.33 -111.044 -13.35 +v -128.424 -110.618 -13.35 +v -128.48 -110.186 -13.35 +v -126.772 113.105 -13.35 +v -128.478 109.057 -13.35 +v -128.41 109.612 -13.35 +v -128.3 110.16 -13.35 +v -128.147 110.696 -13.35 +v -127.95 111.218 -13.35 +v -127.713 111.724 -13.35 +v -127.436 112.21 -13.35 +v -127.122 112.67 -13.35 +v -126.772 113.105 -13.35 +v -126.772 113.105 -9.35 +v -101.235 142.337 -13.35 +v -101.235 142.337 -9.35 +v -128.5 -109.75 -9.35 +v -128.5 108.5 -9.35 +v -128.5 -109.75 -13.35 +v -128.5 108.5 -13.35 +v -123.5 -114.75 -9.35 +v -123.5 -114.75 -13.35 +v 123.5 -114.75 -9.35 +v 123.5 -114.75 -13.35 +v -123.936 -114.73 -9.35 +v -123.936 -114.73 -13.35 +v -124.368 -114.674 -9.35 +v -124.368 -114.674 -13.35 +v -124.794 -114.58 -9.35 +v -124.794 -114.58 -13.35 +v -125.21 -114.448 -9.35 +v -125.21 -114.448 -13.35 +v -125.613 -114.282 -9.35 +v -125.613 -114.282 -13.35 +v -126 -114.08 -9.35 +v -126 -114.08 -13.35 +v -126.368 -113.846 -9.35 +v -126.368 -113.846 -13.35 +v -126.714 -113.58 -9.35 +v -126.714 -113.58 -13.35 +v -127.036 -113.286 -9.35 +v -127.036 -113.286 -13.35 +v -127.33 -112.964 -9.35 +v -127.33 -112.964 -13.35 +v -127.596 -112.618 -9.35 +v -127.596 -112.618 -13.35 +v -127.83 -112.25 -9.35 +v -127.83 -112.25 -13.35 +v -128.032 -111.863 -9.35 +v -128.032 -111.863 -13.35 +v -128.198 -111.46 -9.35 +v -128.198 -111.46 -13.35 +v -128.33 -111.044 -9.35 +v -128.33 -111.044 -13.35 +v -128.424 -110.618 -9.35 +v -128.424 -110.618 -13.35 +v -128.48 -110.186 -9.35 +v -128.48 -110.186 -13.35 +v -128.478 109.057 -9.35 +v -128.478 109.057 -13.35 +v -128.41 109.612 -9.35 +v -128.41 109.612 -13.35 +v -128.3 110.16 -9.35 +v -128.3 110.16 -13.35 +v -128.147 110.696 -9.35 +v -128.147 110.696 -13.35 +v -127.95 111.218 -9.35 +v -127.95 111.218 -13.35 +v -127.713 111.724 -9.35 +v -127.713 111.724 -13.35 +v -127.436 112.21 -9.35 +v -127.436 112.21 -13.35 +v -127.122 112.67 -9.35 +v -127.122 112.67 -13.35 +v -100.984 142.647 -9.35 +v -100.984 142.647 -13.35 +v -100.76 142.977 -9.35 +v -100.76 142.977 -13.35 +v -100.562 143.323 -9.35 +v -100.562 143.323 -13.35 +v -100.393 143.684 -9.35 +v -100.393 143.684 -13.35 +v -100.252 144.058 -9.35 +v -100.252 144.058 -13.35 +v -100.143 144.44 -9.35 +v -100.143 144.44 -13.35 +v -100.064 144.832 -9.35 +v -100.064 144.832 -13.35 +v -100.016 145.228 -9.35 +v -100.016 145.228 -13.35 +v 101.234 142.337 -13.35 +v 101.234 142.337 -9.35 +v 126.772 113.105 -13.35 +v 126.772 113.105 -9.35 +v 128.5 -109.75 -9.35 +v 128.5 -109.75 -13.35 +v 128.5 108.5 -9.35 +v 128.5 108.5 -13.35 +v 128.48 -110.186 -9.35 +v 128.48 -110.186 -13.35 +v 128.424 -110.618 -9.35 +v 128.424 -110.618 -13.35 +v 128.33 -111.044 -9.35 +v 128.33 -111.044 -13.35 +v 128.198 -111.46 -9.35 +v 128.198 -111.46 -13.35 +v 128.032 -111.863 -9.35 +v 128.032 -111.863 -13.35 +v 127.83 -112.25 -9.35 +v 127.83 -112.25 -13.35 +v 127.596 -112.618 -9.35 +v 127.596 -112.618 -13.35 +v 127.33 -112.964 -9.35 +v 127.33 -112.964 -13.35 +v 127.036 -113.286 -9.35 +v 127.036 -113.286 -13.35 +v 126.714 -113.58 -9.35 +v 126.714 -113.58 -13.35 +v 126.368 -113.846 -9.35 +v 126.368 -113.846 -13.35 +v 126 -114.08 -9.35 +v 126 -114.08 -13.35 +v 125.613 -114.282 -9.35 +v 125.613 -114.282 -13.35 +v 125.21 -114.448 -9.35 +v 125.21 -114.448 -13.35 +v 124.794 -114.58 -9.35 +v 124.794 -114.58 -13.35 +v 124.368 -114.674 -9.35 +v 124.368 -114.674 -13.35 +v 123.936 -114.73 -9.35 +v 123.936 -114.73 -13.35 +v 127.122 112.67 -9.35 +v 127.122 112.67 -13.35 +v 127.436 112.21 -9.35 +v 127.436 112.21 -13.35 +v 127.713 111.724 -9.35 +v 127.713 111.724 -13.35 +v 127.95 111.218 -9.35 +v 127.95 111.218 -13.35 +v 128.147 110.696 -9.35 +v 128.147 110.696 -13.35 +v 128.3 110.16 -9.35 +v 128.3 110.16 -13.35 +v 128.41 109.612 -9.35 +v 128.41 109.612 -13.35 +v 128.478 109.057 -9.35 +v 128.478 109.057 -13.35 +v 100.016 145.228 -9.35 +v 100.016 145.228 -13.35 +v 100.063 144.832 -9.35 +v 100.063 144.832 -13.35 +v 100.143 144.44 -9.35 +v 100.143 144.44 -13.35 +v 100.252 144.058 -9.35 +v 100.252 144.058 -13.35 +v 100.393 143.684 -9.35 +v 100.393 143.684 -13.35 +v 100.562 143.323 -9.35 +v 100.562 143.323 -13.35 +v 100.76 142.977 -9.35 +v 100.76 142.977 -13.35 +v 100.984 142.647 -9.35 +v 100.984 142.647 -13.35 +v -100 157.01 48.36 +v 100 157.01 48.36 +v -102.15 -115.422 -4.6 +v -102.117 -115.44 -4.6 +v -102.324 -115.725 -4.6 +v -102.292 -115.743 -4.6 +v -102.26 -115.762 -4.596 +v -102.085 -115.46 -4.596 +v -102.053 -115.477 -4.592 +v -102.228 -115.78 -4.592 +v -102.022 -115.495 -4.586 +v -102.197 -115.798 -4.586 +v -101.99 -115.513 -4.578 +v -102.166 -115.816 -4.578 +v -101.96 -115.53 -4.568 +v -102.135 -115.834 -4.568 +v -102.105 -115.85 -4.556 +v -101.93 -115.548 -4.556 +v -101.9 -115.565 -4.543 +v -102.075 -115.87 -4.543 +v -101.87 -115.582 -4.528 +v -102.046 -115.885 -4.528 +v -101.842 -115.6 -4.51 +v -102.017 -115.902 -4.51 +v -101.815 -115.615 -4.493 +v -101.99 -115.918 -4.493 +v -101.963 -115.933 -4.474 +v -101.788 -115.63 -4.474 +v -101.762 -115.645 -4.452 +v -101.937 -115.948 -4.452 +v -101.737 -115.66 -4.43 +v -101.912 -115.963 -4.43 +v -101.712 -115.674 -4.406 +v -101.887 -115.977 -4.406 +v -101.864 -115.99 -4.38 +v -101.69 -115.687 -4.38 +v -101.842 -116.003 -4.354 +v -101.667 -115.7 -4.354 +v -101.647 -115.712 -4.326 +v -101.822 -116.015 -4.326 +v -101.627 -115.723 -4.297 +v -101.802 -116.026 -4.297 +v -101.61 -115.734 -4.267 +v -101.784 -116.037 -4.267 +v -101.767 -116.047 -4.236 +v -101.592 -115.744 -4.236 +v -101.576 -115.753 -4.204 +v -101.75 -116.056 -4.204 +v -101.562 -115.76 -4.17 +v -101.737 -116.064 -4.17 +v -101.55 -115.768 -4.137 +v -101.724 -116.07 -4.137 +v -101.537 -115.775 -4.103 +v -101.712 -116.078 -4.103 +v -101.702 -116.084 -4.068 +v -101.527 -115.78 -4.068 +v -101.52 -115.786 -4.032 +v -101.694 -116.09 -4.032 +v -101.512 -115.79 -3.996 +v -101.687 -116.093 -3.996 +v -101.506 -115.793 -3.96 +v -101.68 -116.096 -3.96 +v -101.502 -115.795 -3.924 +v -101.677 -116.098 -3.924 +v -101.675 -116.1 -3.887 +v -101.5 -115.796 -3.887 +v -101.5 -115.797 -3.85 +v -101.674 -116.1 -3.85 +v -119.676 -115.725 -4.6 +v -119.708 -115.743 -4.6 +v -119.85 -115.422 -4.6 +v -119.883 -115.44 -4.6 +v -119.915 -115.46 -4.596 +v -119.74 -115.762 -4.596 +v -119.772 -115.78 -4.592 +v -119.947 -115.477 -4.592 +v -119.803 -115.798 -4.586 +v -119.978 -115.495 -4.586 +v -119.834 -115.816 -4.578 +v -120.01 -115.513 -4.578 +v -119.865 -115.834 -4.568 +v -120.04 -115.53 -4.568 +v -120.07 -115.548 -4.556 +v -119.895 -115.85 -4.556 +v -119.925 -115.87 -4.543 +v -120.1 -115.565 -4.543 +v -119.954 -115.885 -4.528 +v -120.13 -115.582 -4.528 +v -119.982 -115.902 -4.51 +v -120.157 -115.6 -4.51 +v -120.01 -115.918 -4.493 +v -120.185 -115.615 -4.493 +v -120.212 -115.63 -4.474 +v -120.037 -115.933 -4.474 +v -120.063 -115.948 -4.452 +v -120.238 -115.645 -4.452 +v -120.088 -115.963 -4.43 +v -120.263 -115.66 -4.43 +v -120.112 -115.977 -4.406 +v -120.287 -115.674 -4.406 +v -120.31 -115.687 -4.38 +v -120.136 -115.99 -4.38 +v -120.333 -115.7 -4.354 +v -120.158 -116.003 -4.354 +v -120.178 -116.015 -4.326 +v -120.353 -115.712 -4.326 +v -120.198 -116.026 -4.297 +v -120.373 -115.723 -4.297 +v -120.216 -116.037 -4.267 +v -120.39 -115.734 -4.267 +v -120.408 -115.744 -4.236 +v -120.233 -116.047 -4.236 +v -120.25 -116.056 -4.204 +v -120.424 -115.753 -4.204 +v -120.263 -116.064 -4.17 +v -120.438 -115.76 -4.17 +v -120.276 -116.07 -4.137 +v -120.45 -115.768 -4.137 +v -120.288 -116.078 -4.103 +v -120.463 -115.775 -4.103 +v -120.473 -115.78 -4.068 +v -120.298 -116.084 -4.068 +v -120.306 -116.09 -4.032 +v -120.48 -115.786 -4.032 +v -120.313 -116.093 -3.996 +v -120.488 -115.79 -3.996 +v -120.32 -116.096 -3.96 +v -120.494 -115.793 -3.96 +v -120.323 -116.098 -3.924 +v -120.498 -115.795 -3.924 +v -120.5 -115.796 -3.887 +v -120.325 -116.1 -3.887 +v -120.326 -116.1 -3.85 +v -120.5 -115.797 -3.85 +v -102.292 -115.743 -4.6 +v -102.26 -115.762 -4.596 +v -102.324 -115.725 -4.6 +v -102.228 -115.78 -4.592 +v -102.197 -115.798 -4.586 +v -102.166 -115.816 -4.578 +v -102.135 -115.834 -4.568 +v -102.105 -115.85 -4.556 +v -102.075 -115.87 -4.543 +v -102.046 -115.885 -4.528 +v -102.017 -115.902 -4.51 +v -101.99 -115.918 -4.493 +v -101.963 -115.933 -4.474 +v -101.937 -115.948 -4.452 +v -101.912 -115.963 -4.43 +v -101.887 -115.977 -4.406 +v -101.864 -115.99 -4.38 +v -101.842 -116.003 -4.354 +v -101.822 -116.015 -4.326 +v -101.802 -116.026 -4.297 +v -101.784 -116.037 -4.267 +v -101.767 -116.047 -4.236 +v -101.75 -116.056 -4.204 +v -101.737 -116.064 -4.17 +v -101.724 -116.07 -4.137 +v -101.712 -116.078 -4.103 +v -101.702 -116.084 -4.068 +v -101.694 -116.09 -4.032 +v -101.687 -116.093 -3.996 +v -101.68 -116.096 -3.96 +v -101.677 -116.098 -3.924 +v -101.675 -116.1 -3.887 +v -101.674 -116.1 -3.85 +v -103.325 -115.147 -4.6 +v -103.325 -115.147 -1.84 +v -101.674 -116.1 -1.84 +v -101.674 -116.1 0.167 +v -101.675 -116.1 0.204 +v -102.324 -115.725 0.917 +v -103.325 -115.147 0.917 +v -101.677 -116.098 0.24 +v -101.68 -116.096 0.277 +v -101.687 -116.093 0.314 +v -101.694 -116.09 0.35 +v -101.702 -116.084 0.385 +v -101.712 -116.078 0.42 +v -101.724 -116.07 0.454 +v -101.737 -116.064 0.488 +v -101.75 -116.056 0.52 +v -101.767 -116.047 0.553 +v -101.784 -116.037 0.584 +v -101.802 -116.026 0.614 +v -101.822 -116.015 0.643 +v -101.842 -116.003 0.67 +v -101.864 -115.99 0.698 +v -101.887 -115.977 0.723 +v -101.912 -115.963 0.747 +v -101.937 -115.948 0.77 +v -101.963 -115.933 0.79 +v -101.99 -115.918 0.81 +v -102.017 -115.902 0.83 +v -102.046 -115.885 0.845 +v -102.075 -115.87 0.86 +v -102.105 -115.85 0.873 +v -102.135 -115.834 0.885 +v -102.166 -115.816 0.895 +v -102.197 -115.798 0.903 +v -102.228 -115.78 0.91 +v -102.26 -115.762 0.914 +v -102.292 -115.743 0.916 +v -103.15 -114.844 -4.6 +v -103.325 -115.147 -4.6 +v -103.345 -115.136 -4.6 +v -118.5 -115.1 -4.6 +v -118.5 -114.75 -4.6 +v -103.5 -115.1 -4.6 +v -103.5 -114.75 -4.6 +v -103.477 -115.1 -4.6 +v -103.454 -114.752 -4.6 +v -103.454 -115.103 -4.6 +v -103.41 -114.756 -4.6 +v -103.432 -115.107 -4.6 +v -103.363 -114.763 -4.6 +v -103.41 -115.112 -4.6 +v -103.32 -114.774 -4.6 +v -103.387 -115.12 -4.6 +v -103.275 -114.787 -4.6 +v -103.366 -115.127 -4.6 +v -103.232 -114.803 -4.6 +v -103.19 -114.822 -4.6 +v -118.523 -115.1 -4.6 +v -118.546 -114.752 -4.6 +v -118.546 -115.103 -4.6 +v -118.59 -114.756 -4.6 +v -118.568 -115.107 -4.6 +v -118.637 -114.763 -4.6 +v -118.59 -115.112 -4.6 +v -118.68 -114.774 -4.6 +v -118.612 -115.12 -4.6 +v -118.725 -114.787 -4.6 +v -118.634 -115.127 -4.6 +v -118.768 -114.803 -4.6 +v -118.655 -115.136 -4.6 +v -118.81 -114.822 -4.6 +v -118.675 -115.147 -4.6 +v -118.85 -114.844 -4.6 +v -119.883 -115.44 -4.6 +v -119.915 -115.46 -4.596 +v -119.85 -115.422 -4.6 +v -119.947 -115.477 -4.592 +v -119.978 -115.495 -4.586 +v -120.01 -115.513 -4.578 +v -120.04 -115.53 -4.568 +v -120.07 -115.548 -4.556 +v -120.1 -115.565 -4.543 +v -120.13 -115.582 -4.528 +v -120.157 -115.6 -4.51 +v -120.185 -115.615 -4.493 +v -120.212 -115.63 -4.474 +v -120.238 -115.645 -4.452 +v -120.263 -115.66 -4.43 +v -120.287 -115.674 -4.406 +v -120.31 -115.687 -4.38 +v -120.333 -115.7 -4.354 +v -120.353 -115.712 -4.326 +v -120.373 -115.723 -4.297 +v -120.39 -115.734 -4.267 +v -120.408 -115.744 -4.236 +v -120.424 -115.753 -4.204 +v -120.438 -115.76 -4.17 +v -120.45 -115.768 -4.137 +v -120.463 -115.775 -4.103 +v -120.473 -115.78 -4.068 +v -120.48 -115.786 -4.032 +v -120.488 -115.79 -3.996 +v -120.494 -115.793 -3.96 +v -120.498 -115.795 -3.924 +v -120.5 -115.796 -3.887 +v -120.5 -115.797 -3.85 +v -118.85 -114.844 -4.6 +v -118.85 -114.844 -1.84 +v -120.5 -115.797 -1.84 +v -120.5 -115.797 0.167 +v -120.5 -115.796 0.204 +v -119.85 -115.422 0.917 +v -118.85 -114.844 0.917 +v -120.498 -115.795 0.24 +v -120.494 -115.793 0.277 +v -120.488 -115.79 0.314 +v -120.48 -115.786 0.35 +v -120.473 -115.78 0.385 +v -120.463 -115.775 0.42 +v -120.45 -115.768 0.454 +v -120.438 -115.76 0.488 +v -120.424 -115.753 0.52 +v -120.408 -115.744 0.553 +v -120.39 -115.734 0.584 +v -120.373 -115.723 0.614 +v -120.353 -115.712 0.643 +v -120.333 -115.7 0.67 +v -120.31 -115.687 0.698 +v -120.287 -115.674 0.723 +v -120.263 -115.66 0.747 +v -120.238 -115.645 0.77 +v -120.212 -115.63 0.79 +v -120.185 -115.615 0.81 +v -120.157 -115.6 0.83 +v -120.13 -115.582 0.845 +v -120.1 -115.565 0.86 +v -120.07 -115.548 0.873 +v -120.04 -115.53 0.885 +v -120.01 -115.513 0.895 +v -119.978 -115.495 0.903 +v -119.947 -115.477 0.91 +v -119.915 -115.46 0.914 +v -119.883 -115.44 0.916 +v -101.674 -116.1 -1.84 +v -101.5 -115.797 -1.84 +v -101.674 -116.1 0.167 +v -101.5 -115.797 0.167 +v -101.5 -115.796 -3.887 +v -102.15 -115.422 -4.6 +v -101.5 -115.797 -3.85 +v -103.15 -114.844 -4.6 +v -103.15 -114.844 -1.84 +v -101.502 -115.795 -3.924 +v -101.506 -115.793 -3.96 +v -101.512 -115.79 -3.996 +v -101.52 -115.786 -4.032 +v -101.527 -115.78 -4.068 +v -101.537 -115.775 -4.103 +v -101.55 -115.768 -4.137 +v -101.562 -115.76 -4.17 +v -101.576 -115.753 -4.204 +v -101.592 -115.744 -4.236 +v -101.61 -115.734 -4.267 +v -101.627 -115.723 -4.297 +v -101.647 -115.712 -4.326 +v -101.667 -115.7 -4.354 +v -101.69 -115.687 -4.38 +v -101.712 -115.674 -4.406 +v -101.737 -115.66 -4.43 +v -101.762 -115.645 -4.452 +v -101.788 -115.63 -4.474 +v -101.815 -115.615 -4.493 +v -101.842 -115.6 -4.51 +v -101.87 -115.582 -4.528 +v -101.9 -115.565 -4.543 +v -101.93 -115.548 -4.556 +v -101.96 -115.53 -4.568 +v -101.99 -115.513 -4.578 +v -102.022 -115.495 -4.586 +v -102.053 -115.477 -4.592 +v -102.085 -115.46 -4.596 +v -102.117 -115.44 -4.6 +v -103.15 -114.844 0.917 +v -101.5 -115.797 0.167 +v -101.5 -115.797 -1.84 +v -102.15 -115.422 0.917 +v -101.5 -115.796 0.204 +v -102.117 -115.44 0.916 +v -102.085 -115.46 0.914 +v -102.053 -115.477 0.91 +v -102.022 -115.495 0.903 +v -101.99 -115.513 0.895 +v -101.96 -115.53 0.885 +v -101.93 -115.548 0.873 +v -101.9 -115.565 0.86 +v -101.87 -115.582 0.845 +v -101.842 -115.6 0.83 +v -101.815 -115.615 0.81 +v -101.788 -115.63 0.79 +v -101.762 -115.645 0.77 +v -101.737 -115.66 0.747 +v -101.712 -115.674 0.723 +v -101.69 -115.687 0.698 +v -101.667 -115.7 0.67 +v -101.647 -115.712 0.643 +v -101.627 -115.723 0.614 +v -101.61 -115.734 0.584 +v -101.592 -115.744 0.553 +v -101.576 -115.753 0.52 +v -101.562 -115.76 0.488 +v -101.55 -115.768 0.454 +v -101.537 -115.775 0.42 +v -101.527 -115.78 0.385 +v -101.52 -115.786 0.35 +v -101.512 -115.79 0.314 +v -101.506 -115.793 0.277 +v -101.502 -115.795 0.24 +v -103.5 -114.75 -4.6 +v -103.5 -114.75 -1.84 +v -103.454 -114.752 -4.6 +v -103.454 -114.752 0.917 +v -103.41 -114.756 0.917 +v -103.5 -114.75 0.917 +v -103.41 -114.756 -4.6 +v -103.363 -114.763 0.917 +v -103.363 -114.763 -4.6 +v -103.32 -114.774 0.917 +v -103.32 -114.774 -4.6 +v -103.275 -114.787 0.917 +v -103.275 -114.787 -4.6 +v -103.232 -114.803 0.917 +v -103.232 -114.803 -4.6 +v -103.19 -114.822 0.917 +v -103.19 -114.822 -4.6 +v -118.5 -114.75 0.917 +v -118.5 -114.75 -1.84 +v -118.5 -114.75 -4.6 +v -118.546 -114.752 0.917 +v -118.546 -114.752 -4.6 +v -118.59 -114.756 -4.6 +v -118.59 -114.756 0.917 +v -118.637 -114.763 -4.6 +v -118.637 -114.763 0.917 +v -118.68 -114.774 -4.6 +v -118.68 -114.774 0.917 +v -118.725 -114.787 -4.6 +v -118.725 -114.787 0.917 +v -118.768 -114.803 -4.6 +v -118.768 -114.803 0.917 +v -118.81 -114.822 -4.6 +v -118.81 -114.822 0.917 +v -120.326 -116.1 -1.84 +v -120.5 -115.797 -1.84 +v -120.326 -116.1 0.167 +v -120.5 -115.797 0.167 +v -120.325 -116.1 -3.887 +v -119.676 -115.725 -4.6 +v -120.326 -116.1 -3.85 +v -118.675 -115.147 -4.6 +v -118.675 -115.147 -1.84 +v -120.323 -116.098 -3.924 +v -120.32 -116.096 -3.96 +v -120.313 -116.093 -3.996 +v -120.306 -116.09 -4.032 +v -120.298 -116.084 -4.068 +v -120.288 -116.078 -4.103 +v -120.276 -116.07 -4.137 +v -120.263 -116.064 -4.17 +v -120.25 -116.056 -4.204 +v -120.233 -116.047 -4.236 +v -120.216 -116.037 -4.267 +v -120.198 -116.026 -4.297 +v -120.178 -116.015 -4.326 +v -120.158 -116.003 -4.354 +v -120.136 -115.99 -4.38 +v -120.112 -115.977 -4.406 +v -120.088 -115.963 -4.43 +v -120.063 -115.948 -4.452 +v -120.037 -115.933 -4.474 +v -120.01 -115.918 -4.493 +v -119.982 -115.902 -4.51 +v -119.954 -115.885 -4.528 +v -119.925 -115.87 -4.543 +v -119.895 -115.85 -4.556 +v -119.865 -115.834 -4.568 +v -119.834 -115.816 -4.578 +v -119.803 -115.798 -4.586 +v -119.772 -115.78 -4.592 +v -119.74 -115.762 -4.596 +v -119.708 -115.743 -4.6 +v -118.675 -115.147 0.917 +v -120.326 -116.1 0.167 +v -120.326 -116.1 -1.84 +v -119.676 -115.725 0.917 +v -120.325 -116.1 0.204 +v -119.708 -115.743 0.916 +v -119.74 -115.762 0.914 +v -119.772 -115.78 0.91 +v -119.803 -115.798 0.903 +v -119.834 -115.816 0.895 +v -119.865 -115.834 0.885 +v -119.895 -115.85 0.873 +v -119.925 -115.87 0.86 +v -119.954 -115.885 0.845 +v -119.982 -115.902 0.83 +v -120.01 -115.918 0.81 +v -120.037 -115.933 0.79 +v -120.063 -115.948 0.77 +v -120.088 -115.963 0.747 +v -120.112 -115.977 0.723 +v -120.136 -115.99 0.698 +v -120.158 -116.003 0.67 +v -120.178 -116.015 0.643 +v -120.198 -116.026 0.614 +v -120.216 -116.037 0.584 +v -120.233 -116.047 0.553 +v -120.25 -116.056 0.52 +v -120.263 -116.064 0.488 +v -120.276 -116.07 0.454 +v -120.288 -116.078 0.42 +v -120.298 -116.084 0.385 +v -120.306 -116.09 0.35 +v -120.313 -116.093 0.314 +v -120.32 -116.096 0.277 +v -120.323 -116.098 0.24 +v -118.5 -115.1 0.917 +v -118.523 -115.1 0.917 +v -118.5 -115.1 -1.84 +v -118.523 -115.1 -4.6 +v -118.5 -115.1 -4.6 +v -118.546 -115.103 0.917 +v -118.546 -115.103 -4.6 +v -118.568 -115.107 0.917 +v -118.568 -115.107 -4.6 +v -118.59 -115.112 0.917 +v -118.59 -115.112 -4.6 +v -118.612 -115.12 0.917 +v -118.612 -115.12 -4.6 +v -118.634 -115.127 0.917 +v -118.634 -115.127 -4.6 +v -118.655 -115.136 0.917 +v -118.655 -115.136 -4.6 +v -103.5 -115.1 -4.6 +v -103.5 -115.1 -1.84 +v -103.5 -115.1 0.917 +v -103.477 -115.1 0.917 +v -103.477 -115.1 -4.6 +v -103.454 -115.103 -4.6 +v -103.454 -115.103 0.917 +v -103.432 -115.107 -4.6 +v -103.432 -115.107 0.917 +v -103.41 -115.112 -4.6 +v -103.41 -115.112 0.917 +v -103.387 -115.12 -4.6 +v -103.387 -115.12 0.917 +v -103.366 -115.127 -4.6 +v -103.366 -115.127 0.917 +v -103.345 -115.136 -4.6 +v -103.345 -115.136 0.917 +v -117.75 -106.91 1.21 +v -111 -106.91 1.21 +v -117.75 -106.75 0.9 +v -111 -106.75 0.9 +v -104.25 -106.91 1.21 +v -104.25 -106.75 0.9 +v -119.85 -115.422 0.917 +v -119.883 -115.44 0.916 +v -119.676 -115.725 0.917 +v -119.708 -115.743 0.916 +v -119.915 -115.46 0.914 +v -119.74 -115.762 0.914 +v -119.772 -115.78 0.91 +v -119.947 -115.477 0.91 +v -119.978 -115.495 0.903 +v -119.803 -115.798 0.903 +v -120.01 -115.513 0.895 +v -119.834 -115.816 0.895 +v -120.04 -115.53 0.885 +v -119.865 -115.834 0.885 +v -120.07 -115.548 0.873 +v -119.895 -115.85 0.873 +v -119.925 -115.87 0.86 +v -120.1 -115.565 0.86 +v -120.13 -115.582 0.845 +v -119.954 -115.885 0.845 +v -120.157 -115.6 0.83 +v -119.982 -115.902 0.83 +v -120.185 -115.615 0.81 +v -120.01 -115.918 0.81 +v -120.212 -115.63 0.79 +v -120.037 -115.933 0.79 +v -120.063 -115.948 0.77 +v -120.238 -115.645 0.77 +v -120.263 -115.66 0.747 +v -120.088 -115.963 0.747 +v -120.287 -115.674 0.723 +v -120.112 -115.977 0.723 +v -120.31 -115.687 0.698 +v -120.136 -115.99 0.698 +v -120.333 -115.7 0.67 +v -120.158 -116.003 0.67 +v -120.178 -116.015 0.643 +v -120.353 -115.712 0.643 +v -120.373 -115.723 0.614 +v -120.198 -116.026 0.614 +v -120.39 -115.734 0.584 +v -120.216 -116.037 0.584 +v -120.408 -115.744 0.553 +v -120.233 -116.047 0.553 +v -120.424 -115.753 0.52 +v -120.25 -116.056 0.52 +v -120.263 -116.064 0.488 +v -120.438 -115.76 0.488 +v -120.45 -115.768 0.454 +v -120.276 -116.07 0.454 +v -120.463 -115.775 0.42 +v -120.288 -116.078 0.42 +v -120.473 -115.78 0.385 +v -120.298 -116.084 0.385 +v -120.48 -115.786 0.35 +v -120.306 -116.09 0.35 +v -120.313 -116.093 0.314 +v -120.488 -115.79 0.314 +v -120.494 -115.793 0.277 +v -120.32 -116.096 0.277 +v -120.498 -115.795 0.24 +v -120.323 -116.098 0.24 +v -120.5 -115.796 0.204 +v -120.325 -116.1 0.204 +v -101.675 -116.1 0.204 +v -101.5 -115.796 0.204 +v -101.502 -115.795 0.24 +v -101.677 -116.098 0.24 +v -101.506 -115.793 0.277 +v -101.68 -116.096 0.277 +v -101.512 -115.79 0.314 +v -101.687 -116.093 0.314 +v -101.694 -116.09 0.35 +v -101.52 -115.786 0.35 +v -101.527 -115.78 0.385 +v -101.702 -116.084 0.385 +v -101.537 -115.775 0.42 +v -101.712 -116.078 0.42 +v -101.55 -115.768 0.454 +v -101.724 -116.07 0.454 +v -101.562 -115.76 0.488 +v -101.737 -116.064 0.488 +v -101.75 -116.056 0.52 +v -101.576 -115.753 0.52 +v -101.592 -115.744 0.553 +v -101.767 -116.047 0.553 +v -101.61 -115.734 0.584 +v -101.784 -116.037 0.584 +v -101.627 -115.723 0.614 +v -101.802 -116.026 0.614 +v -101.647 -115.712 0.643 +v -101.822 -116.015 0.643 +v -101.842 -116.003 0.67 +v -101.667 -115.7 0.67 +v -101.69 -115.687 0.698 +v -101.864 -115.99 0.698 +v -101.712 -115.674 0.723 +v -101.887 -115.977 0.723 +v -101.737 -115.66 0.747 +v -101.912 -115.963 0.747 +v -101.762 -115.645 0.77 +v -101.937 -115.948 0.77 +v -101.963 -115.933 0.79 +v -101.788 -115.63 0.79 +v -101.815 -115.615 0.81 +v -101.99 -115.918 0.81 +v -101.842 -115.6 0.83 +v -102.017 -115.902 0.83 +v -101.87 -115.582 0.845 +v -102.046 -115.885 0.845 +v -101.9 -115.565 0.86 +v -102.075 -115.87 0.86 +v -102.105 -115.85 0.873 +v -101.93 -115.548 0.873 +v -101.96 -115.53 0.885 +v -102.135 -115.834 0.885 +v -101.99 -115.513 0.895 +v -102.166 -115.816 0.895 +v -102.022 -115.495 0.903 +v -102.197 -115.798 0.903 +v -102.053 -115.477 0.91 +v -102.228 -115.78 0.91 +v -102.26 -115.762 0.914 +v -102.085 -115.46 0.914 +v -102.117 -115.44 0.916 +v -102.292 -115.743 0.916 +v -102.15 -115.422 0.917 +v -102.324 -115.725 0.917 +v -118.5 -107.415 0.554 +v -118.5 -107.577 0.865 +v -118.5 -107.383 0.57 +v -118.5 -107.544 0.88 +v -118.496 -107.512 0.898 +v -118.496 -107.35 0.588 +v -118.492 -107.48 0.915 +v -118.492 -107.318 0.605 +v -118.486 -107.447 0.932 +v -118.486 -107.286 0.62 +v -118.478 -107.415 0.95 +v -118.478 -107.254 0.638 +v -118.468 -107.222 0.654 +v -118.468 -107.384 0.965 +v -118.456 -107.353 0.98 +v -118.456 -107.19 0.67 +v -118.443 -107.322 0.997 +v -118.443 -107.16 0.686 +v -118.428 -107.292 1.012 +v -118.428 -107.13 0.702 +v -118.41 -107.263 1.028 +v -118.41 -107.102 0.717 +v -118.393 -107.073 0.732 +v -118.393 -107.235 1.042 +v -118.374 -107.207 1.057 +v -118.374 -107.046 0.746 +v -118.352 -107.18 1.07 +v -118.352 -107.02 0.76 +v -118.33 -107.155 1.084 +v -118.33 -106.993 0.774 +v -118.306 -107.13 1.097 +v -118.306 -106.97 0.786 +v -118.28 -106.945 0.8 +v -118.28 -107.106 1.11 +v -118.254 -106.922 0.81 +v -118.254 -107.084 1.12 +v -118.226 -107.063 1.132 +v -118.226 -106.9 0.82 +v -118.197 -107.042 1.142 +v -118.197 -106.88 0.832 +v -118.167 -107.024 1.152 +v -118.167 -106.862 0.842 +v -118.136 -107.006 1.16 +v -118.136 -106.845 0.85 +v -118.104 -106.83 0.86 +v -118.104 -106.99 1.17 +v -118.07 -106.975 1.177 +v -118.07 -106.814 0.867 +v -118.037 -106.962 1.184 +v -118.037 -106.8 0.874 +v -118.003 -106.95 1.19 +v -118.003 -106.79 0.88 +v -117.968 -106.94 1.196 +v -117.968 -106.78 0.885 +v -117.932 -106.77 0.89 +v -117.932 -106.93 1.2 +v -117.896 -106.924 1.204 +v -117.896 -106.763 0.893 +v -117.86 -106.92 1.207 +v -117.86 -106.757 0.896 +v -117.824 -106.915 1.21 +v -117.824 -106.753 0.898 +v -117.787 -106.912 1.21 +v -117.787 -106.75 0.9 +v -118.5 -114.182 1.582 +v -118.5 -114.222 1.594 +v -103.5 -114.182 1.582 +v -103.5 -114.222 1.594 +v -118.5 -114.262 1.603 +v -103.5 -114.262 1.603 +v -118.5 -114.303 1.61 +v -103.5 -114.303 1.61 +v -118.5 -114.344 1.615 +v -103.5 -114.344 1.615 +v -118.5 -114.385 1.617 +v -103.5 -114.385 1.617 +v -118.5 -114.426 1.617 +v -103.5 -114.426 1.617 +v -118.5 -114.467 1.614 +v -103.5 -114.467 1.614 +v -118.5 -114.508 1.61 +v -103.5 -114.508 1.61 +v -118.5 -114.55 1.6 +v -103.5 -114.55 1.6 +v -118.5 -114.59 1.59 +v -103.5 -114.59 1.59 +v -118.5 -114.628 1.58 +v -103.5 -114.628 1.58 +v -118.5 -114.667 1.564 +v -103.5 -114.667 1.564 +v -118.5 -114.705 1.547 +v -103.5 -114.705 1.547 +v -118.5 -114.74 1.528 +v -103.5 -114.74 1.528 +v -118.5 -114.777 1.507 +v -103.5 -114.777 1.507 +v -118.5 -114.81 1.484 +v -103.5 -114.81 1.484 +v -118.5 -114.844 1.46 +v -103.5 -114.844 1.46 +v -118.5 -114.875 1.432 +v -103.5 -114.875 1.432 +v -118.5 -114.904 1.403 +v -103.5 -114.904 1.403 +v -118.5 -114.932 1.372 +v -103.5 -114.932 1.372 +v -103.5 -114.958 1.34 +v -118.5 -114.958 1.34 +v -118.5 -114.982 1.306 +v -103.5 -114.982 1.306 +v -118.5 -115.004 1.272 +v -103.5 -115.004 1.272 +v -118.5 -115.024 1.235 +v -103.5 -115.024 1.235 +v -118.5 -115.04 1.198 +v -103.5 -115.04 1.198 +v -118.5 -115.057 1.16 +v -103.5 -115.057 1.16 +v -118.5 -115.07 1.12 +v -103.5 -115.07 1.12 +v -118.5 -115.08 1.08 +v -103.5 -115.08 1.08 +v -118.5 -115.09 1.04 +v -103.5 -115.09 1.04 +v -118.5 -115.095 1 +v -103.5 -115.095 1 +v -118.5 -115.1 0.958 +v -103.5 -115.1 0.958 +v -118.5 -109.42 0.024 +v -111 -109.42 0.024 +v -103.5 -109.42 0.024 +v -118.5 -109.15 0.046 +v -118.5 -109.166 0.04 +v -111 -109.15 0.046 +v -103.5 -109.166 0.04 +v -103.5 -109.15 0.046 +v -103.5 -109.182 0.032 +v -118.5 -109.182 0.032 +v -118.5 -109.198 0.026 +v -103.5 -109.198 0.026 +v -118.5 -109.215 0.02 +v -103.5 -109.215 0.02 +v -118.5 -109.232 0.016 +v -103.5 -109.232 0.016 +v -118.5 -109.25 0.013 +v -103.5 -109.25 0.013 +v -103.5 -109.266 0.01 +v -118.5 -109.266 0.01 +v -118.5 -109.283 0.008 +v -103.5 -109.283 0.008 +v -118.5 -109.3 0.007 +v -103.5 -109.3 0.007 +v -103.5 -109.318 0.007 +v -118.5 -109.318 0.007 +v -118.5 -109.336 0.008 +v -103.5 -109.336 0.008 +v -103.5 -109.353 0.01 +v -118.5 -109.353 0.01 +v -118.5 -109.37 0.012 +v -103.5 -109.37 0.012 +v -118.5 -109.387 0.015 +v -103.5 -109.387 0.015 +v -118.5 -109.404 0.02 +v -103.5 -109.404 0.02 +v -118.5 -107.577 0.865 +v -117.75 -106.91 1.21 +v -111 -106.91 1.21 +v -104.25 -106.91 1.21 +v -103.5 -107.577 0.865 +v -103.5 -107.544 0.88 +v -103.504 -107.512 0.898 +v -103.508 -107.48 0.915 +v -103.514 -107.447 0.932 +v -103.522 -107.415 0.95 +v -103.532 -107.384 0.965 +v -103.544 -107.353 0.98 +v -103.557 -107.322 0.997 +v -103.572 -107.292 1.012 +v -103.59 -107.263 1.028 +v -103.607 -107.235 1.042 +v -103.626 -107.207 1.057 +v -103.648 -107.18 1.07 +v -103.67 -107.155 1.084 +v -103.694 -107.13 1.097 +v -103.72 -107.106 1.11 +v -103.746 -107.084 1.12 +v -103.774 -107.063 1.132 +v -103.803 -107.042 1.142 +v -103.833 -107.024 1.152 +v -103.864 -107.006 1.16 +v -103.896 -106.99 1.17 +v -103.93 -106.975 1.177 +v -103.963 -106.962 1.184 +v -103.997 -106.95 1.19 +v -104.032 -106.94 1.196 +v -104.068 -106.93 1.2 +v -104.104 -106.924 1.204 +v -104.14 -106.92 1.207 +v -104.176 -106.915 1.21 +v -104.213 -106.912 1.21 +v -117.787 -106.912 1.21 +v -117.824 -106.915 1.21 +v -117.86 -106.92 1.207 +v -117.896 -106.924 1.204 +v -117.932 -106.93 1.2 +v -117.968 -106.94 1.196 +v -118.003 -106.95 1.19 +v -118.037 -106.962 1.184 +v -118.07 -106.975 1.177 +v -118.104 -106.99 1.17 +v -118.136 -107.006 1.16 +v -118.167 -107.024 1.152 +v -118.197 -107.042 1.142 +v -118.226 -107.063 1.132 +v -118.254 -107.084 1.12 +v -118.28 -107.106 1.11 +v -118.306 -107.13 1.097 +v -118.33 -107.155 1.084 +v -118.352 -107.18 1.07 +v -118.374 -107.207 1.057 +v -118.393 -107.235 1.042 +v -118.41 -107.263 1.028 +v -118.428 -107.292 1.012 +v -118.443 -107.322 0.997 +v -118.456 -107.353 0.98 +v -118.468 -107.384 0.965 +v -118.478 -107.415 0.95 +v -118.486 -107.447 0.932 +v -118.492 -107.48 0.915 +v -118.496 -107.512 0.898 +v -118.5 -107.544 0.88 +v -104.213 -106.75 0.9 +v -104.213 -106.912 1.21 +v -104.176 -106.915 1.21 +v -104.176 -106.753 0.898 +v -104.14 -106.92 1.207 +v -104.14 -106.757 0.896 +v -104.104 -106.924 1.204 +v -104.104 -106.763 0.893 +v -104.068 -106.77 0.89 +v -104.068 -106.93 1.2 +v -104.032 -106.94 1.196 +v -104.032 -106.78 0.885 +v -103.997 -106.95 1.19 +v -103.997 -106.79 0.88 +v -103.963 -106.962 1.184 +v -103.963 -106.8 0.874 +v -103.93 -106.975 1.177 +v -103.93 -106.814 0.867 +v -103.896 -106.83 0.86 +v -103.896 -106.99 1.17 +v -103.864 -107.006 1.16 +v -103.864 -106.845 0.85 +v -103.833 -107.024 1.152 +v -103.833 -106.862 0.842 +v -103.803 -107.042 1.142 +v -103.803 -106.88 0.832 +v -103.774 -107.063 1.132 +v -103.774 -106.9 0.82 +v -103.746 -106.922 0.81 +v -103.746 -107.084 1.12 +v -103.72 -107.106 1.11 +v -103.72 -106.945 0.8 +v -103.694 -107.13 1.097 +v -103.694 -106.97 0.786 +v -103.67 -107.155 1.084 +v -103.67 -106.993 0.774 +v -103.648 -107.18 1.07 +v -103.648 -107.02 0.76 +v -103.626 -107.046 0.746 +v -103.626 -107.207 1.057 +v -103.607 -107.235 1.042 +v -103.607 -107.073 0.732 +v -103.59 -107.263 1.028 +v -103.59 -107.102 0.717 +v -103.572 -107.292 1.012 +v -103.572 -107.13 0.702 +v -103.557 -107.322 0.997 +v -103.557 -107.16 0.686 +v -103.544 -107.19 0.67 +v -103.544 -107.353 0.98 +v -103.532 -107.384 0.965 +v -103.532 -107.222 0.654 +v -103.522 -107.415 0.95 +v -103.522 -107.254 0.638 +v -103.514 -107.447 0.932 +v -103.514 -107.286 0.62 +v -103.508 -107.48 0.915 +v -103.508 -107.318 0.605 +v -103.504 -107.35 0.588 +v -103.504 -107.512 0.898 +v -103.5 -107.544 0.88 +v -103.5 -107.383 0.57 +v -103.5 -107.577 0.865 +v -103.5 -107.415 0.554 +v -103.5 -107.383 0.57 +v -103.5 -107.415 0.554 +v -104.25 -106.75 0.9 +v -103.5 -108.99 -0.264 +v -111 -106.75 0.9 +v -118.5 -108.99 -0.264 +v -117.75 -106.75 0.9 +v -118.5 -107.415 0.554 +v -118.5 -107.383 0.57 +v -104.213 -106.75 0.9 +v -104.176 -106.753 0.898 +v -104.14 -106.757 0.896 +v -104.104 -106.763 0.893 +v -104.068 -106.77 0.89 +v -104.032 -106.78 0.885 +v -103.997 -106.79 0.88 +v -103.963 -106.8 0.874 +v -103.93 -106.814 0.867 +v -103.896 -106.83 0.86 +v -103.864 -106.845 0.85 +v -103.833 -106.862 0.842 +v -103.803 -106.88 0.832 +v -103.774 -106.9 0.82 +v -103.746 -106.922 0.81 +v -103.72 -106.945 0.8 +v -103.694 -106.97 0.786 +v -103.67 -106.993 0.774 +v -103.648 -107.02 0.76 +v -103.626 -107.046 0.746 +v -103.607 -107.073 0.732 +v -103.59 -107.102 0.717 +v -103.572 -107.13 0.702 +v -103.557 -107.16 0.686 +v -103.544 -107.19 0.67 +v -103.532 -107.222 0.654 +v -103.522 -107.254 0.638 +v -103.514 -107.286 0.62 +v -103.508 -107.318 0.605 +v -103.504 -107.35 0.588 +v -118.496 -107.35 0.588 +v -118.492 -107.318 0.605 +v -118.486 -107.286 0.62 +v -118.478 -107.254 0.638 +v -118.468 -107.222 0.654 +v -118.456 -107.19 0.67 +v -118.443 -107.16 0.686 +v -118.428 -107.13 0.702 +v -118.41 -107.102 0.717 +v -118.393 -107.073 0.732 +v -118.374 -107.046 0.746 +v -118.352 -107.02 0.76 +v -118.33 -106.993 0.774 +v -118.306 -106.97 0.786 +v -118.28 -106.945 0.8 +v -118.254 -106.922 0.81 +v -118.226 -106.9 0.82 +v -118.197 -106.88 0.832 +v -118.167 -106.862 0.842 +v -118.136 -106.845 0.85 +v -118.104 -106.83 0.86 +v -118.07 -106.814 0.867 +v -118.037 -106.8 0.874 +v -118.003 -106.79 0.88 +v -117.968 -106.78 0.885 +v -117.932 -106.77 0.89 +v -117.896 -106.763 0.893 +v -117.86 -106.757 0.896 +v -117.824 -106.753 0.898 +v -117.787 -106.75 0.9 +v -103.5 -109.02 -0.28 +v -118.5 -109.02 -0.28 +v -118.5 -109.052 -0.293 +v -103.5 -109.052 -0.293 +v -103.5 -109.085 -0.305 +v -118.5 -109.085 -0.305 +v -103.5 -109.118 -0.316 +v -118.5 -109.118 -0.316 +v -103.5 -109.152 -0.325 +v -118.5 -109.152 -0.325 +v -103.5 -109.186 -0.332 +v -118.5 -109.186 -0.332 +v -118.5 -109.22 -0.337 +v -103.5 -109.22 -0.337 +v -103.5 -109.255 -0.34 +v -118.5 -109.255 -0.34 +v -103.5 -109.29 -0.343 +v -118.5 -109.29 -0.343 +v -118.5 -109.324 -0.343 +v -103.5 -109.324 -0.343 +v -103.5 -109.36 -0.342 +v -118.5 -109.36 -0.342 +v -118.5 -109.394 -0.338 +v -103.5 -109.394 -0.338 +v -103.5 -109.428 -0.333 +v -118.5 -109.428 -0.333 +v -103.5 -109.462 -0.327 +v -118.5 -109.462 -0.327 +v -103.5 -109.496 -0.318 +v -118.5 -109.496 -0.318 +v -103.5 -109.53 -0.308 +v -118.5 -109.53 -0.308 +v -118.675 -115.147 0.917 +v -118.85 -114.844 0.917 +v -118.655 -115.136 0.917 +v -118.81 -114.822 0.917 +v -118.634 -115.127 0.917 +v -118.768 -114.803 0.917 +v -118.612 -115.12 0.917 +v -118.725 -114.787 0.917 +v -118.59 -115.112 0.917 +v -118.68 -114.774 0.917 +v -118.568 -115.107 0.917 +v -118.637 -114.763 0.917 +v -118.546 -115.103 0.917 +v -118.59 -114.756 0.917 +v -118.523 -115.1 0.917 +v -118.546 -114.752 0.917 +v -118.5 -115.1 0.917 +v -118.5 -114.75 0.917 +v -103.5 -114.75 0.917 +v -103.5 -115.1 0.917 +v -103.454 -114.752 0.917 +v -103.477 -115.1 0.917 +v -103.454 -115.103 0.917 +v -103.41 -114.756 0.917 +v -103.432 -115.107 0.917 +v -103.363 -114.763 0.917 +v -103.41 -115.112 0.917 +v -103.32 -114.774 0.917 +v -103.387 -115.12 0.917 +v -103.275 -114.787 0.917 +v -103.366 -115.127 0.917 +v -103.232 -114.803 0.917 +v -103.345 -115.136 0.917 +v -103.19 -114.822 0.917 +v -103.15 -114.844 0.917 +v -103.325 -115.147 0.917 +v -103.5 -114.29 1.25 +v -118.5 -114.29 1.25 +v -118.5 -114.393 1.267 +v -118.5 -114.385 1.617 +v -118.5 -114.372 1.266 +v -118.5 -114.344 1.615 +v -118.5 -114.35 1.264 +v -118.5 -114.303 1.61 +v -118.5 -114.33 1.26 +v -118.5 -114.262 1.603 +v -118.5 -114.31 1.256 +v -118.5 -114.222 1.594 +v -118.5 -114.29 1.25 +v -118.5 -114.182 1.582 +v -118.5 -109.53 -0.308 +v -118.5 -109.42 0.024 +v -118.5 -109.496 -0.318 +v -118.5 -109.404 0.02 +v -118.5 -109.462 -0.327 +v -118.5 -109.387 0.015 +v -118.5 -109.428 -0.333 +v -118.5 -109.37 0.012 +v -118.5 -109.394 -0.338 +v -118.5 -109.353 0.01 +v -118.5 -109.36 -0.342 +v -118.5 -109.336 0.008 +v -118.5 -109.324 -0.343 +v -118.5 -109.318 0.007 +v -118.5 -109.29 -0.343 +v -118.5 -109.3 0.007 +v -118.5 -109.283 0.008 +v -118.5 -114.413 1.267 +v -118.5 -114.426 1.617 +v -118.5 -114.434 1.266 +v -118.5 -114.467 1.614 +v -118.5 -114.454 1.263 +v -118.5 -114.508 1.61 +v -118.5 -114.474 1.26 +v -118.5 -114.55 1.6 +v -118.5 -114.495 1.254 +v -118.5 -114.59 1.59 +v -118.5 -114.514 1.248 +v -118.5 -114.628 1.58 +v -118.5 -114.534 1.24 +v -118.5 -114.667 1.564 +v -118.5 -114.552 1.232 +v -118.5 -114.705 1.547 +v -118.5 -114.57 1.223 +v -118.5 -114.74 1.528 +v -118.5 -114.588 1.212 +v -118.5 -114.777 1.507 +v -118.5 -114.605 1.2 +v -118.5 -114.81 1.484 +v -118.5 -114.622 1.188 +v -118.5 -114.844 1.46 +v -118.5 -114.637 1.174 +v -118.5 -114.875 1.432 +v -118.5 -114.652 1.16 +v -118.5 -114.904 1.403 +v -118.5 -114.666 1.145 +v -118.5 -114.932 1.372 +v -118.5 -114.68 1.13 +v -118.5 -114.958 1.34 +v -118.5 -114.69 1.112 +v -118.5 -114.982 1.306 +v -118.5 -114.702 1.094 +v -118.5 -115.004 1.272 +v -118.5 -114.712 1.076 +v -118.5 -115.024 1.235 +v -118.5 -114.72 1.058 +v -118.5 -115.04 1.198 +v -118.5 -114.728 1.038 +v -118.5 -115.057 1.16 +v -118.5 -114.735 1.02 +v -118.5 -115.07 1.12 +v -118.5 -114.74 1 +v -118.5 -115.08 1.08 +v -118.5 -114.745 0.98 +v -118.5 -115.09 1.04 +v -118.5 -114.748 0.958 +v -118.5 -115.095 1 +v -118.5 -114.75 0.938 +v -118.5 -115.1 0.958 +v -118.5 -114.75 0.917 +v -118.5 -115.1 0.917 +v -118.5 -109.255 -0.34 +v -118.5 -109.266 0.01 +v -118.5 -109.22 -0.337 +v -118.5 -109.25 0.013 +v -118.5 -109.186 -0.332 +v -118.5 -109.232 0.016 +v -118.5 -109.152 -0.325 +v -118.5 -109.215 0.02 +v -118.5 -109.118 -0.316 +v -118.5 -109.198 0.026 +v -118.5 -109.085 -0.305 +v -118.5 -109.182 0.032 +v -118.5 -109.052 -0.293 +v -118.5 -109.166 0.04 +v -118.5 -109.02 -0.28 +v -118.5 -109.15 0.046 +v -118.5 -108.99 -0.264 +v -103.5 -115.1 0.917 +v -103.5 -114.75 0.917 +v -103.5 -115.1 0.958 +v -103.5 -114.75 0.938 +v -103.5 -114.748 0.958 +v -103.5 -115.095 1 +v -103.5 -114.745 0.98 +v -103.5 -115.09 1.04 +v -103.5 -114.74 1 +v -103.5 -115.08 1.08 +v -103.5 -114.735 1.02 +v -103.5 -115.07 1.12 +v -103.5 -114.728 1.038 +v -103.5 -115.057 1.16 +v -103.5 -114.72 1.058 +v -103.5 -115.04 1.198 +v -103.5 -114.712 1.076 +v -103.5 -115.024 1.235 +v -103.5 -114.702 1.094 +v -103.5 -115.004 1.272 +v -103.5 -114.69 1.112 +v -103.5 -114.982 1.306 +v -103.5 -114.68 1.13 +v -103.5 -114.958 1.34 +v -103.5 -114.666 1.145 +v -103.5 -114.932 1.372 +v -103.5 -114.652 1.16 +v -103.5 -114.904 1.403 +v -103.5 -114.637 1.174 +v -103.5 -114.875 1.432 +v -103.5 -114.622 1.188 +v -103.5 -114.844 1.46 +v -103.5 -114.605 1.2 +v -103.5 -114.81 1.484 +v -103.5 -114.588 1.212 +v -103.5 -114.777 1.507 +v -103.5 -114.57 1.223 +v -103.5 -114.74 1.528 +v -103.5 -114.552 1.232 +v -103.5 -114.705 1.547 +v -103.5 -114.534 1.24 +v -103.5 -114.667 1.564 +v -103.5 -114.514 1.248 +v -103.5 -114.628 1.58 +v -103.5 -114.495 1.254 +v -103.5 -114.59 1.59 +v -103.5 -114.474 1.26 +v -103.5 -114.55 1.6 +v -103.5 -114.454 1.263 +v -103.5 -114.508 1.61 +v -103.5 -114.434 1.266 +v -103.5 -114.467 1.614 +v -103.5 -114.413 1.267 +v -103.5 -114.393 1.267 +v -103.5 -114.344 1.615 +v -103.5 -114.372 1.266 +v -103.5 -114.303 1.61 +v -103.5 -114.35 1.264 +v -103.5 -114.262 1.603 +v -103.5 -114.33 1.26 +v -103.5 -114.222 1.594 +v -103.5 -114.31 1.256 +v -103.5 -114.182 1.582 +v -103.5 -114.29 1.25 +v -103.5 -109.42 0.024 +v -103.5 -109.53 -0.308 +v -103.5 -109.496 -0.318 +v -103.5 -109.404 0.02 +v -103.5 -109.462 -0.327 +v -103.5 -109.387 0.015 +v -103.5 -109.428 -0.333 +v -103.5 -109.37 0.012 +v -103.5 -109.394 -0.338 +v -103.5 -109.353 0.01 +v -103.5 -109.36 -0.342 +v -103.5 -109.336 0.008 +v -103.5 -109.324 -0.343 +v -103.5 -109.318 0.007 +v -103.5 -109.29 -0.343 +v -103.5 -109.3 0.007 +v -103.5 -109.255 -0.34 +v -103.5 -109.283 0.008 +v -103.5 -109.22 -0.337 +v -103.5 -109.266 0.01 +v -103.5 -109.186 -0.332 +v -103.5 -109.25 0.013 +v -103.5 -109.152 -0.325 +v -103.5 -109.232 0.016 +v -103.5 -109.118 -0.316 +v -103.5 -109.215 0.02 +v -103.5 -109.085 -0.305 +v -103.5 -109.198 0.026 +v -103.5 -109.052 -0.293 +v -103.5 -109.182 0.032 +v -103.5 -109.02 -0.28 +v -103.5 -109.166 0.04 +v -103.5 -108.99 -0.264 +v -103.5 -109.15 0.046 +v -103.5 -114.385 1.617 +v -103.5 -114.426 1.617 +v -103.5 -114.31 1.256 +v -118.5 -114.31 1.256 +v -103.5 -114.33 1.26 +v -118.5 -114.33 1.26 +v -103.5 -114.35 1.264 +v -118.5 -114.35 1.264 +v -103.5 -114.372 1.266 +v -118.5 -114.372 1.266 +v -103.5 -114.393 1.267 +v -118.5 -114.393 1.267 +v -103.5 -114.413 1.267 +v -118.5 -114.413 1.267 +v -103.5 -114.434 1.266 +v -118.5 -114.434 1.266 +v -103.5 -114.454 1.263 +v -118.5 -114.454 1.263 +v -103.5 -114.474 1.26 +v -118.5 -114.474 1.26 +v -103.5 -114.495 1.254 +v -118.5 -114.495 1.254 +v -103.5 -114.514 1.248 +v -118.5 -114.514 1.248 +v -103.5 -114.534 1.24 +v -118.5 -114.534 1.24 +v -103.5 -114.552 1.232 +v -118.5 -114.552 1.232 +v -103.5 -114.57 1.223 +v -118.5 -114.57 1.223 +v -103.5 -114.588 1.212 +v -118.5 -114.588 1.212 +v -103.5 -114.605 1.2 +v -118.5 -114.605 1.2 +v -103.5 -114.622 1.188 +v -118.5 -114.622 1.188 +v -103.5 -114.637 1.174 +v -118.5 -114.637 1.174 +v -103.5 -114.652 1.16 +v -118.5 -114.652 1.16 +v -103.5 -114.666 1.145 +v -118.5 -114.666 1.145 +v -118.5 -114.68 1.13 +v -103.5 -114.68 1.13 +v -103.5 -114.69 1.112 +v -118.5 -114.69 1.112 +v -103.5 -114.702 1.094 +v -118.5 -114.702 1.094 +v -103.5 -114.712 1.076 +v -118.5 -114.712 1.076 +v -103.5 -114.72 1.058 +v -118.5 -114.72 1.058 +v -103.5 -114.728 1.038 +v -118.5 -114.728 1.038 +v -103.5 -114.735 1.02 +v -118.5 -114.735 1.02 +v -103.5 -114.74 1 +v -118.5 -114.74 1 +v -103.5 -114.745 0.98 +v -118.5 -114.745 0.98 +v -103.5 -114.748 0.958 +v -118.5 -114.748 0.958 +v -103.5 -114.75 0.938 +v -118.5 -114.75 0.938 +v 119.676 -115.725 -4.6 +v 119.85 -115.422 -4.6 +v 119.708 -115.743 -4.6 +v 119.883 -115.44 -4.6 +v 119.915 -115.46 -4.596 +v 119.74 -115.762 -4.596 +v 119.947 -115.477 -4.592 +v 119.772 -115.78 -4.592 +v 119.978 -115.495 -4.586 +v 119.803 -115.798 -4.586 +v 120.01 -115.513 -4.578 +v 119.834 -115.816 -4.578 +v 119.865 -115.834 -4.568 +v 120.04 -115.53 -4.568 +v 120.07 -115.548 -4.556 +v 119.895 -115.85 -4.556 +v 120.1 -115.565 -4.543 +v 119.925 -115.868 -4.543 +v 120.13 -115.582 -4.528 +v 119.954 -115.885 -4.528 +v 120.158 -115.6 -4.51 +v 119.983 -115.902 -4.51 +v 120.01 -115.918 -4.493 +v 120.185 -115.615 -4.493 +v 120.212 -115.63 -4.474 +v 120.037 -115.933 -4.474 +v 120.238 -115.645 -4.452 +v 120.063 -115.948 -4.452 +v 120.263 -115.66 -4.43 +v 120.088 -115.963 -4.43 +v 120.288 -115.674 -4.406 +v 120.113 -115.977 -4.406 +v 120.136 -115.99 -4.38 +v 120.31 -115.687 -4.38 +v 120.158 -116.003 -4.354 +v 120.333 -115.7 -4.354 +v 120.353 -115.712 -4.326 +v 120.178 -116.015 -4.326 +v 120.373 -115.723 -4.297 +v 120.198 -116.026 -4.297 +v 120.39 -115.734 -4.267 +v 120.216 -116.037 -4.267 +v 120.408 -115.744 -4.236 +v 120.233 -116.047 -4.236 +v 120.25 -116.056 -4.204 +v 120.424 -115.753 -4.204 +v 120.438 -115.76 -4.17 +v 120.263 -116.064 -4.17 +v 120.45 -115.768 -4.137 +v 120.276 -116.07 -4.137 +v 120.463 -115.775 -4.103 +v 120.288 -116.078 -4.103 +v 120.473 -115.78 -4.068 +v 120.298 -116.084 -4.068 +v 120.306 -116.09 -4.032 +v 120.48 -115.786 -4.032 +v 120.488 -115.79 -3.996 +v 120.313 -116.093 -3.996 +v 120.494 -115.793 -3.96 +v 120.32 -116.096 -3.96 +v 120.498 -115.795 -3.924 +v 120.323 -116.098 -3.924 +v 120.5 -115.796 -3.887 +v 120.325 -116.1 -3.887 +v 120.326 -116.1 -3.85 +v 120.5 -115.797 -3.85 +v 102.15 -115.422 -4.6 +v 102.324 -115.725 -4.6 +v 102.117 -115.44 -4.6 +v 102.292 -115.743 -4.6 +v 102.26 -115.762 -4.596 +v 102.085 -115.46 -4.596 +v 102.228 -115.78 -4.592 +v 102.053 -115.477 -4.592 +v 102.197 -115.798 -4.586 +v 102.022 -115.495 -4.586 +v 102.166 -115.816 -4.578 +v 101.99 -115.513 -4.578 +v 101.96 -115.53 -4.568 +v 102.135 -115.834 -4.568 +v 102.105 -115.85 -4.556 +v 101.93 -115.548 -4.556 +v 102.075 -115.868 -4.543 +v 101.9 -115.565 -4.543 +v 102.046 -115.885 -4.528 +v 101.87 -115.582 -4.528 +v 102.018 -115.902 -4.51 +v 101.843 -115.6 -4.51 +v 101.815 -115.615 -4.493 +v 101.99 -115.918 -4.493 +v 101.963 -115.933 -4.474 +v 101.788 -115.63 -4.474 +v 101.937 -115.948 -4.452 +v 101.762 -115.645 -4.452 +v 101.912 -115.963 -4.43 +v 101.737 -115.66 -4.43 +v 101.888 -115.977 -4.406 +v 101.713 -115.674 -4.406 +v 101.69 -115.687 -4.38 +v 101.864 -115.99 -4.38 +v 101.667 -115.7 -4.354 +v 101.842 -116.003 -4.354 +v 101.822 -116.015 -4.326 +v 101.647 -115.712 -4.326 +v 101.802 -116.026 -4.297 +v 101.627 -115.723 -4.297 +v 101.784 -116.037 -4.267 +v 101.61 -115.734 -4.267 +v 101.767 -116.047 -4.236 +v 101.592 -115.744 -4.236 +v 101.576 -115.753 -4.204 +v 101.75 -116.056 -4.204 +v 101.737 -116.064 -4.17 +v 101.562 -115.76 -4.17 +v 101.724 -116.07 -4.137 +v 101.55 -115.768 -4.137 +v 101.712 -116.078 -4.103 +v 101.537 -115.775 -4.103 +v 101.702 -116.084 -4.068 +v 101.527 -115.78 -4.068 +v 101.52 -115.786 -4.032 +v 101.694 -116.09 -4.032 +v 101.687 -116.093 -3.996 +v 101.512 -115.79 -3.996 +v 101.68 -116.096 -3.96 +v 101.506 -115.793 -3.96 +v 101.677 -116.098 -3.924 +v 101.502 -115.795 -3.924 +v 101.675 -116.1 -3.887 +v 101.5 -115.796 -3.887 +v 101.5 -115.797 -3.85 +v 101.674 -116.1 -3.85 +v 119.708 -115.743 -4.6 +v 119.74 -115.762 -4.596 +v 119.676 -115.725 -4.6 +v 119.772 -115.78 -4.592 +v 119.803 -115.798 -4.586 +v 119.834 -115.816 -4.578 +v 119.865 -115.834 -4.568 +v 119.895 -115.85 -4.556 +v 119.925 -115.868 -4.543 +v 119.954 -115.885 -4.528 +v 119.983 -115.902 -4.51 +v 120.01 -115.918 -4.493 +v 120.037 -115.933 -4.474 +v 120.063 -115.948 -4.452 +v 120.088 -115.963 -4.43 +v 120.113 -115.977 -4.406 +v 120.136 -115.99 -4.38 +v 120.158 -116.003 -4.354 +v 120.178 -116.015 -4.326 +v 120.198 -116.026 -4.297 +v 120.216 -116.037 -4.267 +v 120.233 -116.047 -4.236 +v 120.25 -116.056 -4.204 +v 120.263 -116.064 -4.17 +v 120.276 -116.07 -4.137 +v 120.288 -116.078 -4.103 +v 120.298 -116.084 -4.068 +v 120.306 -116.09 -4.032 +v 120.313 -116.093 -3.996 +v 120.32 -116.096 -3.96 +v 120.323 -116.098 -3.924 +v 120.325 -116.1 -3.887 +v 120.326 -116.1 -3.85 +v 118.675 -115.147 -4.6 +v 118.675 -115.147 -1.84 +v 120.326 -116.1 -1.84 +v 120.326 -116.1 0.167 +v 120.325 -116.1 0.204 +v 119.676 -115.725 0.917 +v 118.675 -115.147 0.917 +v 120.323 -116.098 0.24 +v 120.32 -116.096 0.277 +v 120.313 -116.093 0.314 +v 120.306 -116.09 0.35 +v 120.298 -116.084 0.385 +v 120.288 -116.078 0.42 +v 120.276 -116.07 0.454 +v 120.263 -116.064 0.488 +v 120.25 -116.056 0.52 +v 120.233 -116.047 0.553 +v 120.216 -116.037 0.584 +v 120.198 -116.026 0.614 +v 120.178 -116.015 0.643 +v 120.158 -116.003 0.67 +v 120.136 -115.99 0.698 +v 120.113 -115.977 0.723 +v 120.088 -115.963 0.747 +v 120.063 -115.948 0.77 +v 120.037 -115.933 0.79 +v 120.01 -115.918 0.81 +v 119.983 -115.902 0.83 +v 119.954 -115.885 0.845 +v 119.925 -115.868 0.86 +v 119.895 -115.85 0.873 +v 119.865 -115.834 0.885 +v 119.834 -115.816 0.895 +v 119.803 -115.798 0.903 +v 119.772 -115.78 0.91 +v 119.74 -115.762 0.914 +v 119.708 -115.743 0.916 +v 118.85 -114.844 -4.6 +v 118.675 -115.147 -4.6 +v 118.655 -115.136 -4.6 +v 103.5 -115.1 -4.6 +v 103.5 -114.75 -4.6 +v 118.5 -115.1 -4.6 +v 118.5 -114.75 -4.6 +v 118.523 -115.1 -4.6 +v 118.546 -114.75 -4.6 +v 118.546 -115.103 -4.6 +v 118.59 -114.756 -4.6 +v 118.568 -115.107 -4.6 +v 118.637 -114.763 -4.6 +v 118.59 -115.112 -4.6 +v 118.68 -114.774 -4.6 +v 118.613 -115.12 -4.6 +v 118.725 -114.787 -4.6 +v 118.634 -115.127 -4.6 +v 118.768 -114.803 -4.6 +v 118.81 -114.822 -4.6 +v 103.477 -115.1 -4.6 +v 103.454 -114.75 -4.6 +v 103.454 -115.103 -4.6 +v 103.41 -114.756 -4.6 +v 103.432 -115.107 -4.6 +v 103.363 -114.763 -4.6 +v 103.41 -115.112 -4.6 +v 103.32 -114.774 -4.6 +v 103.388 -115.12 -4.6 +v 103.275 -114.787 -4.6 +v 103.366 -115.127 -4.6 +v 103.232 -114.803 -4.6 +v 103.345 -115.136 -4.6 +v 103.19 -114.822 -4.6 +v 103.325 -115.147 -4.6 +v 103.15 -114.844 -4.6 +v 102.117 -115.44 -4.6 +v 102.085 -115.46 -4.596 +v 102.15 -115.422 -4.6 +v 102.053 -115.477 -4.592 +v 102.022 -115.495 -4.586 +v 101.99 -115.513 -4.578 +v 101.96 -115.53 -4.568 +v 101.93 -115.548 -4.556 +v 101.9 -115.565 -4.543 +v 101.87 -115.582 -4.528 +v 101.843 -115.6 -4.51 +v 101.815 -115.615 -4.493 +v 101.788 -115.63 -4.474 +v 101.762 -115.645 -4.452 +v 101.737 -115.66 -4.43 +v 101.713 -115.674 -4.406 +v 101.69 -115.687 -4.38 +v 101.667 -115.7 -4.354 +v 101.647 -115.712 -4.326 +v 101.627 -115.723 -4.297 +v 101.61 -115.734 -4.267 +v 101.592 -115.744 -4.236 +v 101.576 -115.753 -4.204 +v 101.562 -115.76 -4.17 +v 101.55 -115.768 -4.137 +v 101.537 -115.775 -4.103 +v 101.527 -115.78 -4.068 +v 101.52 -115.786 -4.032 +v 101.512 -115.79 -3.996 +v 101.506 -115.793 -3.96 +v 101.502 -115.795 -3.924 +v 101.5 -115.796 -3.887 +v 101.5 -115.797 -3.85 +v 103.15 -114.844 -4.6 +v 103.15 -114.844 -1.84 +v 101.5 -115.797 -1.84 +v 101.5 -115.797 0.167 +v 101.5 -115.796 0.204 +v 102.15 -115.422 0.917 +v 103.15 -114.844 0.917 +v 101.502 -115.795 0.24 +v 101.506 -115.793 0.277 +v 101.512 -115.79 0.314 +v 101.52 -115.786 0.35 +v 101.527 -115.78 0.385 +v 101.537 -115.775 0.42 +v 101.55 -115.768 0.454 +v 101.562 -115.76 0.488 +v 101.576 -115.753 0.52 +v 101.592 -115.744 0.553 +v 101.61 -115.734 0.584 +v 101.627 -115.723 0.614 +v 101.647 -115.712 0.643 +v 101.667 -115.7 0.67 +v 101.69 -115.687 0.698 +v 101.713 -115.674 0.723 +v 101.737 -115.66 0.747 +v 101.762 -115.645 0.77 +v 101.788 -115.63 0.79 +v 101.815 -115.615 0.81 +v 101.843 -115.6 0.83 +v 101.87 -115.582 0.845 +v 101.9 -115.565 0.86 +v 101.93 -115.548 0.873 +v 101.96 -115.53 0.885 +v 101.99 -115.513 0.895 +v 102.022 -115.495 0.903 +v 102.053 -115.477 0.91 +v 102.085 -115.46 0.914 +v 102.117 -115.44 0.916 +v 120.326 -116.1 -1.84 +v 120.5 -115.797 -1.84 +v 120.326 -116.1 0.167 +v 120.5 -115.797 0.167 +v 120.5 -115.796 -3.887 +v 119.85 -115.422 -4.6 +v 120.5 -115.797 -3.85 +v 118.85 -114.844 -4.6 +v 118.85 -114.844 -1.84 +v 120.498 -115.795 -3.924 +v 120.494 -115.793 -3.96 +v 120.488 -115.79 -3.996 +v 120.48 -115.786 -4.032 +v 120.473 -115.78 -4.068 +v 120.463 -115.775 -4.103 +v 120.45 -115.768 -4.137 +v 120.438 -115.76 -4.17 +v 120.424 -115.753 -4.204 +v 120.408 -115.744 -4.236 +v 120.39 -115.734 -4.267 +v 120.373 -115.723 -4.297 +v 120.353 -115.712 -4.326 +v 120.333 -115.7 -4.354 +v 120.31 -115.687 -4.38 +v 120.288 -115.674 -4.406 +v 120.263 -115.66 -4.43 +v 120.238 -115.645 -4.452 +v 120.212 -115.63 -4.474 +v 120.185 -115.615 -4.493 +v 120.158 -115.6 -4.51 +v 120.13 -115.582 -4.528 +v 120.1 -115.565 -4.543 +v 120.07 -115.548 -4.556 +v 120.04 -115.53 -4.568 +v 120.01 -115.513 -4.578 +v 119.978 -115.495 -4.586 +v 119.947 -115.477 -4.592 +v 119.915 -115.46 -4.596 +v 119.883 -115.44 -4.6 +v 118.85 -114.844 0.917 +v 120.5 -115.797 0.167 +v 120.5 -115.797 -1.84 +v 119.85 -115.422 0.917 +v 120.5 -115.796 0.204 +v 119.883 -115.44 0.916 +v 119.915 -115.46 0.914 +v 119.947 -115.477 0.91 +v 119.978 -115.495 0.903 +v 120.01 -115.513 0.895 +v 120.04 -115.53 0.885 +v 120.07 -115.548 0.873 +v 120.1 -115.565 0.86 +v 120.13 -115.582 0.845 +v 120.158 -115.6 0.83 +v 120.185 -115.615 0.81 +v 120.212 -115.63 0.79 +v 120.238 -115.645 0.77 +v 120.263 -115.66 0.747 +v 120.288 -115.674 0.723 +v 120.31 -115.687 0.698 +v 120.333 -115.7 0.67 +v 120.353 -115.712 0.643 +v 120.373 -115.723 0.614 +v 120.39 -115.734 0.584 +v 120.408 -115.744 0.553 +v 120.424 -115.753 0.52 +v 120.438 -115.76 0.488 +v 120.45 -115.768 0.454 +v 120.463 -115.775 0.42 +v 120.473 -115.78 0.385 +v 120.48 -115.786 0.35 +v 120.488 -115.79 0.314 +v 120.494 -115.793 0.277 +v 120.498 -115.795 0.24 +v 118.5 -114.75 -4.6 +v 118.5 -114.75 -1.84 +v 118.546 -114.75 -4.6 +v 118.546 -114.75 0.917 +v 118.59 -114.756 0.917 +v 118.5 -114.75 0.917 +v 118.59 -114.756 -4.6 +v 118.637 -114.763 0.917 +v 118.637 -114.763 -4.6 +v 118.68 -114.774 0.917 +v 118.68 -114.774 -4.6 +v 118.725 -114.787 0.917 +v 118.725 -114.787 -4.6 +v 118.768 -114.803 0.917 +v 118.768 -114.803 -4.6 +v 118.81 -114.822 0.917 +v 118.81 -114.822 -4.6 +v 103.5 -114.75 0.917 +v 103.5 -114.75 -1.84 +v 103.5 -114.75 -4.6 +v 103.454 -114.75 0.917 +v 103.454 -114.75 -4.6 +v 103.41 -114.756 -4.6 +v 103.41 -114.756 0.917 +v 103.363 -114.763 -4.6 +v 103.363 -114.763 0.917 +v 103.32 -114.774 -4.6 +v 103.32 -114.774 0.917 +v 103.275 -114.787 -4.6 +v 103.275 -114.787 0.917 +v 103.232 -114.803 -4.6 +v 103.232 -114.803 0.917 +v 103.19 -114.822 -4.6 +v 103.19 -114.822 0.917 +v 101.674 -116.1 -1.84 +v 101.5 -115.797 -1.84 +v 101.674 -116.1 0.167 +v 101.5 -115.797 0.167 +v 101.675 -116.1 -3.887 +v 102.324 -115.725 -4.6 +v 101.674 -116.1 -3.85 +v 103.325 -115.147 -4.6 +v 103.325 -115.147 -1.84 +v 101.677 -116.098 -3.924 +v 101.68 -116.096 -3.96 +v 101.687 -116.093 -3.996 +v 101.694 -116.09 -4.032 +v 101.702 -116.084 -4.068 +v 101.712 -116.078 -4.103 +v 101.724 -116.07 -4.137 +v 101.737 -116.064 -4.17 +v 101.75 -116.056 -4.204 +v 101.767 -116.047 -4.236 +v 101.784 -116.037 -4.267 +v 101.802 -116.026 -4.297 +v 101.822 -116.015 -4.326 +v 101.842 -116.003 -4.354 +v 101.864 -115.99 -4.38 +v 101.888 -115.977 -4.406 +v 101.912 -115.963 -4.43 +v 101.937 -115.948 -4.452 +v 101.963 -115.933 -4.474 +v 101.99 -115.918 -4.493 +v 102.018 -115.902 -4.51 +v 102.046 -115.885 -4.528 +v 102.075 -115.868 -4.543 +v 102.105 -115.85 -4.556 +v 102.135 -115.834 -4.568 +v 102.166 -115.816 -4.578 +v 102.197 -115.798 -4.586 +v 102.228 -115.78 -4.592 +v 102.26 -115.762 -4.596 +v 102.292 -115.743 -4.6 +v 103.325 -115.147 0.917 +v 101.674 -116.1 0.167 +v 101.674 -116.1 -1.84 +v 102.324 -115.725 0.917 +v 101.675 -116.1 0.204 +v 102.292 -115.743 0.916 +v 102.26 -115.762 0.914 +v 102.228 -115.78 0.91 +v 102.197 -115.798 0.903 +v 102.166 -115.816 0.895 +v 102.135 -115.834 0.885 +v 102.105 -115.85 0.873 +v 102.075 -115.868 0.86 +v 102.046 -115.885 0.845 +v 102.018 -115.902 0.83 +v 101.99 -115.918 0.81 +v 101.963 -115.933 0.79 +v 101.937 -115.948 0.77 +v 101.912 -115.963 0.747 +v 101.888 -115.977 0.723 +v 101.864 -115.99 0.698 +v 101.842 -116.003 0.67 +v 101.822 -116.015 0.643 +v 101.802 -116.026 0.614 +v 101.784 -116.037 0.584 +v 101.767 -116.047 0.553 +v 101.75 -116.056 0.52 +v 101.737 -116.064 0.488 +v 101.724 -116.07 0.454 +v 101.712 -116.078 0.42 +v 101.702 -116.084 0.385 +v 101.694 -116.09 0.35 +v 101.687 -116.093 0.314 +v 101.68 -116.096 0.277 +v 101.677 -116.098 0.24 +v 103.5 -115.1 0.917 +v 103.477 -115.1 0.917 +v 103.5 -115.1 -1.84 +v 103.477 -115.1 -4.6 +v 103.5 -115.1 -4.6 +v 103.454 -115.103 0.917 +v 103.454 -115.103 -4.6 +v 103.432 -115.107 0.917 +v 103.432 -115.107 -4.6 +v 103.41 -115.112 0.917 +v 103.41 -115.112 -4.6 +v 103.388 -115.12 0.917 +v 103.388 -115.12 -4.6 +v 103.366 -115.127 0.917 +v 103.366 -115.127 -4.6 +v 103.345 -115.136 0.917 +v 103.345 -115.136 -4.6 +v 118.5 -115.1 -4.6 +v 118.5 -115.1 -1.84 +v 118.5 -115.1 0.917 +v 118.523 -115.1 0.917 +v 118.523 -115.1 -4.6 +v 118.546 -115.103 -4.6 +v 118.546 -115.103 0.917 +v 118.568 -115.107 -4.6 +v 118.568 -115.107 0.917 +v 118.59 -115.112 -4.6 +v 118.59 -115.112 0.917 +v 118.613 -115.12 -4.6 +v 118.613 -115.12 0.917 +v 118.634 -115.127 -4.6 +v 118.634 -115.127 0.917 +v 118.655 -115.136 -4.6 +v 118.655 -115.136 0.917 +v 104.25 -106.91 1.21 +v 111 -106.91 1.21 +v 104.25 -106.75 0.9 +v 111 -106.75 0.9 +v 117.75 -106.91 1.21 +v 117.75 -106.75 0.9 +v 102.324 -115.725 0.917 +v 102.15 -115.422 0.917 +v 102.292 -115.743 0.916 +v 102.117 -115.44 0.916 +v 102.085 -115.46 0.914 +v 102.26 -115.762 0.914 +v 102.053 -115.477 0.91 +v 102.228 -115.78 0.91 +v 102.022 -115.495 0.903 +v 102.197 -115.798 0.903 +v 101.99 -115.513 0.895 +v 102.166 -115.816 0.895 +v 102.135 -115.834 0.885 +v 101.96 -115.53 0.885 +v 101.93 -115.548 0.873 +v 102.105 -115.85 0.873 +v 101.9 -115.565 0.86 +v 102.075 -115.868 0.86 +v 101.87 -115.582 0.845 +v 102.046 -115.885 0.845 +v 101.843 -115.6 0.83 +v 102.018 -115.902 0.83 +v 101.99 -115.918 0.81 +v 101.815 -115.615 0.81 +v 101.788 -115.63 0.79 +v 101.963 -115.933 0.79 +v 101.762 -115.645 0.77 +v 101.937 -115.948 0.77 +v 101.737 -115.66 0.747 +v 101.912 -115.963 0.747 +v 101.713 -115.674 0.723 +v 101.888 -115.977 0.723 +v 101.864 -115.99 0.698 +v 101.69 -115.687 0.698 +v 101.842 -116.003 0.67 +v 101.667 -115.7 0.67 +v 101.647 -115.712 0.643 +v 101.822 -116.015 0.643 +v 101.627 -115.723 0.614 +v 101.802 -116.026 0.614 +v 101.61 -115.734 0.584 +v 101.784 -116.037 0.584 +v 101.592 -115.744 0.553 +v 101.767 -116.047 0.553 +v 101.75 -116.056 0.52 +v 101.576 -115.753 0.52 +v 101.562 -115.76 0.488 +v 101.737 -116.064 0.488 +v 101.55 -115.768 0.454 +v 101.724 -116.07 0.454 +v 101.537 -115.775 0.42 +v 101.712 -116.078 0.42 +v 101.527 -115.78 0.385 +v 101.702 -116.084 0.385 +v 101.694 -116.09 0.35 +v 101.52 -115.786 0.35 +v 101.512 -115.79 0.314 +v 101.687 -116.093 0.314 +v 101.506 -115.793 0.277 +v 101.68 -116.096 0.277 +v 101.502 -115.795 0.24 +v 101.677 -116.098 0.24 +v 101.5 -115.796 0.204 +v 101.675 -116.1 0.204 +v 120.325 -116.1 0.204 +v 120.5 -115.796 0.204 +v 120.498 -115.795 0.24 +v 120.323 -116.098 0.24 +v 120.494 -115.793 0.277 +v 120.32 -116.096 0.277 +v 120.488 -115.79 0.314 +v 120.313 -116.093 0.314 +v 120.48 -115.786 0.35 +v 120.306 -116.09 0.35 +v 120.298 -116.084 0.385 +v 120.473 -115.78 0.385 +v 120.463 -115.775 0.42 +v 120.288 -116.078 0.42 +v 120.45 -115.768 0.454 +v 120.276 -116.07 0.454 +v 120.438 -115.76 0.488 +v 120.263 -116.064 0.488 +v 120.424 -115.753 0.52 +v 120.25 -116.056 0.52 +v 120.233 -116.047 0.553 +v 120.408 -115.744 0.553 +v 120.39 -115.734 0.584 +v 120.216 -116.037 0.584 +v 120.373 -115.723 0.614 +v 120.198 -116.026 0.614 +v 120.353 -115.712 0.643 +v 120.178 -116.015 0.643 +v 120.333 -115.7 0.67 +v 120.158 -116.003 0.67 +v 120.136 -115.99 0.698 +v 120.31 -115.687 0.698 +v 120.113 -115.977 0.723 +v 120.288 -115.674 0.723 +v 120.263 -115.66 0.747 +v 120.088 -115.963 0.747 +v 120.238 -115.645 0.77 +v 120.063 -115.948 0.77 +v 120.212 -115.63 0.79 +v 120.037 -115.933 0.79 +v 120.185 -115.615 0.81 +v 120.01 -115.918 0.81 +v 119.983 -115.902 0.83 +v 120.158 -115.6 0.83 +v 120.13 -115.582 0.845 +v 119.954 -115.885 0.845 +v 120.1 -115.565 0.86 +v 119.925 -115.868 0.86 +v 120.07 -115.548 0.873 +v 119.895 -115.85 0.873 +v 120.04 -115.53 0.885 +v 119.865 -115.834 0.885 +v 119.834 -115.816 0.895 +v 120.01 -115.513 0.895 +v 119.978 -115.495 0.903 +v 119.803 -115.798 0.903 +v 119.947 -115.477 0.91 +v 119.772 -115.78 0.91 +v 119.915 -115.46 0.914 +v 119.74 -115.762 0.914 +v 119.883 -115.44 0.916 +v 119.708 -115.743 0.916 +v 119.676 -115.725 0.917 +v 119.85 -115.422 0.917 +v 103.5 -107.415 0.554 +v 103.5 -107.577 0.865 +v 103.5 -107.383 0.57 +v 103.5 -107.544 0.88 +v 103.504 -107.512 0.898 +v 103.504 -107.35 0.588 +v 103.508 -107.48 0.915 +v 103.508 -107.318 0.605 +v 103.514 -107.447 0.932 +v 103.514 -107.286 0.62 +v 103.522 -107.415 0.95 +v 103.522 -107.254 0.638 +v 103.532 -107.222 0.654 +v 103.532 -107.384 0.965 +v 103.544 -107.353 0.98 +v 103.544 -107.19 0.67 +v 103.557 -107.322 0.997 +v 103.557 -107.16 0.686 +v 103.572 -107.292 1.012 +v 103.572 -107.13 0.702 +v 103.59 -107.263 1.028 +v 103.59 -107.102 0.717 +v 103.607 -107.073 0.732 +v 103.607 -107.235 1.042 +v 103.626 -107.207 1.057 +v 103.626 -107.046 0.746 +v 103.648 -107.18 1.07 +v 103.648 -107.02 0.76 +v 103.67 -107.155 1.084 +v 103.67 -106.993 0.774 +v 103.694 -107.13 1.097 +v 103.694 -106.97 0.786 +v 103.72 -106.945 0.8 +v 103.72 -107.106 1.11 +v 103.746 -106.922 0.81 +v 103.746 -107.084 1.12 +v 103.774 -107.063 1.132 +v 103.774 -106.9 0.82 +v 103.803 -107.042 1.142 +v 103.803 -106.88 0.832 +v 103.833 -107.024 1.152 +v 103.833 -106.862 0.842 +v 103.864 -107.006 1.16 +v 103.864 -106.845 0.85 +v 103.896 -106.83 0.86 +v 103.896 -106.99 1.17 +v 103.93 -106.975 1.177 +v 103.93 -106.814 0.867 +v 103.963 -106.962 1.184 +v 103.963 -106.8 0.874 +v 103.997 -106.95 1.19 +v 103.997 -106.79 0.88 +v 104.032 -106.94 1.196 +v 104.032 -106.78 0.885 +v 104.068 -106.77 0.89 +v 104.068 -106.93 1.2 +v 104.104 -106.924 1.204 +v 104.104 -106.763 0.893 +v 104.14 -106.92 1.207 +v 104.14 -106.757 0.896 +v 104.176 -106.915 1.21 +v 104.176 -106.753 0.898 +v 104.213 -106.912 1.21 +v 104.213 -106.75 0.9 +v 118.5 -114.182 1.582 +v 103.5 -114.182 1.582 +v 118.5 -114.222 1.594 +v 103.5 -114.222 1.594 +v 103.5 -114.262 1.603 +v 118.5 -114.262 1.603 +v 103.5 -114.303 1.61 +v 118.5 -114.303 1.61 +v 103.5 -114.344 1.615 +v 118.5 -114.344 1.615 +v 103.5 -114.385 1.617 +v 118.5 -114.385 1.617 +v 103.5 -114.426 1.617 +v 118.5 -114.426 1.617 +v 103.5 -114.467 1.614 +v 118.5 -114.467 1.614 +v 103.5 -114.508 1.61 +v 118.5 -114.508 1.61 +v 103.5 -114.55 1.6 +v 118.5 -114.55 1.6 +v 103.5 -114.59 1.59 +v 118.5 -114.59 1.59 +v 103.5 -114.628 1.58 +v 118.5 -114.628 1.58 +v 103.5 -114.667 1.564 +v 118.5 -114.667 1.564 +v 103.5 -114.705 1.547 +v 118.5 -114.705 1.547 +v 103.5 -114.74 1.528 +v 118.5 -114.74 1.528 +v 103.5 -114.777 1.507 +v 118.5 -114.777 1.507 +v 103.5 -114.81 1.484 +v 118.5 -114.81 1.484 +v 103.5 -114.844 1.46 +v 118.5 -114.844 1.46 +v 103.5 -114.875 1.432 +v 118.5 -114.875 1.432 +v 103.5 -114.904 1.403 +v 118.5 -114.904 1.403 +v 103.5 -114.932 1.372 +v 118.5 -114.932 1.372 +v 103.5 -114.958 1.34 +v 118.5 -114.958 1.34 +v 103.5 -114.982 1.306 +v 118.5 -114.982 1.306 +v 103.5 -115.004 1.272 +v 118.5 -115.004 1.272 +v 103.5 -115.024 1.235 +v 118.5 -115.024 1.235 +v 103.5 -115.04 1.198 +v 118.5 -115.04 1.198 +v 103.5 -115.057 1.16 +v 118.5 -115.057 1.16 +v 103.5 -115.07 1.12 +v 118.5 -115.07 1.12 +v 103.5 -115.08 1.08 +v 118.5 -115.08 1.08 +v 103.5 -115.09 1.04 +v 118.5 -115.09 1.04 +v 103.5 -115.095 1 +v 118.5 -115.095 1 +v 103.5 -115.1 0.958 +v 118.5 -115.1 0.958 +v 103.5 -109.42 0.024 +v 111 -109.42 0.024 +v 118.5 -109.42 0.024 +v 103.5 -109.15 0.046 +v 103.5 -109.166 0.04 +v 111 -109.15 0.046 +v 118.5 -109.166 0.04 +v 118.5 -109.15 0.046 +v 118.5 -109.182 0.032 +v 103.5 -109.182 0.032 +v 103.5 -109.198 0.026 +v 118.5 -109.198 0.026 +v 103.5 -109.215 0.02 +v 118.5 -109.215 0.02 +v 103.5 -109.232 0.016 +v 118.5 -109.232 0.016 +v 103.5 -109.25 0.013 +v 118.5 -109.25 0.013 +v 118.5 -109.266 0.01 +v 103.5 -109.266 0.01 +v 103.5 -109.283 0.008 +v 118.5 -109.283 0.008 +v 103.5 -109.3 0.007 +v 118.5 -109.3 0.007 +v 118.5 -109.318 0.007 +v 103.5 -109.318 0.007 +v 103.5 -109.336 0.008 +v 118.5 -109.336 0.008 +v 118.5 -109.353 0.01 +v 103.5 -109.353 0.01 +v 103.5 -109.37 0.012 +v 118.5 -109.37 0.012 +v 103.5 -109.387 0.015 +v 118.5 -109.387 0.015 +v 103.5 -109.404 0.02 +v 118.5 -109.404 0.02 +v 103.5 -107.577 0.865 +v 104.25 -106.91 1.21 +v 111 -106.91 1.21 +v 117.75 -106.91 1.21 +v 118.5 -107.577 0.865 +v 118.5 -107.544 0.88 +v 118.496 -107.512 0.898 +v 118.492 -107.48 0.915 +v 118.486 -107.447 0.932 +v 118.478 -107.415 0.95 +v 118.468 -107.384 0.965 +v 118.456 -107.353 0.98 +v 118.443 -107.322 0.997 +v 118.428 -107.292 1.012 +v 118.41 -107.263 1.028 +v 118.393 -107.235 1.042 +v 118.374 -107.207 1.057 +v 118.352 -107.18 1.07 +v 118.33 -107.155 1.084 +v 118.306 -107.13 1.097 +v 118.28 -107.106 1.11 +v 118.254 -107.084 1.12 +v 118.226 -107.063 1.132 +v 118.197 -107.042 1.142 +v 118.167 -107.024 1.152 +v 118.136 -107.006 1.16 +v 118.104 -106.99 1.17 +v 118.07 -106.975 1.177 +v 118.037 -106.962 1.184 +v 118.003 -106.95 1.19 +v 117.968 -106.94 1.196 +v 117.932 -106.93 1.2 +v 117.896 -106.924 1.204 +v 117.86 -106.92 1.207 +v 117.824 -106.915 1.21 +v 117.787 -106.912 1.21 +v 104.213 -106.912 1.21 +v 104.176 -106.915 1.21 +v 104.14 -106.92 1.207 +v 104.104 -106.924 1.204 +v 104.068 -106.93 1.2 +v 104.032 -106.94 1.196 +v 103.997 -106.95 1.19 +v 103.963 -106.962 1.184 +v 103.93 -106.975 1.177 +v 103.896 -106.99 1.17 +v 103.864 -107.006 1.16 +v 103.833 -107.024 1.152 +v 103.803 -107.042 1.142 +v 103.774 -107.063 1.132 +v 103.746 -107.084 1.12 +v 103.72 -107.106 1.11 +v 103.694 -107.13 1.097 +v 103.67 -107.155 1.084 +v 103.648 -107.18 1.07 +v 103.626 -107.207 1.057 +v 103.607 -107.235 1.042 +v 103.59 -107.263 1.028 +v 103.572 -107.292 1.012 +v 103.557 -107.322 0.997 +v 103.544 -107.353 0.98 +v 103.532 -107.384 0.965 +v 103.522 -107.415 0.95 +v 103.514 -107.447 0.932 +v 103.508 -107.48 0.915 +v 103.504 -107.512 0.898 +v 103.5 -107.544 0.88 +v 117.787 -106.75 0.9 +v 117.787 -106.912 1.21 +v 117.824 -106.915 1.21 +v 117.824 -106.753 0.898 +v 117.86 -106.92 1.207 +v 117.86 -106.757 0.896 +v 117.896 -106.924 1.204 +v 117.896 -106.763 0.893 +v 117.932 -106.93 1.2 +v 117.932 -106.77 0.89 +v 117.968 -106.78 0.885 +v 117.968 -106.94 1.196 +v 118.003 -106.95 1.19 +v 118.003 -106.79 0.88 +v 118.037 -106.962 1.184 +v 118.037 -106.8 0.874 +v 118.07 -106.975 1.177 +v 118.07 -106.814 0.867 +v 118.104 -106.99 1.17 +v 118.104 -106.83 0.86 +v 118.136 -106.845 0.85 +v 118.136 -107.006 1.16 +v 118.167 -107.024 1.152 +v 118.167 -106.862 0.842 +v 118.197 -107.042 1.142 +v 118.197 -106.88 0.832 +v 118.226 -107.063 1.132 +v 118.226 -106.9 0.82 +v 118.254 -107.084 1.12 +v 118.254 -106.922 0.81 +v 118.28 -106.945 0.8 +v 118.28 -107.106 1.11 +v 118.306 -106.97 0.786 +v 118.306 -107.13 1.097 +v 118.33 -107.155 1.084 +v 118.33 -106.993 0.774 +v 118.352 -107.18 1.07 +v 118.352 -107.02 0.76 +v 118.374 -107.207 1.057 +v 118.374 -107.046 0.746 +v 118.393 -107.235 1.042 +v 118.393 -107.073 0.732 +v 118.41 -107.102 0.717 +v 118.41 -107.263 1.028 +v 118.428 -107.292 1.012 +v 118.428 -107.13 0.702 +v 118.443 -107.322 0.997 +v 118.443 -107.16 0.686 +v 118.456 -107.353 0.98 +v 118.456 -107.19 0.67 +v 118.468 -107.384 0.965 +v 118.468 -107.222 0.654 +v 118.478 -107.254 0.638 +v 118.478 -107.415 0.95 +v 118.486 -107.447 0.932 +v 118.486 -107.286 0.62 +v 118.492 -107.48 0.915 +v 118.492 -107.318 0.605 +v 118.496 -107.512 0.898 +v 118.496 -107.35 0.588 +v 118.5 -107.544 0.88 +v 118.5 -107.383 0.57 +v 118.5 -107.415 0.554 +v 118.5 -107.577 0.865 +v 118.5 -107.383 0.57 +v 118.5 -107.415 0.554 +v 117.75 -106.75 0.9 +v 118.5 -108.99 -0.264 +v 111 -106.75 0.9 +v 103.5 -108.99 -0.264 +v 104.25 -106.75 0.9 +v 103.5 -107.415 0.554 +v 103.5 -107.383 0.57 +v 117.787 -106.75 0.9 +v 117.824 -106.753 0.898 +v 117.86 -106.757 0.896 +v 117.896 -106.763 0.893 +v 117.932 -106.77 0.89 +v 117.968 -106.78 0.885 +v 118.003 -106.79 0.88 +v 118.037 -106.8 0.874 +v 118.07 -106.814 0.867 +v 118.104 -106.83 0.86 +v 118.136 -106.845 0.85 +v 118.167 -106.862 0.842 +v 118.197 -106.88 0.832 +v 118.226 -106.9 0.82 +v 118.254 -106.922 0.81 +v 118.28 -106.945 0.8 +v 118.306 -106.97 0.786 +v 118.33 -106.993 0.774 +v 118.352 -107.02 0.76 +v 118.374 -107.046 0.746 +v 118.393 -107.073 0.732 +v 118.41 -107.102 0.717 +v 118.428 -107.13 0.702 +v 118.443 -107.16 0.686 +v 118.456 -107.19 0.67 +v 118.468 -107.222 0.654 +v 118.478 -107.254 0.638 +v 118.486 -107.286 0.62 +v 118.492 -107.318 0.605 +v 118.496 -107.35 0.588 +v 103.504 -107.35 0.588 +v 103.508 -107.318 0.605 +v 103.514 -107.286 0.62 +v 103.522 -107.254 0.638 +v 103.532 -107.222 0.654 +v 103.544 -107.19 0.67 +v 103.557 -107.16 0.686 +v 103.572 -107.13 0.702 +v 103.59 -107.102 0.717 +v 103.607 -107.073 0.732 +v 103.626 -107.046 0.746 +v 103.648 -107.02 0.76 +v 103.67 -106.993 0.774 +v 103.694 -106.97 0.786 +v 103.72 -106.945 0.8 +v 103.746 -106.922 0.81 +v 103.774 -106.9 0.82 +v 103.803 -106.88 0.832 +v 103.833 -106.862 0.842 +v 103.864 -106.845 0.85 +v 103.896 -106.83 0.86 +v 103.93 -106.814 0.867 +v 103.963 -106.8 0.874 +v 103.997 -106.79 0.88 +v 104.032 -106.78 0.885 +v 104.068 -106.77 0.89 +v 104.104 -106.763 0.893 +v 104.14 -106.757 0.896 +v 104.176 -106.753 0.898 +v 104.213 -106.75 0.9 +v 118.5 -109.02 -0.28 +v 103.5 -109.02 -0.28 +v 103.5 -109.052 -0.293 +v 118.5 -109.052 -0.293 +v 118.5 -109.085 -0.305 +v 103.5 -109.085 -0.305 +v 118.5 -109.118 -0.316 +v 103.5 -109.118 -0.316 +v 118.5 -109.152 -0.325 +v 103.5 -109.152 -0.325 +v 118.5 -109.186 -0.332 +v 103.5 -109.186 -0.332 +v 103.5 -109.22 -0.337 +v 118.5 -109.22 -0.337 +v 118.5 -109.255 -0.34 +v 103.5 -109.255 -0.34 +v 118.5 -109.29 -0.343 +v 103.5 -109.29 -0.343 +v 103.5 -109.324 -0.343 +v 118.5 -109.324 -0.343 +v 118.5 -109.36 -0.342 +v 103.5 -109.36 -0.342 +v 103.5 -109.394 -0.338 +v 118.5 -109.394 -0.338 +v 118.5 -109.428 -0.333 +v 103.5 -109.428 -0.333 +v 118.5 -109.462 -0.327 +v 103.5 -109.462 -0.327 +v 118.5 -109.496 -0.318 +v 103.5 -109.496 -0.318 +v 118.5 -109.53 -0.308 +v 103.5 -109.53 -0.308 +v 103.325 -115.147 0.917 +v 103.15 -114.844 0.917 +v 103.345 -115.136 0.917 +v 103.19 -114.822 0.917 +v 103.366 -115.127 0.917 +v 103.232 -114.803 0.917 +v 103.388 -115.12 0.917 +v 103.275 -114.787 0.917 +v 103.41 -115.112 0.917 +v 103.32 -114.774 0.917 +v 103.432 -115.107 0.917 +v 103.363 -114.763 0.917 +v 103.454 -115.103 0.917 +v 103.41 -114.756 0.917 +v 103.477 -115.1 0.917 +v 103.454 -114.75 0.917 +v 103.5 -115.1 0.917 +v 103.5 -114.75 0.917 +v 118.5 -114.75 0.917 +v 118.5 -115.1 0.917 +v 118.546 -114.75 0.917 +v 118.523 -115.1 0.917 +v 118.546 -115.103 0.917 +v 118.59 -114.756 0.917 +v 118.568 -115.107 0.917 +v 118.637 -114.763 0.917 +v 118.59 -115.112 0.917 +v 118.68 -114.774 0.917 +v 118.613 -115.12 0.917 +v 118.725 -114.787 0.917 +v 118.634 -115.127 0.917 +v 118.768 -114.803 0.917 +v 118.655 -115.136 0.917 +v 118.81 -114.822 0.917 +v 118.85 -114.844 0.917 +v 118.675 -115.147 0.917 +v 118.5 -114.29 1.25 +v 103.5 -114.29 1.25 +v 103.5 -114.392 1.267 +v 103.5 -114.385 1.617 +v 103.5 -114.372 1.266 +v 103.5 -114.344 1.615 +v 103.5 -114.35 1.264 +v 103.5 -114.303 1.61 +v 103.5 -114.33 1.26 +v 103.5 -114.262 1.603 +v 103.5 -114.31 1.256 +v 103.5 -114.222 1.594 +v 103.5 -114.29 1.25 +v 103.5 -114.182 1.582 +v 103.5 -109.53 -0.308 +v 103.5 -109.42 0.024 +v 103.5 -109.496 -0.318 +v 103.5 -109.404 0.02 +v 103.5 -109.462 -0.327 +v 103.5 -109.387 0.015 +v 103.5 -109.428 -0.333 +v 103.5 -109.37 0.012 +v 103.5 -109.394 -0.338 +v 103.5 -109.353 0.01 +v 103.5 -109.36 -0.342 +v 103.5 -109.336 0.008 +v 103.5 -109.324 -0.343 +v 103.5 -109.318 0.007 +v 103.5 -109.29 -0.343 +v 103.5 -109.3 0.007 +v 103.5 -109.283 0.008 +v 103.5 -114.413 1.267 +v 103.5 -114.426 1.617 +v 103.5 -114.434 1.266 +v 103.5 -114.467 1.614 +v 103.5 -114.454 1.263 +v 103.5 -114.508 1.61 +v 103.5 -114.474 1.26 +v 103.5 -114.55 1.6 +v 103.5 -114.494 1.254 +v 103.5 -114.59 1.59 +v 103.5 -114.514 1.248 +v 103.5 -114.628 1.58 +v 103.5 -114.534 1.24 +v 103.5 -114.667 1.564 +v 103.5 -114.552 1.232 +v 103.5 -114.705 1.547 +v 103.5 -114.57 1.223 +v 103.5 -114.74 1.528 +v 103.5 -114.588 1.212 +v 103.5 -114.777 1.507 +v 103.5 -114.605 1.2 +v 103.5 -114.81 1.484 +v 103.5 -114.622 1.188 +v 103.5 -114.844 1.46 +v 103.5 -114.637 1.174 +v 103.5 -114.875 1.432 +v 103.5 -114.652 1.16 +v 103.5 -114.904 1.403 +v 103.5 -114.666 1.145 +v 103.5 -114.932 1.372 +v 103.5 -114.68 1.13 +v 103.5 -114.958 1.34 +v 103.5 -114.69 1.112 +v 103.5 -114.982 1.306 +v 103.5 -114.702 1.094 +v 103.5 -115.004 1.272 +v 103.5 -114.712 1.076 +v 103.5 -115.024 1.235 +v 103.5 -114.72 1.058 +v 103.5 -115.04 1.198 +v 103.5 -114.728 1.038 +v 103.5 -115.057 1.16 +v 103.5 -114.735 1.02 +v 103.5 -115.07 1.12 +v 103.5 -114.74 1 +v 103.5 -115.08 1.08 +v 103.5 -114.745 0.98 +v 103.5 -115.09 1.04 +v 103.5 -114.748 0.958 +v 103.5 -115.095 1 +v 103.5 -114.75 0.938 +v 103.5 -115.1 0.958 +v 103.5 -114.75 0.917 +v 103.5 -115.1 0.917 +v 103.5 -109.255 -0.34 +v 103.5 -109.266 0.01 +v 103.5 -109.22 -0.337 +v 103.5 -109.25 0.013 +v 103.5 -109.186 -0.332 +v 103.5 -109.232 0.016 +v 103.5 -109.152 -0.325 +v 103.5 -109.215 0.02 +v 103.5 -109.118 -0.316 +v 103.5 -109.198 0.026 +v 103.5 -109.085 -0.305 +v 103.5 -109.182 0.032 +v 103.5 -109.052 -0.293 +v 103.5 -109.166 0.04 +v 103.5 -109.02 -0.28 +v 103.5 -109.15 0.046 +v 103.5 -108.99 -0.264 +v 118.5 -115.1 0.917 +v 118.5 -114.75 0.917 +v 118.5 -115.1 0.958 +v 118.5 -114.75 0.938 +v 118.5 -114.748 0.958 +v 118.5 -115.095 1 +v 118.5 -114.745 0.98 +v 118.5 -115.09 1.04 +v 118.5 -114.74 1 +v 118.5 -115.08 1.08 +v 118.5 -114.735 1.02 +v 118.5 -115.07 1.12 +v 118.5 -114.728 1.038 +v 118.5 -115.057 1.16 +v 118.5 -114.72 1.058 +v 118.5 -115.04 1.198 +v 118.5 -114.712 1.076 +v 118.5 -115.024 1.235 +v 118.5 -114.702 1.094 +v 118.5 -115.004 1.272 +v 118.5 -114.69 1.112 +v 118.5 -114.982 1.306 +v 118.5 -114.68 1.13 +v 118.5 -114.958 1.34 +v 118.5 -114.666 1.145 +v 118.5 -114.932 1.372 +v 118.5 -114.652 1.16 +v 118.5 -114.904 1.403 +v 118.5 -114.637 1.174 +v 118.5 -114.875 1.432 +v 118.5 -114.622 1.188 +v 118.5 -114.844 1.46 +v 118.5 -114.605 1.2 +v 118.5 -114.81 1.484 +v 118.5 -114.588 1.212 +v 118.5 -114.777 1.507 +v 118.5 -114.57 1.223 +v 118.5 -114.74 1.528 +v 118.5 -114.552 1.232 +v 118.5 -114.705 1.547 +v 118.5 -114.534 1.24 +v 118.5 -114.667 1.564 +v 118.5 -114.514 1.248 +v 118.5 -114.628 1.58 +v 118.5 -114.494 1.254 +v 118.5 -114.59 1.59 +v 118.5 -114.474 1.26 +v 118.5 -114.55 1.6 +v 118.5 -114.454 1.263 +v 118.5 -114.508 1.61 +v 118.5 -114.434 1.266 +v 118.5 -114.467 1.614 +v 118.5 -114.413 1.267 +v 118.5 -114.392 1.267 +v 118.5 -114.344 1.615 +v 118.5 -114.372 1.266 +v 118.5 -114.303 1.61 +v 118.5 -114.35 1.264 +v 118.5 -114.262 1.603 +v 118.5 -114.33 1.26 +v 118.5 -114.222 1.594 +v 118.5 -114.31 1.256 +v 118.5 -114.182 1.582 +v 118.5 -114.29 1.25 +v 118.5 -109.42 0.024 +v 118.5 -109.53 -0.308 +v 118.5 -109.496 -0.318 +v 118.5 -109.404 0.02 +v 118.5 -109.462 -0.327 +v 118.5 -109.387 0.015 +v 118.5 -109.428 -0.333 +v 118.5 -109.37 0.012 +v 118.5 -109.394 -0.338 +v 118.5 -109.353 0.01 +v 118.5 -109.36 -0.342 +v 118.5 -109.336 0.008 +v 118.5 -109.324 -0.343 +v 118.5 -109.318 0.007 +v 118.5 -109.29 -0.343 +v 118.5 -109.3 0.007 +v 118.5 -109.255 -0.34 +v 118.5 -109.283 0.008 +v 118.5 -109.22 -0.337 +v 118.5 -109.266 0.01 +v 118.5 -109.186 -0.332 +v 118.5 -109.25 0.013 +v 118.5 -109.152 -0.325 +v 118.5 -109.232 0.016 +v 118.5 -109.118 -0.316 +v 118.5 -109.215 0.02 +v 118.5 -109.085 -0.305 +v 118.5 -109.198 0.026 +v 118.5 -109.052 -0.293 +v 118.5 -109.182 0.032 +v 118.5 -109.02 -0.28 +v 118.5 -109.166 0.04 +v 118.5 -108.99 -0.264 +v 118.5 -109.15 0.046 +v 118.5 -114.385 1.617 +v 118.5 -114.426 1.617 +v 103.5 -114.31 1.256 +v 118.5 -114.31 1.256 +v 118.5 -114.33 1.26 +v 103.5 -114.33 1.26 +v 118.5 -114.35 1.264 +v 103.5 -114.35 1.264 +v 118.5 -114.372 1.266 +v 103.5 -114.372 1.266 +v 118.5 -114.392 1.267 +v 103.5 -114.392 1.267 +v 118.5 -114.413 1.267 +v 103.5 -114.413 1.267 +v 118.5 -114.434 1.266 +v 103.5 -114.434 1.266 +v 118.5 -114.454 1.263 +v 103.5 -114.454 1.263 +v 118.5 -114.474 1.26 +v 103.5 -114.474 1.26 +v 118.5 -114.494 1.254 +v 103.5 -114.494 1.254 +v 118.5 -114.514 1.248 +v 103.5 -114.514 1.248 +v 118.5 -114.534 1.24 +v 103.5 -114.534 1.24 +v 118.5 -114.552 1.232 +v 103.5 -114.552 1.232 +v 118.5 -114.57 1.223 +v 103.5 -114.57 1.223 +v 118.5 -114.588 1.212 +v 103.5 -114.588 1.212 +v 118.5 -114.605 1.2 +v 103.5 -114.605 1.2 +v 118.5 -114.622 1.188 +v 103.5 -114.622 1.188 +v 118.5 -114.637 1.174 +v 103.5 -114.637 1.174 +v 118.5 -114.652 1.16 +v 103.5 -114.652 1.16 +v 118.5 -114.666 1.145 +v 103.5 -114.666 1.145 +v 118.5 -114.68 1.13 +v 103.5 -114.68 1.13 +v 118.5 -114.69 1.112 +v 103.5 -114.69 1.112 +v 118.5 -114.702 1.094 +v 103.5 -114.702 1.094 +v 118.5 -114.712 1.076 +v 103.5 -114.712 1.076 +v 118.5 -114.72 1.058 +v 103.5 -114.72 1.058 +v 118.5 -114.728 1.038 +v 103.5 -114.728 1.038 +v 118.5 -114.735 1.02 +v 103.5 -114.735 1.02 +v 118.5 -114.74 1 +v 103.5 -114.74 1 +v 118.5 -114.745 0.98 +v 103.5 -114.745 0.98 +v 118.5 -114.748 0.958 +v 103.5 -114.748 0.958 +v 118.5 -114.75 0.938 +v 103.5 -114.75 0.938 +v -119.676 115.225 -4.6 +v -119.85 114.922 -4.6 +v -119.708 115.243 -4.6 +v -119.883 114.94 -4.6 +v -119.915 114.96 -4.596 +v -119.74 115.262 -4.596 +v -119.947 114.977 -4.592 +v -119.772 115.28 -4.592 +v -119.978 114.995 -4.586 +v -119.803 115.298 -4.586 +v -120.01 115.013 -4.578 +v -119.834 115.316 -4.578 +v -119.865 115.334 -4.568 +v -120.04 115.03 -4.568 +v -120.07 115.048 -4.556 +v -119.895 115.35 -4.556 +v -120.1 115.065 -4.543 +v -119.925 115.368 -4.543 +v -120.13 115.082 -4.528 +v -119.954 115.385 -4.528 +v -120.158 115.1 -4.51 +v -119.983 115.402 -4.51 +v -120.01 115.418 -4.493 +v -120.185 115.115 -4.493 +v -120.212 115.13 -4.474 +v -120.037 115.433 -4.474 +v -120.238 115.145 -4.452 +v -120.063 115.448 -4.452 +v -120.263 115.16 -4.43 +v -120.088 115.463 -4.43 +v -120.288 115.174 -4.406 +v -120.113 115.477 -4.406 +v -120.136 115.49 -4.38 +v -120.31 115.187 -4.38 +v -120.158 115.503 -4.354 +v -120.333 115.2 -4.354 +v -120.353 115.212 -4.326 +v -120.178 115.515 -4.326 +v -120.373 115.223 -4.297 +v -120.198 115.526 -4.297 +v -120.39 115.234 -4.267 +v -120.216 115.537 -4.267 +v -120.408 115.244 -4.236 +v -120.233 115.547 -4.236 +v -120.25 115.556 -4.204 +v -120.424 115.253 -4.204 +v -120.438 115.26 -4.17 +v -120.263 115.564 -4.17 +v -120.45 115.268 -4.137 +v -120.276 115.57 -4.137 +v -120.463 115.275 -4.103 +v -120.288 115.578 -4.103 +v -120.473 115.28 -4.068 +v -120.298 115.584 -4.068 +v -120.306 115.59 -4.032 +v -120.48 115.286 -4.032 +v -120.488 115.29 -3.996 +v -120.313 115.593 -3.996 +v -120.494 115.293 -3.96 +v -120.32 115.596 -3.96 +v -120.498 115.295 -3.924 +v -120.323 115.598 -3.924 +v -120.5 115.296 -3.887 +v -120.325 115.6 -3.887 +v -120.326 115.6 -3.85 +v -120.5 115.297 -3.85 +v -102.15 114.922 -4.6 +v -102.324 115.225 -4.6 +v -102.117 114.94 -4.6 +v -102.292 115.243 -4.6 +v -102.26 115.262 -4.596 +v -102.085 114.96 -4.596 +v -102.228 115.28 -4.592 +v -102.053 114.977 -4.592 +v -102.197 115.298 -4.586 +v -102.022 114.995 -4.586 +v -102.166 115.316 -4.578 +v -101.99 115.013 -4.578 +v -101.96 115.03 -4.568 +v -102.135 115.334 -4.568 +v -102.105 115.35 -4.556 +v -101.93 115.048 -4.556 +v -102.075 115.368 -4.543 +v -101.9 115.065 -4.543 +v -102.046 115.385 -4.528 +v -101.87 115.082 -4.528 +v -102.018 115.402 -4.51 +v -101.843 115.1 -4.51 +v -101.815 115.115 -4.493 +v -101.99 115.418 -4.493 +v -101.963 115.433 -4.474 +v -101.788 115.13 -4.474 +v -101.937 115.448 -4.452 +v -101.762 115.145 -4.452 +v -101.912 115.463 -4.43 +v -101.737 115.16 -4.43 +v -101.888 115.477 -4.406 +v -101.713 115.174 -4.406 +v -101.69 115.187 -4.38 +v -101.864 115.49 -4.38 +v -101.667 115.2 -4.354 +v -101.842 115.503 -4.354 +v -101.822 115.515 -4.326 +v -101.647 115.212 -4.326 +v -101.802 115.526 -4.297 +v -101.627 115.223 -4.297 +v -101.784 115.537 -4.267 +v -101.61 115.234 -4.267 +v -101.767 115.547 -4.236 +v -101.592 115.244 -4.236 +v -101.576 115.253 -4.204 +v -101.75 115.556 -4.204 +v -101.737 115.564 -4.17 +v -101.562 115.26 -4.17 +v -101.724 115.57 -4.137 +v -101.55 115.268 -4.137 +v -101.712 115.578 -4.103 +v -101.537 115.275 -4.103 +v -101.702 115.584 -4.068 +v -101.527 115.28 -4.068 +v -101.52 115.286 -4.032 +v -101.694 115.59 -4.032 +v -101.687 115.593 -3.996 +v -101.512 115.29 -3.996 +v -101.68 115.596 -3.96 +v -101.506 115.293 -3.96 +v -101.677 115.598 -3.924 +v -101.502 115.295 -3.924 +v -101.675 115.6 -3.887 +v -101.5 115.296 -3.887 +v -101.5 115.297 -3.85 +v -101.674 115.6 -3.85 +v -119.708 115.243 -4.6 +v -119.74 115.262 -4.596 +v -119.676 115.225 -4.6 +v -119.772 115.28 -4.592 +v -119.803 115.298 -4.586 +v -119.834 115.316 -4.578 +v -119.865 115.334 -4.568 +v -119.895 115.35 -4.556 +v -119.925 115.368 -4.543 +v -119.954 115.385 -4.528 +v -119.983 115.402 -4.51 +v -120.01 115.418 -4.493 +v -120.037 115.433 -4.474 +v -120.063 115.448 -4.452 +v -120.088 115.463 -4.43 +v -120.113 115.477 -4.406 +v -120.136 115.49 -4.38 +v -120.158 115.503 -4.354 +v -120.178 115.515 -4.326 +v -120.198 115.526 -4.297 +v -120.216 115.537 -4.267 +v -120.233 115.547 -4.236 +v -120.25 115.556 -4.204 +v -120.263 115.564 -4.17 +v -120.276 115.57 -4.137 +v -120.288 115.578 -4.103 +v -120.298 115.584 -4.068 +v -120.306 115.59 -4.032 +v -120.313 115.593 -3.996 +v -120.32 115.596 -3.96 +v -120.323 115.598 -3.924 +v -120.325 115.6 -3.887 +v -120.326 115.6 -3.85 +v -118.675 114.647 -4.6 +v -118.675 114.647 -1.84 +v -120.326 115.6 -1.84 +v -120.326 115.6 0.167 +v -120.325 115.6 0.204 +v -119.676 115.225 0.917 +v -118.675 114.647 0.917 +v -120.323 115.598 0.24 +v -120.32 115.596 0.277 +v -120.313 115.593 0.314 +v -120.306 115.59 0.35 +v -120.298 115.584 0.385 +v -120.288 115.578 0.42 +v -120.276 115.57 0.454 +v -120.263 115.564 0.488 +v -120.25 115.556 0.52 +v -120.233 115.547 0.553 +v -120.216 115.537 0.584 +v -120.198 115.526 0.614 +v -120.178 115.515 0.643 +v -120.158 115.503 0.67 +v -120.136 115.49 0.698 +v -120.113 115.477 0.723 +v -120.088 115.463 0.747 +v -120.063 115.448 0.77 +v -120.037 115.433 0.79 +v -120.01 115.418 0.81 +v -119.983 115.402 0.83 +v -119.954 115.385 0.845 +v -119.925 115.368 0.86 +v -119.895 115.35 0.873 +v -119.865 115.334 0.885 +v -119.834 115.316 0.895 +v -119.803 115.298 0.903 +v -119.772 115.28 0.91 +v -119.74 115.262 0.914 +v -119.708 115.243 0.916 +v -118.85 114.344 -4.6 +v -118.675 114.647 -4.6 +v -118.655 114.636 -4.6 +v -103.5 114.6 -4.6 +v -103.5 114.25 -4.6 +v -118.5 114.6 -4.6 +v -118.5 114.25 -4.6 +v -118.523 114.6 -4.6 +v -118.546 114.25 -4.6 +v -118.546 114.603 -4.6 +v -118.59 114.256 -4.6 +v -118.568 114.607 -4.6 +v -118.637 114.263 -4.6 +v -118.59 114.612 -4.6 +v -118.68 114.274 -4.6 +v -118.613 114.62 -4.6 +v -118.725 114.287 -4.6 +v -118.634 114.627 -4.6 +v -118.768 114.303 -4.6 +v -118.81 114.322 -4.6 +v -103.477 114.6 -4.6 +v -103.454 114.25 -4.6 +v -103.454 114.603 -4.6 +v -103.41 114.256 -4.6 +v -103.432 114.607 -4.6 +v -103.363 114.263 -4.6 +v -103.41 114.612 -4.6 +v -103.32 114.274 -4.6 +v -103.388 114.62 -4.6 +v -103.275 114.287 -4.6 +v -103.366 114.627 -4.6 +v -103.232 114.303 -4.6 +v -103.345 114.636 -4.6 +v -103.19 114.322 -4.6 +v -103.325 114.647 -4.6 +v -103.15 114.344 -4.6 +v -102.117 114.94 -4.6 +v -102.085 114.96 -4.596 +v -102.15 114.922 -4.6 +v -102.053 114.977 -4.592 +v -102.022 114.995 -4.586 +v -101.99 115.013 -4.578 +v -101.96 115.03 -4.568 +v -101.93 115.048 -4.556 +v -101.9 115.065 -4.543 +v -101.87 115.082 -4.528 +v -101.843 115.1 -4.51 +v -101.815 115.115 -4.493 +v -101.788 115.13 -4.474 +v -101.762 115.145 -4.452 +v -101.737 115.16 -4.43 +v -101.713 115.174 -4.406 +v -101.69 115.187 -4.38 +v -101.667 115.2 -4.354 +v -101.647 115.212 -4.326 +v -101.627 115.223 -4.297 +v -101.61 115.234 -4.267 +v -101.592 115.244 -4.236 +v -101.576 115.253 -4.204 +v -101.562 115.26 -4.17 +v -101.55 115.268 -4.137 +v -101.537 115.275 -4.103 +v -101.527 115.28 -4.068 +v -101.52 115.286 -4.032 +v -101.512 115.29 -3.996 +v -101.506 115.293 -3.96 +v -101.502 115.295 -3.924 +v -101.5 115.296 -3.887 +v -101.5 115.297 -3.85 +v -103.15 114.344 -4.6 +v -103.15 114.344 -1.84 +v -101.5 115.297 -1.84 +v -101.5 115.297 0.167 +v -101.5 115.296 0.204 +v -102.15 114.922 0.917 +v -103.15 114.344 0.917 +v -101.502 115.295 0.24 +v -101.506 115.293 0.277 +v -101.512 115.29 0.314 +v -101.52 115.286 0.35 +v -101.527 115.28 0.385 +v -101.537 115.275 0.42 +v -101.55 115.268 0.454 +v -101.562 115.26 0.488 +v -101.576 115.253 0.52 +v -101.592 115.244 0.553 +v -101.61 115.234 0.584 +v -101.627 115.223 0.614 +v -101.647 115.212 0.643 +v -101.667 115.2 0.67 +v -101.69 115.187 0.698 +v -101.713 115.174 0.723 +v -101.737 115.16 0.747 +v -101.762 115.145 0.77 +v -101.788 115.13 0.79 +v -101.815 115.115 0.81 +v -101.843 115.1 0.83 +v -101.87 115.082 0.845 +v -101.9 115.065 0.86 +v -101.93 115.048 0.873 +v -101.96 115.03 0.885 +v -101.99 115.013 0.895 +v -102.022 114.995 0.903 +v -102.053 114.977 0.91 +v -102.085 114.96 0.914 +v -102.117 114.94 0.916 +v -120.326 115.6 -1.84 +v -120.5 115.297 -1.84 +v -120.326 115.6 0.167 +v -120.5 115.297 0.167 +v -120.5 115.296 -3.887 +v -119.85 114.922 -4.6 +v -120.5 115.297 -3.85 +v -118.85 114.344 -4.6 +v -118.85 114.344 -1.84 +v -120.498 115.295 -3.924 +v -120.494 115.293 -3.96 +v -120.488 115.29 -3.996 +v -120.48 115.286 -4.032 +v -120.473 115.28 -4.068 +v -120.463 115.275 -4.103 +v -120.45 115.268 -4.137 +v -120.438 115.26 -4.17 +v -120.424 115.253 -4.204 +v -120.408 115.244 -4.236 +v -120.39 115.234 -4.267 +v -120.373 115.223 -4.297 +v -120.353 115.212 -4.326 +v -120.333 115.2 -4.354 +v -120.31 115.187 -4.38 +v -120.288 115.174 -4.406 +v -120.263 115.16 -4.43 +v -120.238 115.145 -4.452 +v -120.212 115.13 -4.474 +v -120.185 115.115 -4.493 +v -120.158 115.1 -4.51 +v -120.13 115.082 -4.528 +v -120.1 115.065 -4.543 +v -120.07 115.048 -4.556 +v -120.04 115.03 -4.568 +v -120.01 115.013 -4.578 +v -119.978 114.995 -4.586 +v -119.947 114.977 -4.592 +v -119.915 114.96 -4.596 +v -119.883 114.94 -4.6 +v -118.85 114.344 0.917 +v -120.5 115.297 0.167 +v -120.5 115.297 -1.84 +v -119.85 114.922 0.917 +v -120.5 115.296 0.204 +v -119.883 114.94 0.916 +v -119.915 114.96 0.914 +v -119.947 114.977 0.91 +v -119.978 114.995 0.903 +v -120.01 115.013 0.895 +v -120.04 115.03 0.885 +v -120.07 115.048 0.873 +v -120.1 115.065 0.86 +v -120.13 115.082 0.845 +v -120.158 115.1 0.83 +v -120.185 115.115 0.81 +v -120.212 115.13 0.79 +v -120.238 115.145 0.77 +v -120.263 115.16 0.747 +v -120.288 115.174 0.723 +v -120.31 115.187 0.698 +v -120.333 115.2 0.67 +v -120.353 115.212 0.643 +v -120.373 115.223 0.614 +v -120.39 115.234 0.584 +v -120.408 115.244 0.553 +v -120.424 115.253 0.52 +v -120.438 115.26 0.488 +v -120.45 115.268 0.454 +v -120.463 115.275 0.42 +v -120.473 115.28 0.385 +v -120.48 115.286 0.35 +v -120.488 115.29 0.314 +v -120.494 115.293 0.277 +v -120.498 115.295 0.24 +v -118.5 114.25 -4.6 +v -118.5 114.25 -1.84 +v -118.546 114.25 -4.6 +v -118.546 114.25 0.917 +v -118.59 114.256 0.917 +v -118.5 114.25 0.917 +v -118.59 114.256 -4.6 +v -118.637 114.263 0.917 +v -118.637 114.263 -4.6 +v -118.68 114.274 0.917 +v -118.68 114.274 -4.6 +v -118.725 114.287 0.917 +v -118.725 114.287 -4.6 +v -118.768 114.303 0.917 +v -118.768 114.303 -4.6 +v -118.81 114.322 0.917 +v -118.81 114.322 -4.6 +v -103.5 114.25 0.917 +v -103.5 114.25 -1.84 +v -103.5 114.25 -4.6 +v -103.454 114.25 0.917 +v -103.454 114.25 -4.6 +v -103.41 114.256 -4.6 +v -103.41 114.256 0.917 +v -103.363 114.263 -4.6 +v -103.363 114.263 0.917 +v -103.32 114.274 -4.6 +v -103.32 114.274 0.917 +v -103.275 114.287 -4.6 +v -103.275 114.287 0.917 +v -103.232 114.303 -4.6 +v -103.232 114.303 0.917 +v -103.19 114.322 -4.6 +v -103.19 114.322 0.917 +v -101.674 115.6 -1.84 +v -101.5 115.297 -1.84 +v -101.674 115.6 0.167 +v -101.5 115.297 0.167 +v -101.675 115.6 -3.887 +v -102.324 115.225 -4.6 +v -101.674 115.6 -3.85 +v -103.325 114.647 -4.6 +v -103.325 114.647 -1.84 +v -101.677 115.598 -3.924 +v -101.68 115.596 -3.96 +v -101.687 115.593 -3.996 +v -101.694 115.59 -4.032 +v -101.702 115.584 -4.068 +v -101.712 115.578 -4.103 +v -101.724 115.57 -4.137 +v -101.737 115.564 -4.17 +v -101.75 115.556 -4.204 +v -101.767 115.547 -4.236 +v -101.784 115.537 -4.267 +v -101.802 115.526 -4.297 +v -101.822 115.515 -4.326 +v -101.842 115.503 -4.354 +v -101.864 115.49 -4.38 +v -101.888 115.477 -4.406 +v -101.912 115.463 -4.43 +v -101.937 115.448 -4.452 +v -101.963 115.433 -4.474 +v -101.99 115.418 -4.493 +v -102.018 115.402 -4.51 +v -102.046 115.385 -4.528 +v -102.075 115.368 -4.543 +v -102.105 115.35 -4.556 +v -102.135 115.334 -4.568 +v -102.166 115.316 -4.578 +v -102.197 115.298 -4.586 +v -102.228 115.28 -4.592 +v -102.26 115.262 -4.596 +v -102.292 115.243 -4.6 +v -103.325 114.647 0.917 +v -101.674 115.6 0.167 +v -101.674 115.6 -1.84 +v -102.324 115.225 0.917 +v -101.675 115.6 0.204 +v -102.292 115.243 0.916 +v -102.26 115.262 0.914 +v -102.228 115.28 0.91 +v -102.197 115.298 0.903 +v -102.166 115.316 0.895 +v -102.135 115.334 0.885 +v -102.105 115.35 0.873 +v -102.075 115.368 0.86 +v -102.046 115.385 0.845 +v -102.018 115.402 0.83 +v -101.99 115.418 0.81 +v -101.963 115.433 0.79 +v -101.937 115.448 0.77 +v -101.912 115.463 0.747 +v -101.888 115.477 0.723 +v -101.864 115.49 0.698 +v -101.842 115.503 0.67 +v -101.822 115.515 0.643 +v -101.802 115.526 0.614 +v -101.784 115.537 0.584 +v -101.767 115.547 0.553 +v -101.75 115.556 0.52 +v -101.737 115.564 0.488 +v -101.724 115.57 0.454 +v -101.712 115.578 0.42 +v -101.702 115.584 0.385 +v -101.694 115.59 0.35 +v -101.687 115.593 0.314 +v -101.68 115.596 0.277 +v -101.677 115.598 0.24 +v -103.5 114.6 0.917 +v -103.477 114.6 0.917 +v -103.5 114.6 -1.84 +v -103.477 114.6 -4.6 +v -103.5 114.6 -4.6 +v -103.454 114.603 0.917 +v -103.454 114.603 -4.6 +v -103.432 114.607 0.917 +v -103.432 114.607 -4.6 +v -103.41 114.612 0.917 +v -103.41 114.612 -4.6 +v -103.388 114.62 0.917 +v -103.388 114.62 -4.6 +v -103.366 114.627 0.917 +v -103.366 114.627 -4.6 +v -103.345 114.636 0.917 +v -103.345 114.636 -4.6 +v -118.5 114.6 -4.6 +v -118.5 114.6 -1.84 +v -118.5 114.6 0.917 +v -118.523 114.6 0.917 +v -118.523 114.6 -4.6 +v -118.546 114.603 -4.6 +v -118.546 114.603 0.917 +v -118.568 114.607 -4.6 +v -118.568 114.607 0.917 +v -118.59 114.612 -4.6 +v -118.59 114.612 0.917 +v -118.613 114.62 -4.6 +v -118.613 114.62 0.917 +v -118.634 114.627 -4.6 +v -118.634 114.627 0.917 +v -118.655 114.636 -4.6 +v -118.655 114.636 0.917 +v -104.25 106.41 1.21 +v -111 106.41 1.21 +v -104.25 106.25 0.9 +v -111 106.25 0.9 +v -117.75 106.41 1.21 +v -117.75 106.25 0.9 +v -102.324 115.225 0.917 +v -102.15 114.922 0.917 +v -102.292 115.243 0.916 +v -102.117 114.94 0.916 +v -102.085 114.96 0.914 +v -102.26 115.262 0.914 +v -102.053 114.977 0.91 +v -102.228 115.28 0.91 +v -102.022 114.995 0.903 +v -102.197 115.298 0.903 +v -101.99 115.013 0.895 +v -102.166 115.316 0.895 +v -102.135 115.334 0.885 +v -101.96 115.03 0.885 +v -101.93 115.048 0.873 +v -102.105 115.35 0.873 +v -101.9 115.065 0.86 +v -102.075 115.368 0.86 +v -101.87 115.082 0.845 +v -102.046 115.385 0.845 +v -101.843 115.1 0.83 +v -102.018 115.402 0.83 +v -101.99 115.418 0.81 +v -101.815 115.115 0.81 +v -101.788 115.13 0.79 +v -101.963 115.433 0.79 +v -101.762 115.145 0.77 +v -101.937 115.448 0.77 +v -101.737 115.16 0.747 +v -101.912 115.463 0.747 +v -101.713 115.174 0.723 +v -101.888 115.477 0.723 +v -101.864 115.49 0.698 +v -101.69 115.187 0.698 +v -101.842 115.503 0.67 +v -101.667 115.2 0.67 +v -101.647 115.212 0.643 +v -101.822 115.515 0.643 +v -101.627 115.223 0.614 +v -101.802 115.526 0.614 +v -101.61 115.234 0.584 +v -101.784 115.537 0.584 +v -101.592 115.244 0.553 +v -101.767 115.547 0.553 +v -101.75 115.556 0.52 +v -101.576 115.253 0.52 +v -101.562 115.26 0.488 +v -101.737 115.564 0.488 +v -101.55 115.268 0.454 +v -101.724 115.57 0.454 +v -101.537 115.275 0.42 +v -101.712 115.578 0.42 +v -101.527 115.28 0.385 +v -101.702 115.584 0.385 +v -101.694 115.59 0.35 +v -101.52 115.286 0.35 +v -101.512 115.29 0.314 +v -101.687 115.593 0.314 +v -101.506 115.293 0.277 +v -101.68 115.596 0.277 +v -101.502 115.295 0.24 +v -101.677 115.598 0.24 +v -101.5 115.296 0.204 +v -101.675 115.6 0.204 +v -120.325 115.6 0.204 +v -120.5 115.296 0.204 +v -120.498 115.295 0.24 +v -120.323 115.598 0.24 +v -120.494 115.293 0.277 +v -120.32 115.596 0.277 +v -120.488 115.29 0.314 +v -120.313 115.593 0.314 +v -120.48 115.286 0.35 +v -120.306 115.59 0.35 +v -120.298 115.584 0.385 +v -120.473 115.28 0.385 +v -120.463 115.275 0.42 +v -120.288 115.578 0.42 +v -120.45 115.268 0.454 +v -120.276 115.57 0.454 +v -120.438 115.26 0.488 +v -120.263 115.564 0.488 +v -120.424 115.253 0.52 +v -120.25 115.556 0.52 +v -120.233 115.547 0.553 +v -120.408 115.244 0.553 +v -120.39 115.234 0.584 +v -120.216 115.537 0.584 +v -120.373 115.223 0.614 +v -120.198 115.526 0.614 +v -120.353 115.212 0.643 +v -120.178 115.515 0.643 +v -120.333 115.2 0.67 +v -120.158 115.503 0.67 +v -120.136 115.49 0.698 +v -120.31 115.187 0.698 +v -120.113 115.477 0.723 +v -120.288 115.174 0.723 +v -120.263 115.16 0.747 +v -120.088 115.463 0.747 +v -120.238 115.145 0.77 +v -120.063 115.448 0.77 +v -120.212 115.13 0.79 +v -120.037 115.433 0.79 +v -120.185 115.115 0.81 +v -120.01 115.418 0.81 +v -119.983 115.402 0.83 +v -120.158 115.1 0.83 +v -120.13 115.082 0.845 +v -119.954 115.385 0.845 +v -120.1 115.065 0.86 +v -119.925 115.368 0.86 +v -120.07 115.048 0.873 +v -119.895 115.35 0.873 +v -120.04 115.03 0.885 +v -119.865 115.334 0.885 +v -119.834 115.316 0.895 +v -120.01 115.013 0.895 +v -119.978 114.995 0.903 +v -119.803 115.298 0.903 +v -119.947 114.977 0.91 +v -119.772 115.28 0.91 +v -119.915 114.96 0.914 +v -119.74 115.262 0.914 +v -119.883 114.94 0.916 +v -119.708 115.243 0.916 +v -119.676 115.225 0.917 +v -119.85 114.922 0.917 +v -103.5 106.915 0.554 +v -103.5 107.077 0.865 +v -103.5 106.883 0.57 +v -103.5 107.044 0.88 +v -103.504 107.012 0.898 +v -103.504 106.85 0.588 +v -103.508 106.98 0.915 +v -103.508 106.818 0.605 +v -103.514 106.947 0.932 +v -103.514 106.786 0.622 +v -103.522 106.915 0.95 +v -103.522 106.754 0.638 +v -103.532 106.722 0.654 +v -103.532 106.884 0.965 +v -103.544 106.853 0.98 +v -103.544 106.69 0.67 +v -103.557 106.822 0.997 +v -103.557 106.66 0.686 +v -103.572 106.792 1.012 +v -103.572 106.63 0.702 +v -103.59 106.763 1.028 +v -103.59 106.602 0.717 +v -103.607 106.573 0.732 +v -103.607 106.735 1.042 +v -103.626 106.707 1.057 +v -103.626 106.546 0.746 +v -103.648 106.68 1.07 +v -103.648 106.52 0.76 +v -103.67 106.655 1.084 +v -103.67 106.493 0.774 +v -103.694 106.63 1.097 +v -103.694 106.47 0.786 +v -103.72 106.445 0.8 +v -103.72 106.606 1.11 +v -103.746 106.422 0.81 +v -103.746 106.584 1.12 +v -103.774 106.563 1.132 +v -103.774 106.4 0.82 +v -103.803 106.542 1.142 +v -103.803 106.38 0.832 +v -103.833 106.524 1.152 +v -103.833 106.362 0.842 +v -103.864 106.506 1.16 +v -103.864 106.345 0.85 +v -103.896 106.33 0.86 +v -103.896 106.49 1.17 +v -103.93 106.475 1.177 +v -103.93 106.314 0.867 +v -103.963 106.462 1.184 +v -103.963 106.3 0.874 +v -103.997 106.45 1.19 +v -103.997 106.29 0.88 +v -104.032 106.44 1.196 +v -104.032 106.28 0.885 +v -104.068 106.27 0.89 +v -104.068 106.43 1.2 +v -104.104 106.424 1.204 +v -104.104 106.263 0.893 +v -104.14 106.42 1.207 +v -104.14 106.257 0.896 +v -104.176 106.415 1.21 +v -104.176 106.253 0.898 +v -104.213 106.412 1.21 +v -104.213 106.25 0.9 +v -118.5 113.682 1.582 +v -103.5 113.682 1.582 +v -118.5 113.722 1.594 +v -103.5 113.722 1.594 +v -103.5 113.762 1.603 +v -118.5 113.762 1.603 +v -103.5 113.803 1.61 +v -118.5 113.803 1.61 +v -103.5 113.844 1.615 +v -118.5 113.844 1.615 +v -103.5 113.885 1.617 +v -118.5 113.885 1.617 +v -103.5 113.926 1.617 +v -118.5 113.926 1.617 +v -103.5 113.967 1.614 +v -118.5 113.967 1.614 +v -103.5 114.008 1.61 +v -118.5 114.008 1.61 +v -103.5 114.05 1.6 +v -118.5 114.05 1.6 +v -103.5 114.09 1.59 +v -118.5 114.09 1.59 +v -103.5 114.128 1.58 +v -118.5 114.128 1.58 +v -103.5 114.167 1.564 +v -118.5 114.167 1.564 +v -103.5 114.205 1.547 +v -118.5 114.205 1.547 +v -103.5 114.24 1.528 +v -118.5 114.24 1.528 +v -103.5 114.277 1.507 +v -118.5 114.277 1.507 +v -103.5 114.31 1.484 +v -118.5 114.31 1.484 +v -103.5 114.344 1.46 +v -118.5 114.344 1.46 +v -103.5 114.375 1.432 +v -118.5 114.375 1.432 +v -103.5 114.404 1.403 +v -118.5 114.404 1.403 +v -103.5 114.432 1.372 +v -118.5 114.432 1.372 +v -103.5 114.458 1.34 +v -118.5 114.458 1.34 +v -103.5 114.482 1.306 +v -118.5 114.482 1.306 +v -103.5 114.504 1.272 +v -118.5 114.504 1.272 +v -103.5 114.524 1.235 +v -118.5 114.524 1.235 +v -103.5 114.54 1.198 +v -118.5 114.54 1.198 +v -103.5 114.557 1.16 +v -118.5 114.557 1.16 +v -103.5 114.57 1.12 +v -118.5 114.57 1.12 +v -103.5 114.58 1.08 +v -118.5 114.58 1.08 +v -103.5 114.59 1.04 +v -118.5 114.59 1.04 +v -103.5 114.595 1 +v -118.5 114.595 1 +v -103.5 114.6 0.958 +v -118.5 114.6 0.958 +v -103.5 108.92 0.024 +v -111 108.92 0.024 +v -118.5 108.92 0.024 +v -103.5 108.65 0.046 +v -103.5 108.666 0.04 +v -111 108.65 0.046 +v -118.5 108.666 0.04 +v -118.5 108.65 0.046 +v -118.5 108.682 0.032 +v -103.5 108.682 0.032 +v -103.5 108.698 0.026 +v -118.5 108.698 0.026 +v -103.5 108.715 0.02 +v -118.5 108.715 0.02 +v -103.5 108.732 0.016 +v -118.5 108.732 0.016 +v -103.5 108.75 0.013 +v -118.5 108.75 0.013 +v -118.5 108.766 0.01 +v -103.5 108.766 0.01 +v -103.5 108.783 0.008 +v -118.5 108.783 0.008 +v -103.5 108.8 0.007 +v -118.5 108.8 0.007 +v -118.5 108.818 0.007 +v -103.5 108.818 0.007 +v -103.5 108.836 0.008 +v -118.5 108.836 0.008 +v -118.5 108.853 0.01 +v -103.5 108.853 0.01 +v -103.5 108.87 0.012 +v -118.5 108.87 0.012 +v -103.5 108.887 0.015 +v -118.5 108.887 0.015 +v -103.5 108.904 0.02 +v -118.5 108.904 0.02 +v -103.5 107.077 0.865 +v -104.25 106.41 1.21 +v -111 106.41 1.21 +v -117.75 106.41 1.21 +v -118.5 107.077 0.865 +v -118.5 107.044 0.88 +v -118.496 107.012 0.898 +v -118.492 106.98 0.915 +v -118.486 106.947 0.932 +v -118.478 106.915 0.95 +v -118.468 106.884 0.965 +v -118.456 106.853 0.98 +v -118.443 106.822 0.997 +v -118.428 106.792 1.012 +v -118.41 106.763 1.028 +v -118.393 106.735 1.042 +v -118.374 106.707 1.057 +v -118.352 106.68 1.07 +v -118.33 106.655 1.084 +v -118.306 106.63 1.097 +v -118.28 106.606 1.11 +v -118.254 106.584 1.12 +v -118.226 106.563 1.132 +v -118.197 106.542 1.142 +v -118.167 106.524 1.152 +v -118.136 106.506 1.16 +v -118.104 106.49 1.17 +v -118.07 106.475 1.177 +v -118.037 106.462 1.184 +v -118.003 106.45 1.19 +v -117.968 106.44 1.196 +v -117.932 106.43 1.2 +v -117.896 106.424 1.204 +v -117.86 106.42 1.207 +v -117.824 106.415 1.21 +v -117.787 106.412 1.21 +v -104.213 106.412 1.21 +v -104.176 106.415 1.21 +v -104.14 106.42 1.207 +v -104.104 106.424 1.204 +v -104.068 106.43 1.2 +v -104.032 106.44 1.196 +v -103.997 106.45 1.19 +v -103.963 106.462 1.184 +v -103.93 106.475 1.177 +v -103.896 106.49 1.17 +v -103.864 106.506 1.16 +v -103.833 106.524 1.152 +v -103.803 106.542 1.142 +v -103.774 106.563 1.132 +v -103.746 106.584 1.12 +v -103.72 106.606 1.11 +v -103.694 106.63 1.097 +v -103.67 106.655 1.084 +v -103.648 106.68 1.07 +v -103.626 106.707 1.057 +v -103.607 106.735 1.042 +v -103.59 106.763 1.028 +v -103.572 106.792 1.012 +v -103.557 106.822 0.997 +v -103.544 106.853 0.98 +v -103.532 106.884 0.965 +v -103.522 106.915 0.95 +v -103.514 106.947 0.932 +v -103.508 106.98 0.915 +v -103.504 107.012 0.898 +v -103.5 107.044 0.88 +v -117.787 106.25 0.9 +v -117.787 106.412 1.21 +v -117.824 106.415 1.21 +v -117.824 106.253 0.898 +v -117.86 106.42 1.207 +v -117.86 106.257 0.896 +v -117.896 106.424 1.204 +v -117.896 106.263 0.893 +v -117.932 106.43 1.2 +v -117.932 106.27 0.89 +v -117.968 106.28 0.885 +v -117.968 106.44 1.196 +v -118.003 106.45 1.19 +v -118.003 106.29 0.88 +v -118.037 106.462 1.184 +v -118.037 106.3 0.874 +v -118.07 106.475 1.177 +v -118.07 106.314 0.867 +v -118.104 106.49 1.17 +v -118.104 106.33 0.86 +v -118.136 106.345 0.85 +v -118.136 106.506 1.16 +v -118.167 106.524 1.152 +v -118.167 106.362 0.842 +v -118.197 106.542 1.142 +v -118.197 106.38 0.832 +v -118.226 106.563 1.132 +v -118.226 106.4 0.82 +v -118.254 106.584 1.12 +v -118.254 106.422 0.81 +v -118.28 106.445 0.8 +v -118.28 106.606 1.11 +v -118.306 106.47 0.786 +v -118.306 106.63 1.097 +v -118.33 106.655 1.084 +v -118.33 106.493 0.774 +v -118.352 106.68 1.07 +v -118.352 106.52 0.76 +v -118.374 106.707 1.057 +v -118.374 106.546 0.746 +v -118.393 106.735 1.042 +v -118.393 106.573 0.732 +v -118.41 106.602 0.717 +v -118.41 106.763 1.028 +v -118.428 106.792 1.012 +v -118.428 106.63 0.702 +v -118.443 106.822 0.997 +v -118.443 106.66 0.686 +v -118.456 106.853 0.98 +v -118.456 106.69 0.67 +v -118.468 106.884 0.965 +v -118.468 106.722 0.654 +v -118.478 106.754 0.638 +v -118.478 106.915 0.95 +v -118.486 106.947 0.932 +v -118.486 106.786 0.622 +v -118.492 106.98 0.915 +v -118.492 106.818 0.605 +v -118.496 107.012 0.898 +v -118.496 106.85 0.588 +v -118.5 107.044 0.88 +v -118.5 106.883 0.57 +v -118.5 106.915 0.554 +v -118.5 107.077 0.865 +v -118.5 106.883 0.57 +v -118.5 106.915 0.554 +v -117.75 106.25 0.9 +v -118.5 108.49 -0.264 +v -111 106.25 0.9 +v -103.5 108.49 -0.264 +v -104.25 106.25 0.9 +v -103.5 106.915 0.554 +v -103.5 106.883 0.57 +v -117.787 106.25 0.9 +v -117.824 106.253 0.898 +v -117.86 106.257 0.896 +v -117.896 106.263 0.893 +v -117.932 106.27 0.89 +v -117.968 106.28 0.885 +v -118.003 106.29 0.88 +v -118.037 106.3 0.874 +v -118.07 106.314 0.867 +v -118.104 106.33 0.86 +v -118.136 106.345 0.85 +v -118.167 106.362 0.842 +v -118.197 106.38 0.832 +v -118.226 106.4 0.82 +v -118.254 106.422 0.81 +v -118.28 106.445 0.8 +v -118.306 106.47 0.786 +v -118.33 106.493 0.774 +v -118.352 106.52 0.76 +v -118.374 106.546 0.746 +v -118.393 106.573 0.732 +v -118.41 106.602 0.717 +v -118.428 106.63 0.702 +v -118.443 106.66 0.686 +v -118.456 106.69 0.67 +v -118.468 106.722 0.654 +v -118.478 106.754 0.638 +v -118.486 106.786 0.622 +v -118.492 106.818 0.605 +v -118.496 106.85 0.588 +v -103.504 106.85 0.588 +v -103.508 106.818 0.605 +v -103.514 106.786 0.622 +v -103.522 106.754 0.638 +v -103.532 106.722 0.654 +v -103.544 106.69 0.67 +v -103.557 106.66 0.686 +v -103.572 106.63 0.702 +v -103.59 106.602 0.717 +v -103.607 106.573 0.732 +v -103.626 106.546 0.746 +v -103.648 106.52 0.76 +v -103.67 106.493 0.774 +v -103.694 106.47 0.786 +v -103.72 106.445 0.8 +v -103.746 106.422 0.81 +v -103.774 106.4 0.82 +v -103.803 106.38 0.832 +v -103.833 106.362 0.842 +v -103.864 106.345 0.85 +v -103.896 106.33 0.86 +v -103.93 106.314 0.867 +v -103.963 106.3 0.874 +v -103.997 106.29 0.88 +v -104.032 106.28 0.885 +v -104.068 106.27 0.89 +v -104.104 106.263 0.893 +v -104.14 106.257 0.896 +v -104.176 106.253 0.898 +v -104.213 106.25 0.9 +v -118.5 108.52 -0.28 +v -103.5 108.52 -0.28 +v -103.5 108.552 -0.293 +v -118.5 108.552 -0.293 +v -118.5 108.585 -0.305 +v -103.5 108.585 -0.305 +v -118.5 108.618 -0.316 +v -103.5 108.618 -0.316 +v -118.5 108.652 -0.325 +v -103.5 108.652 -0.325 +v -118.5 108.686 -0.332 +v -103.5 108.686 -0.332 +v -103.5 108.72 -0.337 +v -118.5 108.72 -0.337 +v -118.5 108.755 -0.34 +v -103.5 108.755 -0.34 +v -118.5 108.79 -0.343 +v -103.5 108.79 -0.343 +v -103.5 108.824 -0.343 +v -118.5 108.824 -0.343 +v -118.5 108.86 -0.342 +v -103.5 108.86 -0.342 +v -103.5 108.894 -0.338 +v -118.5 108.894 -0.338 +v -118.5 108.928 -0.333 +v -103.5 108.928 -0.333 +v -118.5 108.962 -0.327 +v -103.5 108.962 -0.327 +v -118.5 108.996 -0.318 +v -103.5 108.996 -0.318 +v -118.5 109.03 -0.308 +v -103.5 109.03 -0.308 +v -103.325 114.647 0.917 +v -103.15 114.344 0.917 +v -103.345 114.636 0.917 +v -103.19 114.322 0.917 +v -103.366 114.627 0.917 +v -103.232 114.303 0.917 +v -103.388 114.62 0.917 +v -103.275 114.287 0.917 +v -103.41 114.612 0.917 +v -103.32 114.274 0.917 +v -103.432 114.607 0.917 +v -103.363 114.263 0.917 +v -103.454 114.603 0.917 +v -103.41 114.256 0.917 +v -103.477 114.6 0.917 +v -103.454 114.25 0.917 +v -103.5 114.6 0.917 +v -103.5 114.25 0.917 +v -118.5 114.25 0.917 +v -118.5 114.6 0.917 +v -118.546 114.25 0.917 +v -118.523 114.6 0.917 +v -118.546 114.603 0.917 +v -118.59 114.256 0.917 +v -118.568 114.607 0.917 +v -118.637 114.263 0.917 +v -118.59 114.612 0.917 +v -118.68 114.274 0.917 +v -118.613 114.62 0.917 +v -118.725 114.287 0.917 +v -118.634 114.627 0.917 +v -118.768 114.303 0.917 +v -118.655 114.636 0.917 +v -118.81 114.322 0.917 +v -118.85 114.344 0.917 +v -118.675 114.647 0.917 +v -118.5 113.79 1.25 +v -103.5 113.79 1.25 +v -103.5 113.892 1.267 +v -103.5 113.885 1.617 +v -103.5 113.872 1.266 +v -103.5 113.844 1.615 +v -103.5 113.85 1.264 +v -103.5 113.803 1.61 +v -103.5 113.83 1.26 +v -103.5 113.762 1.603 +v -103.5 113.81 1.256 +v -103.5 113.722 1.594 +v -103.5 113.79 1.25 +v -103.5 113.682 1.582 +v -103.5 109.03 -0.308 +v -103.5 108.92 0.024 +v -103.5 108.996 -0.318 +v -103.5 108.904 0.02 +v -103.5 108.962 -0.327 +v -103.5 108.887 0.015 +v -103.5 108.928 -0.333 +v -103.5 108.87 0.012 +v -103.5 108.894 -0.338 +v -103.5 108.853 0.01 +v -103.5 108.86 -0.342 +v -103.5 108.836 0.008 +v -103.5 108.824 -0.343 +v -103.5 108.818 0.007 +v -103.5 108.79 -0.343 +v -103.5 108.8 0.007 +v -103.5 108.783 0.008 +v -103.5 113.913 1.267 +v -103.5 113.926 1.617 +v -103.5 113.934 1.266 +v -103.5 113.967 1.614 +v -103.5 113.954 1.263 +v -103.5 114.008 1.61 +v -103.5 113.974 1.26 +v -103.5 114.05 1.6 +v -103.5 113.995 1.254 +v -103.5 114.09 1.59 +v -103.5 114.014 1.248 +v -103.5 114.128 1.58 +v -103.5 114.034 1.24 +v -103.5 114.167 1.564 +v -103.5 114.052 1.232 +v -103.5 114.205 1.547 +v -103.5 114.07 1.223 +v -103.5 114.24 1.528 +v -103.5 114.088 1.212 +v -103.5 114.277 1.507 +v -103.5 114.105 1.2 +v -103.5 114.31 1.484 +v -103.5 114.122 1.188 +v -103.5 114.344 1.46 +v -103.5 114.137 1.174 +v -103.5 114.375 1.432 +v -103.5 114.152 1.16 +v -103.5 114.404 1.403 +v -103.5 114.166 1.145 +v -103.5 114.432 1.372 +v -103.5 114.18 1.13 +v -103.5 114.458 1.34 +v -103.5 114.19 1.112 +v -103.5 114.482 1.306 +v -103.5 114.202 1.094 +v -103.5 114.504 1.272 +v -103.5 114.212 1.076 +v -103.5 114.524 1.235 +v -103.5 114.22 1.058 +v -103.5 114.54 1.198 +v -103.5 114.228 1.038 +v -103.5 114.557 1.16 +v -103.5 114.235 1.02 +v -103.5 114.57 1.12 +v -103.5 114.24 1 +v -103.5 114.58 1.08 +v -103.5 114.245 0.98 +v -103.5 114.59 1.04 +v -103.5 114.248 0.958 +v -103.5 114.595 1 +v -103.5 114.25 0.938 +v -103.5 114.6 0.958 +v -103.5 114.25 0.917 +v -103.5 114.6 0.917 +v -103.5 108.755 -0.34 +v -103.5 108.766 0.01 +v -103.5 108.72 -0.337 +v -103.5 108.75 0.013 +v -103.5 108.686 -0.332 +v -103.5 108.732 0.016 +v -103.5 108.652 -0.325 +v -103.5 108.715 0.02 +v -103.5 108.618 -0.316 +v -103.5 108.698 0.026 +v -103.5 108.585 -0.305 +v -103.5 108.682 0.032 +v -103.5 108.552 -0.293 +v -103.5 108.666 0.04 +v -103.5 108.52 -0.28 +v -103.5 108.65 0.046 +v -103.5 108.49 -0.264 +v -118.5 114.6 0.917 +v -118.5 114.25 0.917 +v -118.5 114.6 0.958 +v -118.5 114.25 0.938 +v -118.5 114.248 0.958 +v -118.5 114.595 1 +v -118.5 114.245 0.98 +v -118.5 114.59 1.04 +v -118.5 114.24 1 +v -118.5 114.58 1.08 +v -118.5 114.235 1.02 +v -118.5 114.57 1.12 +v -118.5 114.228 1.038 +v -118.5 114.557 1.16 +v -118.5 114.22 1.058 +v -118.5 114.54 1.198 +v -118.5 114.212 1.076 +v -118.5 114.524 1.235 +v -118.5 114.202 1.094 +v -118.5 114.504 1.272 +v -118.5 114.19 1.112 +v -118.5 114.482 1.306 +v -118.5 114.18 1.13 +v -118.5 114.458 1.34 +v -118.5 114.166 1.145 +v -118.5 114.432 1.372 +v -118.5 114.152 1.16 +v -118.5 114.404 1.403 +v -118.5 114.137 1.174 +v -118.5 114.375 1.432 +v -118.5 114.122 1.188 +v -118.5 114.344 1.46 +v -118.5 114.105 1.2 +v -118.5 114.31 1.484 +v -118.5 114.088 1.212 +v -118.5 114.277 1.507 +v -118.5 114.07 1.223 +v -118.5 114.24 1.528 +v -118.5 114.052 1.232 +v -118.5 114.205 1.547 +v -118.5 114.034 1.24 +v -118.5 114.167 1.564 +v -118.5 114.014 1.248 +v -118.5 114.128 1.58 +v -118.5 113.995 1.254 +v -118.5 114.09 1.59 +v -118.5 113.974 1.26 +v -118.5 114.05 1.6 +v -118.5 113.954 1.263 +v -118.5 114.008 1.61 +v -118.5 113.934 1.266 +v -118.5 113.967 1.614 +v -118.5 113.913 1.267 +v -118.5 113.892 1.267 +v -118.5 113.844 1.615 +v -118.5 113.872 1.266 +v -118.5 113.803 1.61 +v -118.5 113.85 1.264 +v -118.5 113.762 1.603 +v -118.5 113.83 1.26 +v -118.5 113.722 1.594 +v -118.5 113.81 1.256 +v -118.5 113.682 1.582 +v -118.5 113.79 1.25 +v -118.5 108.92 0.024 +v -118.5 109.03 -0.308 +v -118.5 108.996 -0.318 +v -118.5 108.904 0.02 +v -118.5 108.962 -0.327 +v -118.5 108.887 0.015 +v -118.5 108.928 -0.333 +v -118.5 108.87 0.012 +v -118.5 108.894 -0.338 +v -118.5 108.853 0.01 +v -118.5 108.86 -0.342 +v -118.5 108.836 0.008 +v -118.5 108.824 -0.343 +v -118.5 108.818 0.007 +v -118.5 108.79 -0.343 +v -118.5 108.8 0.007 +v -118.5 108.755 -0.34 +v -118.5 108.783 0.008 +v -118.5 108.72 -0.337 +v -118.5 108.766 0.01 +v -118.5 108.686 -0.332 +v -118.5 108.75 0.013 +v -118.5 108.652 -0.325 +v -118.5 108.732 0.016 +v -118.5 108.618 -0.316 +v -118.5 108.715 0.02 +v -118.5 108.585 -0.305 +v -118.5 108.698 0.026 +v -118.5 108.552 -0.293 +v -118.5 108.682 0.032 +v -118.5 108.52 -0.28 +v -118.5 108.666 0.04 +v -118.5 108.49 -0.264 +v -118.5 108.65 0.046 +v -118.5 113.885 1.617 +v -118.5 113.926 1.617 +v -103.5 113.81 1.256 +v -118.5 113.81 1.256 +v -118.5 113.83 1.26 +v -103.5 113.83 1.26 +v -118.5 113.85 1.264 +v -103.5 113.85 1.264 +v -118.5 113.872 1.266 +v -103.5 113.872 1.266 +v -118.5 113.892 1.267 +v -103.5 113.892 1.267 +v -118.5 113.913 1.267 +v -103.5 113.913 1.267 +v -118.5 113.934 1.266 +v -103.5 113.934 1.266 +v -118.5 113.954 1.263 +v -103.5 113.954 1.263 +v -118.5 113.974 1.26 +v -103.5 113.974 1.26 +v -118.5 113.995 1.254 +v -103.5 113.995 1.254 +v -118.5 114.014 1.248 +v -103.5 114.014 1.248 +v -118.5 114.034 1.24 +v -103.5 114.034 1.24 +v -118.5 114.052 1.232 +v -103.5 114.052 1.232 +v -118.5 114.07 1.223 +v -103.5 114.07 1.223 +v -118.5 114.088 1.212 +v -103.5 114.088 1.212 +v -118.5 114.105 1.2 +v -103.5 114.105 1.2 +v -118.5 114.122 1.188 +v -103.5 114.122 1.188 +v -118.5 114.137 1.174 +v -103.5 114.137 1.174 +v -118.5 114.152 1.16 +v -103.5 114.152 1.16 +v -118.5 114.166 1.145 +v -103.5 114.166 1.145 +v -118.5 114.18 1.13 +v -103.5 114.18 1.13 +v -118.5 114.19 1.112 +v -103.5 114.19 1.112 +v -118.5 114.202 1.094 +v -103.5 114.202 1.094 +v -118.5 114.212 1.076 +v -103.5 114.212 1.076 +v -118.5 114.22 1.058 +v -103.5 114.22 1.058 +v -118.5 114.228 1.038 +v -103.5 114.228 1.038 +v -118.5 114.235 1.02 +v -103.5 114.235 1.02 +v -118.5 114.24 1 +v -103.5 114.24 1 +v -118.5 114.245 0.98 +v -103.5 114.245 0.98 +v -118.5 114.248 0.958 +v -103.5 114.248 0.958 +v -118.5 114.25 0.938 +v -103.5 114.25 0.938 +v 102.324 115.225 -4.6 +v 102.15 114.922 -4.6 +v 102.292 115.243 -4.6 +v 102.117 114.94 -4.6 +v 102.085 114.96 -4.596 +v 102.26 115.262 -4.596 +v 102.053 114.977 -4.592 +v 102.228 115.28 -4.592 +v 102.022 114.995 -4.586 +v 102.197 115.298 -4.586 +v 101.99 115.013 -4.578 +v 102.166 115.316 -4.578 +v 102.135 115.334 -4.568 +v 101.96 115.03 -4.568 +v 101.93 115.048 -4.556 +v 102.105 115.35 -4.556 +v 101.9 115.065 -4.543 +v 102.075 115.37 -4.543 +v 101.87 115.082 -4.528 +v 102.046 115.385 -4.528 +v 101.842 115.1 -4.51 +v 102.017 115.402 -4.51 +v 101.99 115.418 -4.493 +v 101.815 115.115 -4.493 +v 101.788 115.13 -4.474 +v 101.963 115.433 -4.474 +v 101.762 115.145 -4.452 +v 101.937 115.448 -4.452 +v 101.737 115.16 -4.43 +v 101.912 115.463 -4.43 +v 101.712 115.174 -4.406 +v 101.887 115.477 -4.406 +v 101.864 115.49 -4.38 +v 101.69 115.187 -4.38 +v 101.842 115.503 -4.354 +v 101.667 115.2 -4.354 +v 101.647 115.212 -4.326 +v 101.822 115.515 -4.326 +v 101.627 115.223 -4.297 +v 101.802 115.526 -4.297 +v 101.61 115.234 -4.267 +v 101.784 115.537 -4.267 +v 101.592 115.244 -4.236 +v 101.767 115.547 -4.236 +v 101.75 115.556 -4.204 +v 101.576 115.253 -4.204 +v 101.562 115.26 -4.17 +v 101.737 115.564 -4.17 +v 101.55 115.268 -4.137 +v 101.724 115.57 -4.137 +v 101.537 115.275 -4.103 +v 101.712 115.578 -4.103 +v 101.527 115.28 -4.068 +v 101.702 115.584 -4.068 +v 101.694 115.59 -4.032 +v 101.52 115.286 -4.032 +v 101.512 115.29 -3.996 +v 101.687 115.593 -3.996 +v 101.506 115.293 -3.96 +v 101.68 115.596 -3.96 +v 101.502 115.295 -3.924 +v 101.677 115.598 -3.924 +v 101.5 115.296 -3.887 +v 101.675 115.6 -3.887 +v 101.674 115.6 -3.85 +v 101.5 115.297 -3.85 +v 119.85 114.922 -4.6 +v 119.676 115.225 -4.6 +v 119.883 114.94 -4.6 +v 119.708 115.243 -4.6 +v 119.74 115.262 -4.596 +v 119.915 114.96 -4.596 +v 119.772 115.28 -4.592 +v 119.947 114.977 -4.592 +v 119.803 115.298 -4.586 +v 119.978 114.995 -4.586 +v 119.834 115.316 -4.578 +v 120.01 115.013 -4.578 +v 120.04 115.03 -4.568 +v 119.865 115.334 -4.568 +v 119.895 115.35 -4.556 +v 120.07 115.048 -4.556 +v 119.925 115.37 -4.543 +v 120.1 115.065 -4.543 +v 119.954 115.385 -4.528 +v 120.13 115.082 -4.528 +v 119.982 115.402 -4.51 +v 120.157 115.1 -4.51 +v 120.185 115.115 -4.493 +v 120.01 115.418 -4.493 +v 120.037 115.433 -4.474 +v 120.212 115.13 -4.474 +v 120.063 115.448 -4.452 +v 120.238 115.145 -4.452 +v 120.088 115.463 -4.43 +v 120.263 115.16 -4.43 +v 120.112 115.477 -4.406 +v 120.287 115.174 -4.406 +v 120.31 115.187 -4.38 +v 120.136 115.49 -4.38 +v 120.333 115.2 -4.354 +v 120.158 115.503 -4.354 +v 120.178 115.515 -4.326 +v 120.353 115.212 -4.326 +v 120.198 115.526 -4.297 +v 120.373 115.223 -4.297 +v 120.216 115.537 -4.267 +v 120.39 115.234 -4.267 +v 120.233 115.547 -4.236 +v 120.408 115.244 -4.236 +v 120.424 115.253 -4.204 +v 120.25 115.556 -4.204 +v 120.263 115.564 -4.17 +v 120.438 115.26 -4.17 +v 120.276 115.57 -4.137 +v 120.45 115.268 -4.137 +v 120.288 115.578 -4.103 +v 120.463 115.275 -4.103 +v 120.298 115.584 -4.068 +v 120.473 115.28 -4.068 +v 120.48 115.286 -4.032 +v 120.306 115.59 -4.032 +v 120.313 115.593 -3.996 +v 120.488 115.29 -3.996 +v 120.32 115.596 -3.96 +v 120.494 115.293 -3.96 +v 120.323 115.598 -3.924 +v 120.498 115.295 -3.924 +v 120.325 115.6 -3.887 +v 120.5 115.296 -3.887 +v 120.5 115.297 -3.85 +v 120.326 115.6 -3.85 +v 102.292 115.243 -4.6 +v 102.26 115.262 -4.596 +v 102.324 115.225 -4.6 +v 102.228 115.28 -4.592 +v 102.197 115.298 -4.586 +v 102.166 115.316 -4.578 +v 102.135 115.334 -4.568 +v 102.105 115.35 -4.556 +v 102.075 115.37 -4.543 +v 102.046 115.385 -4.528 +v 102.017 115.402 -4.51 +v 101.99 115.418 -4.493 +v 101.963 115.433 -4.474 +v 101.937 115.448 -4.452 +v 101.912 115.463 -4.43 +v 101.887 115.477 -4.406 +v 101.864 115.49 -4.38 +v 101.842 115.503 -4.354 +v 101.822 115.515 -4.326 +v 101.802 115.526 -4.297 +v 101.784 115.537 -4.267 +v 101.767 115.547 -4.236 +v 101.75 115.556 -4.204 +v 101.737 115.564 -4.17 +v 101.724 115.57 -4.137 +v 101.712 115.578 -4.103 +v 101.702 115.584 -4.068 +v 101.694 115.59 -4.032 +v 101.687 115.593 -3.996 +v 101.68 115.596 -3.96 +v 101.677 115.598 -3.924 +v 101.675 115.6 -3.887 +v 101.674 115.6 -3.85 +v 103.325 114.647 -4.6 +v 103.325 114.647 -1.84 +v 101.674 115.6 -1.84 +v 101.674 115.6 0.167 +v 101.675 115.6 0.204 +v 102.324 115.225 0.917 +v 103.325 114.647 0.917 +v 101.677 115.598 0.24 +v 101.68 115.596 0.277 +v 101.687 115.593 0.314 +v 101.694 115.59 0.35 +v 101.702 115.584 0.385 +v 101.712 115.578 0.42 +v 101.724 115.57 0.454 +v 101.737 115.564 0.488 +v 101.75 115.556 0.52 +v 101.767 115.547 0.553 +v 101.784 115.537 0.584 +v 101.802 115.526 0.614 +v 101.822 115.515 0.643 +v 101.842 115.503 0.67 +v 101.864 115.49 0.698 +v 101.887 115.477 0.723 +v 101.912 115.463 0.747 +v 101.937 115.448 0.77 +v 101.963 115.433 0.79 +v 101.99 115.418 0.81 +v 102.017 115.402 0.83 +v 102.046 115.385 0.845 +v 102.075 115.37 0.86 +v 102.105 115.35 0.873 +v 102.135 115.334 0.885 +v 102.166 115.316 0.895 +v 102.197 115.298 0.903 +v 102.228 115.28 0.91 +v 102.26 115.262 0.914 +v 102.292 115.243 0.916 +v 103.15 114.344 -4.6 +v 103.325 114.647 -4.6 +v 103.345 114.636 -4.6 +v 118.5 114.6 -4.6 +v 118.5 114.25 -4.6 +v 103.5 114.6 -4.6 +v 103.5 114.25 -4.6 +v 103.477 114.6 -4.6 +v 103.454 114.252 -4.6 +v 103.454 114.603 -4.6 +v 103.41 114.256 -4.6 +v 103.432 114.607 -4.6 +v 103.363 114.263 -4.6 +v 103.41 114.612 -4.6 +v 103.32 114.274 -4.6 +v 103.387 114.62 -4.6 +v 103.275 114.287 -4.6 +v 103.366 114.627 -4.6 +v 103.232 114.303 -4.6 +v 103.19 114.322 -4.6 +v 118.523 114.6 -4.6 +v 118.546 114.252 -4.6 +v 118.546 114.603 -4.6 +v 118.59 114.256 -4.6 +v 118.568 114.607 -4.6 +v 118.637 114.263 -4.6 +v 118.59 114.612 -4.6 +v 118.68 114.274 -4.6 +v 118.612 114.62 -4.6 +v 118.725 114.287 -4.6 +v 118.634 114.627 -4.6 +v 118.768 114.303 -4.6 +v 118.655 114.636 -4.6 +v 118.81 114.322 -4.6 +v 118.675 114.647 -4.6 +v 118.85 114.344 -4.6 +v 119.883 114.94 -4.6 +v 119.915 114.96 -4.596 +v 119.85 114.922 -4.6 +v 119.947 114.977 -4.592 +v 119.978 114.995 -4.586 +v 120.01 115.013 -4.578 +v 120.04 115.03 -4.568 +v 120.07 115.048 -4.556 +v 120.1 115.065 -4.543 +v 120.13 115.082 -4.528 +v 120.157 115.1 -4.51 +v 120.185 115.115 -4.493 +v 120.212 115.13 -4.474 +v 120.238 115.145 -4.452 +v 120.263 115.16 -4.43 +v 120.287 115.174 -4.406 +v 120.31 115.187 -4.38 +v 120.333 115.2 -4.354 +v 120.353 115.212 -4.326 +v 120.373 115.223 -4.297 +v 120.39 115.234 -4.267 +v 120.408 115.244 -4.236 +v 120.424 115.253 -4.204 +v 120.438 115.26 -4.17 +v 120.45 115.268 -4.137 +v 120.463 115.275 -4.103 +v 120.473 115.28 -4.068 +v 120.48 115.286 -4.032 +v 120.488 115.29 -3.996 +v 120.494 115.293 -3.96 +v 120.498 115.295 -3.924 +v 120.5 115.296 -3.887 +v 120.5 115.297 -3.85 +v 118.85 114.344 -4.6 +v 118.85 114.344 -1.84 +v 120.5 115.297 -1.84 +v 120.5 115.297 0.167 +v 120.5 115.296 0.204 +v 119.85 114.922 0.917 +v 118.85 114.344 0.917 +v 120.498 115.295 0.24 +v 120.494 115.293 0.277 +v 120.488 115.29 0.314 +v 120.48 115.286 0.35 +v 120.473 115.28 0.385 +v 120.463 115.275 0.42 +v 120.45 115.268 0.454 +v 120.438 115.26 0.488 +v 120.424 115.253 0.52 +v 120.408 115.244 0.553 +v 120.39 115.234 0.584 +v 120.373 115.223 0.614 +v 120.353 115.212 0.643 +v 120.333 115.2 0.67 +v 120.31 115.187 0.698 +v 120.287 115.174 0.723 +v 120.263 115.16 0.747 +v 120.238 115.145 0.77 +v 120.212 115.13 0.79 +v 120.185 115.115 0.81 +v 120.157 115.1 0.83 +v 120.13 115.082 0.845 +v 120.1 115.065 0.86 +v 120.07 115.048 0.873 +v 120.04 115.03 0.885 +v 120.01 115.013 0.895 +v 119.978 114.995 0.903 +v 119.947 114.977 0.91 +v 119.915 114.96 0.914 +v 119.883 114.94 0.916 +v 101.674 115.6 -1.84 +v 101.5 115.297 -1.84 +v 101.674 115.6 0.167 +v 101.5 115.297 0.167 +v 101.5 115.296 -3.887 +v 102.15 114.922 -4.6 +v 101.5 115.297 -3.85 +v 103.15 114.344 -4.6 +v 103.15 114.344 -1.84 +v 101.502 115.295 -3.924 +v 101.506 115.293 -3.96 +v 101.512 115.29 -3.996 +v 101.52 115.286 -4.032 +v 101.527 115.28 -4.068 +v 101.537 115.275 -4.103 +v 101.55 115.268 -4.137 +v 101.562 115.26 -4.17 +v 101.576 115.253 -4.204 +v 101.592 115.244 -4.236 +v 101.61 115.234 -4.267 +v 101.627 115.223 -4.297 +v 101.647 115.212 -4.326 +v 101.667 115.2 -4.354 +v 101.69 115.187 -4.38 +v 101.712 115.174 -4.406 +v 101.737 115.16 -4.43 +v 101.762 115.145 -4.452 +v 101.788 115.13 -4.474 +v 101.815 115.115 -4.493 +v 101.842 115.1 -4.51 +v 101.87 115.082 -4.528 +v 101.9 115.065 -4.543 +v 101.93 115.048 -4.556 +v 101.96 115.03 -4.568 +v 101.99 115.013 -4.578 +v 102.022 114.995 -4.586 +v 102.053 114.977 -4.592 +v 102.085 114.96 -4.596 +v 102.117 114.94 -4.6 +v 103.15 114.344 0.917 +v 101.5 115.297 0.167 +v 101.5 115.297 -1.84 +v 102.15 114.922 0.917 +v 101.5 115.296 0.204 +v 102.117 114.94 0.916 +v 102.085 114.96 0.914 +v 102.053 114.977 0.91 +v 102.022 114.995 0.903 +v 101.99 115.013 0.895 +v 101.96 115.03 0.885 +v 101.93 115.048 0.873 +v 101.9 115.065 0.86 +v 101.87 115.082 0.845 +v 101.842 115.1 0.83 +v 101.815 115.115 0.81 +v 101.788 115.13 0.79 +v 101.762 115.145 0.77 +v 101.737 115.16 0.747 +v 101.712 115.174 0.723 +v 101.69 115.187 0.698 +v 101.667 115.2 0.67 +v 101.647 115.212 0.643 +v 101.627 115.223 0.614 +v 101.61 115.234 0.584 +v 101.592 115.244 0.553 +v 101.576 115.253 0.52 +v 101.562 115.26 0.488 +v 101.55 115.268 0.454 +v 101.537 115.275 0.42 +v 101.527 115.28 0.385 +v 101.52 115.286 0.35 +v 101.512 115.29 0.314 +v 101.506 115.293 0.277 +v 101.502 115.295 0.24 +v 103.5 114.25 -4.6 +v 103.5 114.25 -1.84 +v 103.454 114.252 -4.6 +v 103.454 114.252 0.917 +v 103.41 114.256 0.917 +v 103.5 114.25 0.917 +v 103.41 114.256 -4.6 +v 103.363 114.263 0.917 +v 103.363 114.263 -4.6 +v 103.32 114.274 0.917 +v 103.32 114.274 -4.6 +v 103.275 114.287 0.917 +v 103.275 114.287 -4.6 +v 103.232 114.303 0.917 +v 103.232 114.303 -4.6 +v 103.19 114.322 0.917 +v 103.19 114.322 -4.6 +v 118.5 114.25 0.917 +v 118.5 114.25 -1.84 +v 118.5 114.25 -4.6 +v 118.546 114.252 0.917 +v 118.546 114.252 -4.6 +v 118.59 114.256 -4.6 +v 118.59 114.256 0.917 +v 118.637 114.263 -4.6 +v 118.637 114.263 0.917 +v 118.68 114.274 -4.6 +v 118.68 114.274 0.917 +v 118.725 114.287 -4.6 +v 118.725 114.287 0.917 +v 118.768 114.303 -4.6 +v 118.768 114.303 0.917 +v 118.81 114.322 -4.6 +v 118.81 114.322 0.917 +v 120.326 115.6 -1.84 +v 120.5 115.297 -1.84 +v 120.326 115.6 0.167 +v 120.5 115.297 0.167 +v 120.325 115.6 -3.887 +v 119.676 115.225 -4.6 +v 120.326 115.6 -3.85 +v 118.675 114.647 -4.6 +v 118.675 114.647 -1.84 +v 120.323 115.598 -3.924 +v 120.32 115.596 -3.96 +v 120.313 115.593 -3.996 +v 120.306 115.59 -4.032 +v 120.298 115.584 -4.068 +v 120.288 115.578 -4.103 +v 120.276 115.57 -4.137 +v 120.263 115.564 -4.17 +v 120.25 115.556 -4.204 +v 120.233 115.547 -4.236 +v 120.216 115.537 -4.267 +v 120.198 115.526 -4.297 +v 120.178 115.515 -4.326 +v 120.158 115.503 -4.354 +v 120.136 115.49 -4.38 +v 120.112 115.477 -4.406 +v 120.088 115.463 -4.43 +v 120.063 115.448 -4.452 +v 120.037 115.433 -4.474 +v 120.01 115.418 -4.493 +v 119.982 115.402 -4.51 +v 119.954 115.385 -4.528 +v 119.925 115.37 -4.543 +v 119.895 115.35 -4.556 +v 119.865 115.334 -4.568 +v 119.834 115.316 -4.578 +v 119.803 115.298 -4.586 +v 119.772 115.28 -4.592 +v 119.74 115.262 -4.596 +v 119.708 115.243 -4.6 +v 118.675 114.647 0.917 +v 120.326 115.6 0.167 +v 120.326 115.6 -1.84 +v 119.676 115.225 0.917 +v 120.325 115.6 0.204 +v 119.708 115.243 0.916 +v 119.74 115.262 0.914 +v 119.772 115.28 0.91 +v 119.803 115.298 0.903 +v 119.834 115.316 0.895 +v 119.865 115.334 0.885 +v 119.895 115.35 0.873 +v 119.925 115.37 0.86 +v 119.954 115.385 0.845 +v 119.982 115.402 0.83 +v 120.01 115.418 0.81 +v 120.037 115.433 0.79 +v 120.063 115.448 0.77 +v 120.088 115.463 0.747 +v 120.112 115.477 0.723 +v 120.136 115.49 0.698 +v 120.158 115.503 0.67 +v 120.178 115.515 0.643 +v 120.198 115.526 0.614 +v 120.216 115.537 0.584 +v 120.233 115.547 0.553 +v 120.25 115.556 0.52 +v 120.263 115.564 0.488 +v 120.276 115.57 0.454 +v 120.288 115.578 0.42 +v 120.298 115.584 0.385 +v 120.306 115.59 0.35 +v 120.313 115.593 0.314 +v 120.32 115.596 0.277 +v 120.323 115.598 0.24 +v 118.5 114.6 0.917 +v 118.523 114.6 0.917 +v 118.5 114.6 -1.84 +v 118.523 114.6 -4.6 +v 118.5 114.6 -4.6 +v 118.546 114.603 0.917 +v 118.546 114.603 -4.6 +v 118.568 114.607 0.917 +v 118.568 114.607 -4.6 +v 118.59 114.612 0.917 +v 118.59 114.612 -4.6 +v 118.612 114.62 0.917 +v 118.612 114.62 -4.6 +v 118.634 114.627 0.917 +v 118.634 114.627 -4.6 +v 118.655 114.636 0.917 +v 118.655 114.636 -4.6 +v 103.5 114.6 -4.6 +v 103.5 114.6 -1.84 +v 103.5 114.6 0.917 +v 103.477 114.6 0.917 +v 103.477 114.6 -4.6 +v 103.454 114.603 -4.6 +v 103.454 114.603 0.917 +v 103.432 114.607 -4.6 +v 103.432 114.607 0.917 +v 103.41 114.612 -4.6 +v 103.41 114.612 0.917 +v 103.387 114.62 -4.6 +v 103.387 114.62 0.917 +v 103.366 114.627 -4.6 +v 103.366 114.627 0.917 +v 103.345 114.636 -4.6 +v 103.345 114.636 0.917 +v 117.75 106.41 1.21 +v 111 106.41 1.21 +v 117.75 106.25 0.9 +v 111 106.25 0.9 +v 104.25 106.41 1.21 +v 104.25 106.25 0.9 +v 119.676 115.225 0.917 +v 119.85 114.922 0.917 +v 119.708 115.243 0.916 +v 119.883 114.94 0.916 +v 119.915 114.96 0.914 +v 119.74 115.262 0.914 +v 119.947 114.977 0.91 +v 119.772 115.28 0.91 +v 119.978 114.995 0.903 +v 119.803 115.298 0.903 +v 120.01 115.013 0.895 +v 119.834 115.316 0.895 +v 119.865 115.334 0.885 +v 120.04 115.03 0.885 +v 120.07 115.048 0.873 +v 119.895 115.35 0.873 +v 120.1 115.065 0.86 +v 119.925 115.37 0.86 +v 120.13 115.082 0.845 +v 119.954 115.385 0.845 +v 120.157 115.1 0.83 +v 119.982 115.402 0.83 +v 120.01 115.418 0.81 +v 120.185 115.115 0.81 +v 120.212 115.13 0.79 +v 120.037 115.433 0.79 +v 120.238 115.145 0.77 +v 120.063 115.448 0.77 +v 120.263 115.16 0.747 +v 120.088 115.463 0.747 +v 120.287 115.174 0.723 +v 120.112 115.477 0.723 +v 120.136 115.49 0.698 +v 120.31 115.187 0.698 +v 120.158 115.503 0.67 +v 120.333 115.2 0.67 +v 120.353 115.212 0.643 +v 120.178 115.515 0.643 +v 120.373 115.223 0.614 +v 120.198 115.526 0.614 +v 120.39 115.234 0.584 +v 120.216 115.537 0.584 +v 120.408 115.244 0.553 +v 120.233 115.547 0.553 +v 120.25 115.556 0.52 +v 120.424 115.253 0.52 +v 120.438 115.26 0.488 +v 120.263 115.564 0.488 +v 120.45 115.268 0.454 +v 120.276 115.57 0.454 +v 120.463 115.275 0.42 +v 120.288 115.578 0.42 +v 120.473 115.28 0.385 +v 120.298 115.584 0.385 +v 120.306 115.59 0.35 +v 120.48 115.286 0.35 +v 120.488 115.29 0.314 +v 120.313 115.593 0.314 +v 120.494 115.293 0.277 +v 120.32 115.596 0.277 +v 120.498 115.295 0.24 +v 120.323 115.598 0.24 +v 120.5 115.296 0.204 +v 120.325 115.6 0.204 +v 101.675 115.6 0.204 +v 101.5 115.296 0.204 +v 101.502 115.295 0.24 +v 101.677 115.598 0.24 +v 101.506 115.293 0.277 +v 101.68 115.596 0.277 +v 101.512 115.29 0.314 +v 101.687 115.593 0.314 +v 101.52 115.286 0.35 +v 101.694 115.59 0.35 +v 101.702 115.584 0.385 +v 101.527 115.28 0.385 +v 101.537 115.275 0.42 +v 101.712 115.578 0.42 +v 101.55 115.268 0.454 +v 101.724 115.57 0.454 +v 101.562 115.26 0.488 +v 101.737 115.564 0.488 +v 101.576 115.253 0.52 +v 101.75 115.556 0.52 +v 101.767 115.547 0.553 +v 101.592 115.244 0.553 +v 101.61 115.234 0.584 +v 101.784 115.537 0.584 +v 101.627 115.223 0.614 +v 101.802 115.526 0.614 +v 101.647 115.212 0.643 +v 101.822 115.515 0.643 +v 101.667 115.2 0.67 +v 101.842 115.503 0.67 +v 101.864 115.49 0.698 +v 101.69 115.187 0.698 +v 101.887 115.477 0.723 +v 101.712 115.174 0.723 +v 101.737 115.16 0.747 +v 101.912 115.463 0.747 +v 101.762 115.145 0.77 +v 101.937 115.448 0.77 +v 101.788 115.13 0.79 +v 101.963 115.433 0.79 +v 101.815 115.115 0.81 +v 101.99 115.418 0.81 +v 102.017 115.402 0.83 +v 101.842 115.1 0.83 +v 101.87 115.082 0.845 +v 102.046 115.385 0.845 +v 101.9 115.065 0.86 +v 102.075 115.37 0.86 +v 101.93 115.048 0.873 +v 102.105 115.35 0.873 +v 101.96 115.03 0.885 +v 102.135 115.334 0.885 +v 102.166 115.316 0.895 +v 101.99 115.013 0.895 +v 102.022 114.995 0.903 +v 102.197 115.298 0.903 +v 102.053 114.977 0.91 +v 102.228 115.28 0.91 +v 102.085 114.96 0.914 +v 102.26 115.262 0.914 +v 102.117 114.94 0.916 +v 102.292 115.243 0.916 +v 102.324 115.225 0.917 +v 102.15 114.922 0.917 +v 118.5 106.915 0.554 +v 118.5 107.077 0.865 +v 118.5 106.883 0.57 +v 118.5 107.044 0.88 +v 118.496 107.012 0.898 +v 118.496 106.85 0.588 +v 118.492 106.98 0.915 +v 118.492 106.818 0.605 +v 118.486 106.947 0.932 +v 118.486 106.786 0.622 +v 118.478 106.915 0.95 +v 118.478 106.754 0.638 +v 118.468 106.722 0.654 +v 118.468 106.884 0.965 +v 118.456 106.853 0.98 +v 118.456 106.69 0.67 +v 118.443 106.822 0.997 +v 118.443 106.66 0.686 +v 118.428 106.792 1.012 +v 118.428 106.63 0.702 +v 118.41 106.763 1.028 +v 118.41 106.602 0.717 +v 118.393 106.573 0.732 +v 118.393 106.735 1.042 +v 118.374 106.707 1.057 +v 118.374 106.546 0.746 +v 118.352 106.68 1.07 +v 118.352 106.52 0.76 +v 118.33 106.655 1.084 +v 118.33 106.493 0.774 +v 118.306 106.63 1.097 +v 118.306 106.47 0.786 +v 118.28 106.445 0.8 +v 118.28 106.606 1.11 +v 118.254 106.422 0.81 +v 118.254 106.584 1.12 +v 118.226 106.563 1.132 +v 118.226 106.4 0.82 +v 118.197 106.542 1.142 +v 118.197 106.38 0.832 +v 118.167 106.524 1.152 +v 118.167 106.362 0.842 +v 118.136 106.506 1.16 +v 118.136 106.345 0.85 +v 118.104 106.33 0.86 +v 118.104 106.49 1.17 +v 118.07 106.475 1.177 +v 118.07 106.314 0.867 +v 118.037 106.462 1.184 +v 118.037 106.3 0.874 +v 118.003 106.45 1.19 +v 118.003 106.29 0.88 +v 117.968 106.44 1.196 +v 117.968 106.28 0.885 +v 117.932 106.27 0.89 +v 117.932 106.43 1.2 +v 117.896 106.424 1.204 +v 117.896 106.263 0.893 +v 117.86 106.42 1.207 +v 117.86 106.257 0.896 +v 117.824 106.415 1.21 +v 117.824 106.253 0.898 +v 117.787 106.412 1.21 +v 117.787 106.25 0.9 +v 103.5 113.682 1.582 +v 118.5 113.682 1.582 +v 103.5 113.722 1.594 +v 118.5 113.722 1.594 +v 118.5 113.762 1.603 +v 103.5 113.762 1.603 +v 118.5 113.803 1.61 +v 103.5 113.803 1.61 +v 118.5 113.844 1.615 +v 103.5 113.844 1.615 +v 118.5 113.885 1.617 +v 103.5 113.885 1.617 +v 118.5 113.926 1.617 +v 103.5 113.926 1.617 +v 118.5 113.967 1.614 +v 103.5 113.967 1.614 +v 118.5 114.008 1.61 +v 103.5 114.008 1.61 +v 118.5 114.05 1.6 +v 103.5 114.05 1.6 +v 118.5 114.09 1.59 +v 103.5 114.09 1.59 +v 118.5 114.128 1.58 +v 103.5 114.128 1.58 +v 118.5 114.167 1.564 +v 103.5 114.167 1.564 +v 118.5 114.205 1.547 +v 103.5 114.205 1.547 +v 118.5 114.24 1.528 +v 103.5 114.24 1.528 +v 118.5 114.277 1.507 +v 103.5 114.277 1.507 +v 118.5 114.31 1.484 +v 103.5 114.31 1.484 +v 118.5 114.344 1.46 +v 103.5 114.344 1.46 +v 118.5 114.375 1.432 +v 103.5 114.375 1.432 +v 118.5 114.404 1.403 +v 103.5 114.404 1.403 +v 118.5 114.432 1.372 +v 103.5 114.432 1.372 +v 118.5 114.458 1.34 +v 103.5 114.458 1.34 +v 118.5 114.482 1.306 +v 103.5 114.482 1.306 +v 118.5 114.504 1.272 +v 103.5 114.504 1.272 +v 118.5 114.524 1.235 +v 103.5 114.524 1.235 +v 118.5 114.54 1.198 +v 103.5 114.54 1.198 +v 118.5 114.557 1.16 +v 103.5 114.557 1.16 +v 118.5 114.57 1.12 +v 103.5 114.57 1.12 +v 118.5 114.58 1.08 +v 103.5 114.58 1.08 +v 118.5 114.59 1.04 +v 103.5 114.59 1.04 +v 118.5 114.595 1 +v 103.5 114.595 1 +v 118.5 114.6 0.958 +v 103.5 114.6 0.958 +v 118.5 108.92 0.024 +v 111 108.92 0.024 +v 103.5 108.92 0.024 +v 118.5 108.65 0.046 +v 118.5 108.666 0.04 +v 111 108.65 0.046 +v 103.5 108.666 0.04 +v 103.5 108.65 0.046 +v 103.5 108.682 0.032 +v 118.5 108.682 0.032 +v 118.5 108.698 0.026 +v 103.5 108.698 0.026 +v 118.5 108.715 0.02 +v 103.5 108.715 0.02 +v 118.5 108.732 0.016 +v 103.5 108.732 0.016 +v 118.5 108.75 0.013 +v 103.5 108.75 0.013 +v 103.5 108.766 0.01 +v 118.5 108.766 0.01 +v 118.5 108.783 0.008 +v 103.5 108.783 0.008 +v 118.5 108.8 0.007 +v 103.5 108.8 0.007 +v 103.5 108.818 0.007 +v 118.5 108.818 0.007 +v 118.5 108.836 0.008 +v 103.5 108.836 0.008 +v 103.5 108.853 0.01 +v 118.5 108.853 0.01 +v 118.5 108.87 0.012 +v 103.5 108.87 0.012 +v 118.5 108.887 0.015 +v 103.5 108.887 0.015 +v 118.5 108.904 0.02 +v 103.5 108.904 0.02 +v 118.5 107.077 0.865 +v 117.75 106.41 1.21 +v 111 106.41 1.21 +v 104.25 106.41 1.21 +v 103.5 107.077 0.865 +v 103.5 107.044 0.88 +v 103.504 107.012 0.898 +v 103.508 106.98 0.915 +v 103.514 106.947 0.932 +v 103.522 106.915 0.95 +v 103.532 106.884 0.965 +v 103.544 106.853 0.98 +v 103.557 106.822 0.997 +v 103.572 106.792 1.012 +v 103.59 106.763 1.028 +v 103.607 106.735 1.042 +v 103.626 106.707 1.057 +v 103.648 106.68 1.07 +v 103.67 106.655 1.084 +v 103.694 106.63 1.097 +v 103.72 106.606 1.11 +v 103.746 106.584 1.12 +v 103.774 106.563 1.132 +v 103.803 106.542 1.142 +v 103.833 106.524 1.152 +v 103.864 106.506 1.16 +v 103.896 106.49 1.17 +v 103.93 106.475 1.177 +v 103.963 106.462 1.184 +v 103.997 106.45 1.19 +v 104.032 106.44 1.196 +v 104.068 106.43 1.2 +v 104.104 106.424 1.204 +v 104.14 106.42 1.207 +v 104.176 106.415 1.21 +v 104.213 106.412 1.21 +v 117.787 106.412 1.21 +v 117.824 106.415 1.21 +v 117.86 106.42 1.207 +v 117.896 106.424 1.204 +v 117.932 106.43 1.2 +v 117.968 106.44 1.196 +v 118.003 106.45 1.19 +v 118.037 106.462 1.184 +v 118.07 106.475 1.177 +v 118.104 106.49 1.17 +v 118.136 106.506 1.16 +v 118.167 106.524 1.152 +v 118.197 106.542 1.142 +v 118.226 106.563 1.132 +v 118.254 106.584 1.12 +v 118.28 106.606 1.11 +v 118.306 106.63 1.097 +v 118.33 106.655 1.084 +v 118.352 106.68 1.07 +v 118.374 106.707 1.057 +v 118.393 106.735 1.042 +v 118.41 106.763 1.028 +v 118.428 106.792 1.012 +v 118.443 106.822 0.997 +v 118.456 106.853 0.98 +v 118.468 106.884 0.965 +v 118.478 106.915 0.95 +v 118.486 106.947 0.932 +v 118.492 106.98 0.915 +v 118.496 107.012 0.898 +v 118.5 107.044 0.88 +v 104.213 106.25 0.9 +v 104.213 106.412 1.21 +v 104.176 106.415 1.21 +v 104.176 106.253 0.898 +v 104.14 106.42 1.207 +v 104.14 106.257 0.896 +v 104.104 106.424 1.204 +v 104.104 106.263 0.893 +v 104.068 106.43 1.2 +v 104.068 106.27 0.89 +v 104.032 106.28 0.885 +v 104.032 106.44 1.196 +v 103.997 106.45 1.19 +v 103.997 106.29 0.88 +v 103.963 106.462 1.184 +v 103.963 106.3 0.874 +v 103.93 106.475 1.177 +v 103.93 106.314 0.867 +v 103.896 106.49 1.17 +v 103.896 106.33 0.86 +v 103.864 106.345 0.85 +v 103.864 106.506 1.16 +v 103.833 106.524 1.152 +v 103.833 106.362 0.842 +v 103.803 106.542 1.142 +v 103.803 106.38 0.832 +v 103.774 106.563 1.132 +v 103.774 106.4 0.82 +v 103.746 106.584 1.12 +v 103.746 106.422 0.81 +v 103.72 106.445 0.8 +v 103.72 106.606 1.11 +v 103.694 106.47 0.786 +v 103.694 106.63 1.097 +v 103.67 106.655 1.084 +v 103.67 106.493 0.774 +v 103.648 106.68 1.07 +v 103.648 106.52 0.76 +v 103.626 106.707 1.057 +v 103.626 106.546 0.746 +v 103.607 106.735 1.042 +v 103.607 106.573 0.732 +v 103.59 106.602 0.717 +v 103.59 106.763 1.028 +v 103.572 106.792 1.012 +v 103.572 106.63 0.702 +v 103.557 106.822 0.997 +v 103.557 106.66 0.686 +v 103.544 106.853 0.98 +v 103.544 106.69 0.67 +v 103.532 106.884 0.965 +v 103.532 106.722 0.654 +v 103.522 106.754 0.638 +v 103.522 106.915 0.95 +v 103.514 106.947 0.932 +v 103.514 106.786 0.622 +v 103.508 106.98 0.915 +v 103.508 106.818 0.605 +v 103.504 107.012 0.898 +v 103.504 106.85 0.588 +v 103.5 107.044 0.88 +v 103.5 106.883 0.57 +v 103.5 106.915 0.554 +v 103.5 107.077 0.865 +v 103.5 106.883 0.57 +v 103.5 106.915 0.554 +v 104.25 106.25 0.9 +v 103.5 108.49 -0.264 +v 111 106.25 0.9 +v 118.5 108.49 -0.264 +v 117.75 106.25 0.9 +v 118.5 106.915 0.554 +v 118.5 106.883 0.57 +v 104.213 106.25 0.9 +v 104.176 106.253 0.898 +v 104.14 106.257 0.896 +v 104.104 106.263 0.893 +v 104.068 106.27 0.89 +v 104.032 106.28 0.885 +v 103.997 106.29 0.88 +v 103.963 106.3 0.874 +v 103.93 106.314 0.867 +v 103.896 106.33 0.86 +v 103.864 106.345 0.85 +v 103.833 106.362 0.842 +v 103.803 106.38 0.832 +v 103.774 106.4 0.82 +v 103.746 106.422 0.81 +v 103.72 106.445 0.8 +v 103.694 106.47 0.786 +v 103.67 106.493 0.774 +v 103.648 106.52 0.76 +v 103.626 106.546 0.746 +v 103.607 106.573 0.732 +v 103.59 106.602 0.717 +v 103.572 106.63 0.702 +v 103.557 106.66 0.686 +v 103.544 106.69 0.67 +v 103.532 106.722 0.654 +v 103.522 106.754 0.638 +v 103.514 106.786 0.622 +v 103.508 106.818 0.605 +v 103.504 106.85 0.588 +v 118.496 106.85 0.588 +v 118.492 106.818 0.605 +v 118.486 106.786 0.622 +v 118.478 106.754 0.638 +v 118.468 106.722 0.654 +v 118.456 106.69 0.67 +v 118.443 106.66 0.686 +v 118.428 106.63 0.702 +v 118.41 106.602 0.717 +v 118.393 106.573 0.732 +v 118.374 106.546 0.746 +v 118.352 106.52 0.76 +v 118.33 106.493 0.774 +v 118.306 106.47 0.786 +v 118.28 106.445 0.8 +v 118.254 106.422 0.81 +v 118.226 106.4 0.82 +v 118.197 106.38 0.832 +v 118.167 106.362 0.842 +v 118.136 106.345 0.85 +v 118.104 106.33 0.86 +v 118.07 106.314 0.867 +v 118.037 106.3 0.874 +v 118.003 106.29 0.88 +v 117.968 106.28 0.885 +v 117.932 106.27 0.89 +v 117.896 106.263 0.893 +v 117.86 106.257 0.896 +v 117.824 106.253 0.898 +v 117.787 106.25 0.9 +v 103.5 108.52 -0.28 +v 118.5 108.52 -0.28 +v 118.5 108.552 -0.293 +v 103.5 108.552 -0.293 +v 103.5 108.585 -0.305 +v 118.5 108.585 -0.305 +v 103.5 108.618 -0.316 +v 118.5 108.618 -0.316 +v 103.5 108.652 -0.325 +v 118.5 108.652 -0.325 +v 103.5 108.686 -0.332 +v 118.5 108.686 -0.332 +v 118.5 108.72 -0.337 +v 103.5 108.72 -0.337 +v 103.5 108.755 -0.34 +v 118.5 108.755 -0.34 +v 103.5 108.79 -0.343 +v 118.5 108.79 -0.343 +v 118.5 108.824 -0.343 +v 103.5 108.824 -0.343 +v 103.5 108.86 -0.342 +v 118.5 108.86 -0.342 +v 118.5 108.894 -0.338 +v 103.5 108.894 -0.338 +v 103.5 108.928 -0.333 +v 118.5 108.928 -0.333 +v 103.5 108.962 -0.327 +v 118.5 108.962 -0.327 +v 103.5 108.996 -0.318 +v 118.5 108.996 -0.318 +v 103.5 109.03 -0.308 +v 118.5 109.03 -0.308 +v 118.675 114.647 0.917 +v 118.85 114.344 0.917 +v 118.655 114.636 0.917 +v 118.81 114.322 0.917 +v 118.634 114.627 0.917 +v 118.768 114.303 0.917 +v 118.612 114.62 0.917 +v 118.725 114.287 0.917 +v 118.59 114.612 0.917 +v 118.68 114.274 0.917 +v 118.568 114.607 0.917 +v 118.637 114.263 0.917 +v 118.546 114.603 0.917 +v 118.59 114.256 0.917 +v 118.523 114.6 0.917 +v 118.546 114.252 0.917 +v 118.5 114.6 0.917 +v 118.5 114.25 0.917 +v 103.5 114.25 0.917 +v 103.5 114.6 0.917 +v 103.454 114.252 0.917 +v 103.477 114.6 0.917 +v 103.454 114.603 0.917 +v 103.41 114.256 0.917 +v 103.432 114.607 0.917 +v 103.363 114.263 0.917 +v 103.41 114.612 0.917 +v 103.32 114.274 0.917 +v 103.387 114.62 0.917 +v 103.275 114.287 0.917 +v 103.366 114.627 0.917 +v 103.232 114.303 0.917 +v 103.345 114.636 0.917 +v 103.19 114.322 0.917 +v 103.15 114.344 0.917 +v 103.325 114.647 0.917 +v 103.5 113.79 1.25 +v 118.5 113.79 1.25 +v 118.5 113.893 1.267 +v 118.5 113.885 1.617 +v 118.5 113.872 1.266 +v 118.5 113.844 1.615 +v 118.5 113.85 1.264 +v 118.5 113.803 1.61 +v 118.5 113.83 1.26 +v 118.5 113.762 1.603 +v 118.5 113.81 1.256 +v 118.5 113.722 1.594 +v 118.5 113.79 1.25 +v 118.5 113.682 1.582 +v 118.5 109.03 -0.308 +v 118.5 108.92 0.024 +v 118.5 108.996 -0.318 +v 118.5 108.904 0.02 +v 118.5 108.962 -0.327 +v 118.5 108.887 0.015 +v 118.5 108.928 -0.333 +v 118.5 108.87 0.012 +v 118.5 108.894 -0.338 +v 118.5 108.853 0.01 +v 118.5 108.86 -0.342 +v 118.5 108.836 0.008 +v 118.5 108.824 -0.343 +v 118.5 108.818 0.007 +v 118.5 108.79 -0.343 +v 118.5 108.8 0.007 +v 118.5 108.783 0.008 +v 118.5 113.913 1.267 +v 118.5 113.926 1.617 +v 118.5 113.934 1.266 +v 118.5 113.967 1.614 +v 118.5 113.954 1.263 +v 118.5 114.008 1.61 +v 118.5 113.974 1.26 +v 118.5 114.05 1.6 +v 118.5 113.995 1.254 +v 118.5 114.09 1.59 +v 118.5 114.014 1.248 +v 118.5 114.128 1.58 +v 118.5 114.034 1.24 +v 118.5 114.167 1.564 +v 118.5 114.052 1.232 +v 118.5 114.205 1.547 +v 118.5 114.07 1.223 +v 118.5 114.24 1.528 +v 118.5 114.088 1.212 +v 118.5 114.277 1.507 +v 118.5 114.105 1.2 +v 118.5 114.31 1.484 +v 118.5 114.122 1.188 +v 118.5 114.344 1.46 +v 118.5 114.137 1.174 +v 118.5 114.375 1.432 +v 118.5 114.152 1.16 +v 118.5 114.404 1.403 +v 118.5 114.166 1.145 +v 118.5 114.432 1.372 +v 118.5 114.18 1.13 +v 118.5 114.458 1.34 +v 118.5 114.19 1.112 +v 118.5 114.482 1.306 +v 118.5 114.202 1.094 +v 118.5 114.504 1.272 +v 118.5 114.212 1.076 +v 118.5 114.524 1.235 +v 118.5 114.22 1.058 +v 118.5 114.54 1.198 +v 118.5 114.228 1.038 +v 118.5 114.557 1.16 +v 118.5 114.235 1.02 +v 118.5 114.57 1.12 +v 118.5 114.24 1 +v 118.5 114.58 1.08 +v 118.5 114.245 0.98 +v 118.5 114.59 1.04 +v 118.5 114.248 0.958 +v 118.5 114.595 1 +v 118.5 114.25 0.938 +v 118.5 114.6 0.958 +v 118.5 114.25 0.917 +v 118.5 114.6 0.917 +v 118.5 108.755 -0.34 +v 118.5 108.766 0.01 +v 118.5 108.72 -0.337 +v 118.5 108.75 0.013 +v 118.5 108.686 -0.332 +v 118.5 108.732 0.016 +v 118.5 108.652 -0.325 +v 118.5 108.715 0.02 +v 118.5 108.618 -0.316 +v 118.5 108.698 0.026 +v 118.5 108.585 -0.305 +v 118.5 108.682 0.032 +v 118.5 108.552 -0.293 +v 118.5 108.666 0.04 +v 118.5 108.52 -0.28 +v 118.5 108.65 0.046 +v 118.5 108.49 -0.264 +v 103.5 114.6 0.917 +v 103.5 114.25 0.917 +v 103.5 114.6 0.958 +v 103.5 114.25 0.938 +v 103.5 114.248 0.958 +v 103.5 114.595 1 +v 103.5 114.245 0.98 +v 103.5 114.59 1.04 +v 103.5 114.24 1 +v 103.5 114.58 1.08 +v 103.5 114.235 1.02 +v 103.5 114.57 1.12 +v 103.5 114.228 1.038 +v 103.5 114.557 1.16 +v 103.5 114.22 1.058 +v 103.5 114.54 1.198 +v 103.5 114.212 1.076 +v 103.5 114.524 1.235 +v 103.5 114.202 1.094 +v 103.5 114.504 1.272 +v 103.5 114.19 1.112 +v 103.5 114.482 1.306 +v 103.5 114.18 1.13 +v 103.5 114.458 1.34 +v 103.5 114.166 1.145 +v 103.5 114.432 1.372 +v 103.5 114.152 1.16 +v 103.5 114.404 1.403 +v 103.5 114.137 1.174 +v 103.5 114.375 1.432 +v 103.5 114.122 1.188 +v 103.5 114.344 1.46 +v 103.5 114.105 1.2 +v 103.5 114.31 1.484 +v 103.5 114.088 1.212 +v 103.5 114.277 1.507 +v 103.5 114.07 1.223 +v 103.5 114.24 1.528 +v 103.5 114.052 1.232 +v 103.5 114.205 1.547 +v 103.5 114.034 1.24 +v 103.5 114.167 1.564 +v 103.5 114.014 1.248 +v 103.5 114.128 1.58 +v 103.5 113.995 1.254 +v 103.5 114.09 1.59 +v 103.5 113.974 1.26 +v 103.5 114.05 1.6 +v 103.5 113.954 1.263 +v 103.5 114.008 1.61 +v 103.5 113.934 1.266 +v 103.5 113.967 1.614 +v 103.5 113.913 1.267 +v 103.5 113.893 1.267 +v 103.5 113.844 1.615 +v 103.5 113.872 1.266 +v 103.5 113.803 1.61 +v 103.5 113.85 1.264 +v 103.5 113.762 1.603 +v 103.5 113.83 1.26 +v 103.5 113.722 1.594 +v 103.5 113.81 1.256 +v 103.5 113.682 1.582 +v 103.5 113.79 1.25 +v 103.5 108.92 0.024 +v 103.5 109.03 -0.308 +v 103.5 108.996 -0.318 +v 103.5 108.904 0.02 +v 103.5 108.962 -0.327 +v 103.5 108.887 0.015 +v 103.5 108.928 -0.333 +v 103.5 108.87 0.012 +v 103.5 108.894 -0.338 +v 103.5 108.853 0.01 +v 103.5 108.86 -0.342 +v 103.5 108.836 0.008 +v 103.5 108.824 -0.343 +v 103.5 108.818 0.007 +v 103.5 108.79 -0.343 +v 103.5 108.8 0.007 +v 103.5 108.755 -0.34 +v 103.5 108.783 0.008 +v 103.5 108.72 -0.337 +v 103.5 108.766 0.01 +v 103.5 108.686 -0.332 +v 103.5 108.75 0.013 +v 103.5 108.652 -0.325 +v 103.5 108.732 0.016 +v 103.5 108.618 -0.316 +v 103.5 108.715 0.02 +v 103.5 108.585 -0.305 +v 103.5 108.698 0.026 +v 103.5 108.552 -0.293 +v 103.5 108.682 0.032 +v 103.5 108.52 -0.28 +v 103.5 108.666 0.04 +v 103.5 108.49 -0.264 +v 103.5 108.65 0.046 +v 103.5 113.885 1.617 +v 103.5 113.926 1.617 +v 118.5 113.81 1.256 +v 103.5 113.81 1.256 +v 103.5 113.83 1.26 +v 118.5 113.83 1.26 +v 103.5 113.85 1.264 +v 118.5 113.85 1.264 +v 103.5 113.872 1.266 +v 118.5 113.872 1.266 +v 103.5 113.893 1.267 +v 118.5 113.893 1.267 +v 103.5 113.913 1.267 +v 118.5 113.913 1.267 +v 103.5 113.934 1.266 +v 118.5 113.934 1.266 +v 103.5 113.954 1.263 +v 118.5 113.954 1.263 +v 103.5 113.974 1.26 +v 118.5 113.974 1.26 +v 103.5 113.995 1.254 +v 118.5 113.995 1.254 +v 103.5 114.014 1.248 +v 118.5 114.014 1.248 +v 103.5 114.034 1.24 +v 118.5 114.034 1.24 +v 103.5 114.052 1.232 +v 118.5 114.052 1.232 +v 103.5 114.07 1.223 +v 118.5 114.07 1.223 +v 103.5 114.088 1.212 +v 118.5 114.088 1.212 +v 103.5 114.105 1.2 +v 118.5 114.105 1.2 +v 103.5 114.122 1.188 +v 118.5 114.122 1.188 +v 103.5 114.137 1.174 +v 118.5 114.137 1.174 +v 103.5 114.152 1.16 +v 118.5 114.152 1.16 +v 103.5 114.166 1.145 +v 118.5 114.166 1.145 +v 103.5 114.18 1.13 +v 118.5 114.18 1.13 +v 103.5 114.19 1.112 +v 118.5 114.19 1.112 +v 103.5 114.202 1.094 +v 118.5 114.202 1.094 +v 103.5 114.212 1.076 +v 118.5 114.212 1.076 +v 103.5 114.22 1.058 +v 118.5 114.22 1.058 +v 103.5 114.228 1.038 +v 118.5 114.228 1.038 +v 103.5 114.235 1.02 +v 118.5 114.235 1.02 +v 103.5 114.24 1 +v 118.5 114.24 1 +v 103.5 114.245 0.98 +v 118.5 114.245 0.98 +v 103.5 114.248 0.958 +v 118.5 114.248 0.958 +v 103.5 114.25 0.938 +v 118.5 114.25 0.938 +vt 1 1.014 +vt -0 1.014 +vt 1 0 +vt 0 0 +vt 0 0 +f 1/1 2/2 3/3 +f 3/3 2/2 4/4 +f 5/5 6/5 7/5 +f 7/5 6/5 8/5 +f 9/5 10/5 11/5 +f 11/5 10/5 12/5 +f 13/5 14/5 15/5 +f 15/5 14/5 16/5 +f 17/5 18/5 19/5 +f 19/5 18/5 20/5 +f 21/5 22/5 23/5 +f 23/5 22/5 24/5 +f 23/5 24/5 25/5 +f 25/5 24/5 26/5 +f 27/5 28/5 24/5 +f 24/5 28/5 29/5 +f 24/5 29/5 30/5 +f 30/5 31/5 24/5 +f 24/5 31/5 32/5 +f 24/5 32/5 33/5 +f 33/5 34/5 24/5 +f 24/5 34/5 35/5 +f 24/5 35/5 36/5 +f 36/5 37/5 24/5 +f 24/5 37/5 38/5 +f 24/5 38/5 39/5 +f 39/5 40/5 24/5 +f 24/5 40/5 41/5 +f 24/5 41/5 42/5 +f 42/5 26/5 24/5 +f 25/5 43/5 23/5 +f 23/5 43/5 44/5 +f 44/5 43/5 45/5 +f 45/5 43/5 46/5 +f 45/5 46/5 47/5 +f 47/5 48/5 45/5 +f 45/5 48/5 49/5 +f 45/5 49/5 50/5 +f 50/5 51/5 45/5 +f 45/5 51/5 52/5 +f 45/5 52/5 53/5 +f 53/5 54/5 45/5 +f 45/5 54/5 55/5 +f 45/5 55/5 56/5 +f 56/5 57/5 45/5 +f 45/5 57/5 58/5 +f 45/5 58/5 59/5 +f 59/5 60/5 45/5 +f 45/5 60/5 61/5 +f 45/5 61/5 62/5 +f 45/5 63/5 44/5 +f 44/5 63/5 64/5 +f 44/5 64/5 65/5 +f 65/5 66/5 44/5 +f 44/5 66/5 67/5 +f 44/5 67/5 68/5 +f 68/5 69/5 44/5 +f 44/5 69/5 70/5 +f 44/5 70/5 71/5 +f 71/5 72/5 44/5 +f 44/5 72/5 73/5 +f 44/5 73/5 74/5 +f 74/5 75/5 44/5 +f 44/5 75/5 76/5 +f 44/5 76/5 77/5 +f 77/5 78/5 44/5 +f 44/5 78/5 79/5 +f 44/5 79/5 80/5 +f 81/5 82/5 23/5 +f 23/5 82/5 83/5 +f 23/5 83/5 84/5 +f 84/5 85/5 23/5 +f 23/5 85/5 86/5 +f 23/5 86/5 87/5 +f 87/5 88/5 23/5 +f 23/5 88/5 89/5 +f 23/5 89/5 90/5 +f 90/5 91/5 23/5 +f 23/5 91/5 92/5 +f 23/5 92/5 93/5 +f 93/5 94/5 23/5 +f 23/5 94/5 95/5 +f 23/5 95/5 96/5 +f 96/5 21/5 23/5 +f 97/5 98/5 99/5 +f 99/5 98/5 100/5 +f 99/5 100/5 101/5 +f 101/5 100/5 102/5 +f 101/5 102/5 103/5 +f 103/5 102/5 104/5 +f 99/5 105/5 97/5 +f 97/5 105/5 106/5 +f 97/5 106/5 107/5 +f 107/5 108/5 97/5 +f 97/5 108/5 109/5 +f 97/5 109/5 110/5 +f 110/5 111/5 97/5 +f 97/5 111/5 112/5 +f 97/5 112/5 113/5 +f 113/5 114/5 97/5 +f 97/5 114/5 115/5 +f 97/5 115/5 116/5 +f 116/5 117/5 97/5 +f 97/5 117/5 118/5 +f 97/5 118/5 119/5 +f 119/5 120/5 97/5 +f 97/5 120/5 121/5 +f 97/5 122/5 98/5 +f 98/5 122/5 123/5 +f 98/5 123/5 124/5 +f 124/5 125/5 98/5 +f 98/5 125/5 126/5 +f 98/5 126/5 127/5 +f 127/5 128/5 98/5 +f 98/5 128/5 129/5 +f 98/5 129/5 130/5 +f 130/5 131/5 98/5 +f 98/5 131/5 132/5 +f 98/5 132/5 133/5 +f 133/5 134/5 98/5 +f 98/5 134/5 135/5 +f 98/5 135/5 136/5 +f 136/5 137/5 98/5 +f 98/5 137/5 138/5 +f 98/5 138/5 139/5 +f 140/5 141/5 100/5 +f 100/5 141/5 142/5 +f 100/5 142/5 143/5 +f 143/5 144/5 100/5 +f 100/5 144/5 145/5 +f 100/5 145/5 146/5 +f 146/5 147/5 100/5 +f 100/5 147/5 148/5 +f 100/5 148/5 149/5 +f 149/5 150/5 100/5 +f 100/5 150/5 151/5 +f 100/5 151/5 152/5 +f 152/5 153/5 100/5 +f 100/5 153/5 154/5 +f 100/5 154/5 155/5 +f 155/5 156/5 100/5 +f 100/5 156/5 157/5 +f 100/5 157/5 102/5 +f 158/5 159/5 102/5 +f 102/5 159/5 160/5 +f 102/5 160/5 161/5 +f 161/5 162/5 102/5 +f 102/5 162/5 163/5 +f 102/5 163/5 164/5 +f 164/5 165/5 102/5 +f 102/5 165/5 166/5 +f 102/5 166/5 167/5 +f 167/5 168/5 102/5 +f 102/5 168/5 169/5 +f 102/5 169/5 170/5 +f 170/5 171/5 102/5 +f 102/5 171/5 172/5 +f 102/5 172/5 104/5 +f 17/5 173/5 18/5 +f 18/5 173/5 174/5 +f 173/5 175/5 174/5 +f 174/5 175/5 176/5 +f 175/5 177/5 176/5 +f 176/5 177/5 178/5 +f 177/5 179/5 178/5 +f 178/5 179/5 180/5 +f 179/5 181/5 180/5 +f 180/5 181/5 182/5 +f 181/5 183/5 182/5 +f 182/5 183/5 184/5 +f 183/5 185/5 184/5 +f 184/5 185/5 186/5 +f 185/5 187/5 186/5 +f 186/5 187/5 188/5 +f 187/5 189/5 188/5 +f 188/5 189/5 190/5 +f 189/5 191/5 190/5 +f 190/5 191/5 192/5 +f 191/5 193/5 192/5 +f 192/5 193/5 194/5 +f 193/5 195/5 194/5 +f 194/5 195/5 196/5 +f 195/5 197/5 196/5 +f 196/5 197/5 198/5 +f 197/5 199/5 198/5 +f 198/5 199/5 200/5 +f 199/5 201/5 200/5 +f 200/5 201/5 202/5 +f 201/5 203/5 202/5 +f 202/5 203/5 204/5 +f 203/5 205/5 204/5 +f 204/5 205/5 206/5 +f 205/5 14/5 206/5 +f 206/5 14/5 13/5 +f 6/5 207/5 8/5 +f 8/5 207/5 208/5 +f 207/5 209/5 208/5 +f 208/5 209/5 210/5 +f 209/5 211/5 210/5 +f 210/5 211/5 212/5 +f 211/5 213/5 212/5 +f 212/5 213/5 214/5 +f 213/5 215/5 214/5 +f 214/5 215/5 216/5 +f 215/5 217/5 216/5 +f 216/5 217/5 218/5 +f 217/5 219/5 218/5 +f 218/5 219/5 220/5 +f 219/5 221/5 220/5 +f 220/5 221/5 222/5 +f 221/5 223/5 222/5 +f 222/5 223/5 224/5 +f 223/5 225/5 224/5 +f 224/5 225/5 226/5 +f 225/5 227/5 226/5 +f 226/5 227/5 228/5 +f 227/5 229/5 228/5 +f 228/5 229/5 230/5 +f 229/5 231/5 230/5 +f 230/5 231/5 232/5 +f 231/5 233/5 232/5 +f 232/5 233/5 234/5 +f 233/5 235/5 234/5 +f 234/5 235/5 236/5 +f 235/5 237/5 236/5 +f 236/5 237/5 238/5 +f 237/5 239/5 238/5 +f 238/5 239/5 240/5 +f 239/5 19/5 240/5 +f 240/5 19/5 20/5 +f 10/5 241/5 12/5 +f 12/5 241/5 242/5 +f 241/5 243/5 242/5 +f 242/5 243/5 244/5 +f 243/5 245/5 244/5 +f 244/5 245/5 246/5 +f 245/5 247/5 246/5 +f 246/5 247/5 248/5 +f 247/5 249/5 248/5 +f 248/5 249/5 250/5 +f 249/5 251/5 250/5 +f 250/5 251/5 252/5 +f 251/5 253/5 252/5 +f 252/5 253/5 254/5 +f 253/5 255/5 254/5 +f 254/5 255/5 256/5 +f 255/5 257/5 256/5 +f 256/5 257/5 258/5 +f 257/5 259/5 258/5 +f 258/5 259/5 260/5 +f 259/5 261/5 260/5 +f 260/5 261/5 262/5 +f 261/5 263/5 262/5 +f 262/5 263/5 264/5 +f 263/5 265/5 264/5 +f 264/5 265/5 266/5 +f 265/5 267/5 266/5 +f 266/5 267/5 268/5 +f 267/5 269/5 268/5 +f 268/5 269/5 270/5 +f 269/5 271/5 270/5 +f 270/5 271/5 272/5 +f 271/5 273/5 272/5 +f 272/5 273/5 274/5 +f 273/5 5/5 274/5 +f 274/5 5/5 7/5 +f 16/5 275/5 15/5 +f 15/5 275/5 276/5 +f 275/5 277/5 276/5 +f 276/5 277/5 278/5 +f 277/5 279/5 278/5 +f 278/5 279/5 280/5 +f 279/5 281/5 280/5 +f 280/5 281/5 282/5 +f 281/5 283/5 282/5 +f 282/5 283/5 284/5 +f 283/5 285/5 284/5 +f 284/5 285/5 286/5 +f 285/5 287/5 286/5 +f 286/5 287/5 288/5 +f 287/5 289/5 288/5 +f 288/5 289/5 290/5 +f 289/5 291/5 290/5 +f 290/5 291/5 292/5 +f 291/5 293/5 292/5 +f 292/5 293/5 294/5 +f 293/5 295/5 294/5 +f 294/5 295/5 296/5 +f 295/5 297/5 296/5 +f 296/5 297/5 298/5 +f 297/5 299/5 298/5 +f 298/5 299/5 300/5 +f 299/5 301/5 300/5 +f 300/5 301/5 302/5 +f 301/5 303/5 302/5 +f 302/5 303/5 304/5 +f 303/5 305/5 304/5 +f 304/5 305/5 306/5 +f 305/5 307/5 306/5 +f 306/5 307/5 308/5 +f 307/5 9/5 308/5 +f 308/5 9/5 11/5 +f 4/5 309/5 3/5 +f 3/5 309/5 310/5 +f 309/5 311/5 310/5 +f 310/5 311/5 312/5 +f 311/5 313/5 312/5 +f 312/5 313/5 314/5 +f 313/5 315/5 314/5 +f 314/5 315/5 316/5 +f 315/5 317/5 316/5 +f 316/5 317/5 318/5 +f 317/5 319/5 318/5 +f 318/5 319/5 320/5 +f 319/5 321/5 320/5 +f 320/5 321/5 322/5 +f 321/5 323/5 322/5 +f 322/5 323/5 324/5 +f 323/5 325/5 324/5 +f 324/5 325/5 326/5 +f 325/5 327/5 326/5 +f 326/5 327/5 328/5 +f 327/5 329/5 328/5 +f 328/5 329/5 330/5 +f 329/5 331/5 330/5 +f 330/5 331/5 332/5 +f 331/5 333/5 332/5 +f 332/5 333/5 334/5 +f 333/5 335/5 334/5 +f 334/5 335/5 336/5 +f 335/5 337/5 336/5 +f 336/5 337/5 338/5 +f 337/5 339/5 338/5 +f 338/5 339/5 340/5 +f 339/5 341/5 340/5 +f 340/5 341/5 342/5 +f 341/5 343/5 342/5 +f 342/5 343/5 344/5 +f 345/5 346/5 347/5 +f 347/5 346/5 348/5 +f 346/5 349/5 348/5 +f 348/5 349/5 350/5 +f 349/5 351/5 350/5 +f 350/5 351/5 352/5 +f 351/5 353/5 352/5 +f 352/5 353/5 354/5 +f 353/5 355/5 354/5 +f 354/5 355/5 356/5 +f 355/5 357/5 356/5 +f 356/5 357/5 358/5 +f 357/5 359/5 358/5 +f 358/5 359/5 360/5 +f 359/5 361/5 360/5 +f 360/5 361/5 362/5 +f 361/5 363/5 362/5 +f 362/5 363/5 364/5 +f 363/5 365/5 364/5 +f 364/5 365/5 366/5 +f 365/5 367/5 366/5 +f 366/5 367/5 368/5 +f 367/5 369/5 368/5 +f 368/5 369/5 370/5 +f 369/5 371/5 370/5 +f 370/5 371/5 372/5 +f 371/5 373/5 372/5 +f 372/5 373/5 374/5 +f 373/5 375/5 374/5 +f 374/5 375/5 376/5 +f 375/5 377/5 376/5 +f 376/5 377/5 378/5 +f 377/5 379/5 378/5 +f 378/5 379/5 380/5 +f 379/5 2/5 380/5 +f 380/5 2/5 1/5 +f 381/5 382/5 383/5 +f 383/5 382/5 384/5 +f 385/5 386/5 387/5 +f 387/5 386/5 388/5 +f 387/5 388/5 389/5 +f 389/5 390/5 387/5 +f 387/5 390/5 391/5 +f 387/5 391/5 392/5 +f 392/5 393/5 387/5 +f 387/5 393/5 394/5 +f 387/5 394/5 395/5 +f 395/5 396/5 387/5 +f 387/5 396/5 397/5 +f 387/5 397/5 398/5 +f 398/5 399/5 387/5 +f 387/5 399/5 400/5 +f 387/5 400/5 401/5 +f 401/5 402/5 387/5 +f 387/5 402/5 403/5 +f 387/5 403/5 404/5 +f 404/5 403/5 405/5 +f 404/5 405/5 406/5 +f 406/5 405/5 407/5 +f 406/5 407/5 408/5 +f 408/5 409/5 406/5 +f 406/5 409/5 410/5 +f 406/5 410/5 411/5 +f 411/5 412/5 406/5 +f 406/5 412/5 413/5 +f 406/5 413/5 414/5 +f 414/5 415/5 406/5 +f 406/5 415/5 416/5 +f 406/5 416/5 417/5 +f 417/5 418/5 406/5 +f 406/5 418/5 419/5 +f 406/5 419/5 420/5 +f 406/5 420/5 421/5 +f 421/5 420/5 422/5 +f 421/5 422/5 423/5 +f 423/5 424/5 421/5 +f 421/5 424/5 425/5 +f 421/5 425/5 426/5 +f 427/5 428/5 429/5 +f 429/5 428/5 430/5 +f 429/5 430/5 431/5 +f 431/5 432/5 429/5 +f 429/5 432/5 433/5 +f 429/5 433/5 434/5 +f 434/5 435/5 429/5 +f 429/5 435/5 436/5 +f 429/5 436/5 437/5 +f 437/5 438/5 429/5 +f 429/5 438/5 439/5 +f 429/5 439/5 440/5 +f 440/5 441/5 429/5 +f 429/5 441/5 442/5 +f 429/5 442/5 443/5 +f 443/5 444/5 429/5 +f 429/5 444/5 445/5 +f 429/5 445/5 446/5 +f 429/5 446/5 447/5 +f 447/5 446/5 448/5 +f 447/5 448/5 449/5 +f 449/5 448/5 450/5 +f 451/5 452/5 453/5 +f 453/5 452/5 454/5 +f 453/5 454/5 448/5 +f 448/5 454/5 455/5 +f 448/5 455/5 456/5 +f 457/5 458/5 453/5 +f 453/5 458/5 459/5 +f 453/5 459/5 451/5 +f 456/5 460/5 448/5 +f 448/5 460/5 461/5 +f 448/5 461/5 462/5 +f 462/5 463/5 448/5 +f 448/5 463/5 464/5 +f 448/5 464/5 465/5 +f 465/5 466/5 448/5 +f 448/5 466/5 467/5 +f 448/5 467/5 468/5 +f 468/5 450/5 448/5 +f 344/5 343/5 469/5 +f 469/5 343/5 470/5 +f 469/5 470/5 471/5 +f 471/5 470/5 472/5 +f 471/5 472/5 473/5 +f 473/5 472/5 474/5 +f 473/5 474/5 475/5 +f 475/5 474/5 476/5 +f 475/5 476/5 477/5 +f 477/5 476/5 478/5 +f 477/5 478/5 479/5 +f 479/5 478/5 480/5 +f 479/5 480/5 481/5 +f 481/5 480/5 482/5 +f 481/5 482/5 483/5 +f 483/5 482/5 484/5 +f 483/5 484/5 485/5 +f 485/5 484/5 486/5 +f 485/5 486/5 487/5 +f 487/5 486/5 488/5 +f 487/5 488/5 489/5 +f 489/5 488/5 490/5 +f 489/5 490/5 491/5 +f 491/5 490/5 492/5 +f 488/5 493/5 490/5 +f 490/5 493/5 494/5 +f 495/5 496/5 493/5 +f 493/5 496/5 497/5 +f 493/5 497/5 498/5 +f 498/5 499/5 493/5 +f 493/5 499/5 500/5 +f 493/5 500/5 501/5 +f 501/5 494/5 493/5 +f 490/5 502/5 492/5 +f 492/5 502/5 503/5 +f 504/5 505/5 502/5 +f 502/5 505/5 506/5 +f 502/5 506/5 507/5 +f 507/5 508/5 502/5 +f 502/5 508/5 509/5 +f 502/5 509/5 510/5 +f 510/5 511/5 502/5 +f 502/5 511/5 512/5 +f 502/5 512/5 513/5 +f 513/5 514/5 502/5 +f 502/5 514/5 515/5 +f 502/5 515/5 516/5 +f 516/5 517/5 502/5 +f 502/5 517/5 518/5 +f 502/5 518/5 519/5 +f 519/5 503/5 502/5 +f 489/5 491/5 520/5 +f 520/5 491/5 521/5 +f 520/5 521/5 522/5 +f 522/5 523/5 520/5 +f 520/5 523/5 524/5 +f 520/5 524/5 525/5 +f 525/5 526/5 520/5 +f 520/5 526/5 527/5 +f 520/5 527/5 528/5 +f 528/5 529/5 520/5 +f 520/5 529/5 530/5 +f 520/5 530/5 531/5 +f 531/5 532/5 520/5 +f 520/5 532/5 533/5 +f 520/5 533/5 534/5 +f 534/5 535/5 520/5 +f 520/5 535/5 536/5 +f 520/5 536/5 537/5 +f 487/5 489/5 538/5 +f 538/5 489/5 539/5 +f 538/5 539/5 540/5 +f 540/5 541/5 538/5 +f 538/5 541/5 542/5 +f 538/5 542/5 543/5 +f 543/5 544/5 538/5 +f 538/5 544/5 545/5 +f 538/5 545/5 546/5 +f 547/5 548/5 549/5 +f 549/5 548/5 550/5 +f 549/5 550/5 551/5 +f 551/5 550/5 552/5 +f 551/5 552/5 553/5 +f 553/5 552/5 554/5 +f 553/5 554/5 555/5 +f 555/5 554/5 556/5 +f 555/5 556/5 557/5 +f 557/5 556/5 558/5 +f 557/5 558/5 559/5 +f 559/5 558/5 560/5 +f 559/5 560/5 561/5 +f 561/5 560/5 562/5 +f 561/5 562/5 563/5 +f 563/5 562/5 564/5 +f 563/5 564/5 565/5 +f 565/5 564/5 566/5 +f 565/5 566/5 567/5 +f 567/5 566/5 568/5 +f 567/5 568/5 569/5 +f 569/5 568/5 570/5 +f 569/5 570/5 571/5 +f 571/5 570/5 572/5 +f 568/5 573/5 570/5 +f 570/5 573/5 574/5 +f 575/5 576/5 573/5 +f 573/5 576/5 577/5 +f 573/5 577/5 578/5 +f 578/5 579/5 573/5 +f 573/5 579/5 580/5 +f 573/5 580/5 581/5 +f 581/5 574/5 573/5 +f 570/5 582/5 572/5 +f 572/5 582/5 583/5 +f 584/5 585/5 582/5 +f 582/5 585/5 586/5 +f 582/5 586/5 587/5 +f 587/5 588/5 582/5 +f 582/5 588/5 589/5 +f 582/5 589/5 590/5 +f 590/5 591/5 582/5 +f 582/5 591/5 592/5 +f 582/5 592/5 593/5 +f 593/5 594/5 582/5 +f 582/5 594/5 595/5 +f 582/5 595/5 596/5 +f 596/5 597/5 582/5 +f 582/5 597/5 598/5 +f 582/5 598/5 599/5 +f 599/5 583/5 582/5 +f 569/5 571/5 600/5 +f 600/5 571/5 601/5 +f 600/5 601/5 602/5 +f 602/5 603/5 600/5 +f 600/5 603/5 604/5 +f 600/5 604/5 605/5 +f 605/5 606/5 600/5 +f 600/5 606/5 607/5 +f 600/5 607/5 608/5 +f 608/5 609/5 600/5 +f 600/5 609/5 610/5 +f 600/5 610/5 611/5 +f 611/5 612/5 600/5 +f 600/5 612/5 613/5 +f 600/5 613/5 614/5 +f 614/5 615/5 600/5 +f 600/5 615/5 616/5 +f 600/5 616/5 617/5 +f 567/5 569/5 618/5 +f 618/5 569/5 619/5 +f 618/5 619/5 620/5 +f 620/5 621/5 618/5 +f 618/5 621/5 622/5 +f 618/5 622/5 623/5 +f 623/5 624/5 618/5 +f 618/5 624/5 625/5 +f 618/5 625/5 626/5 +f 627/5 628/5 629/5 +f 629/5 628/5 630/5 +f 631/5 632/5 633/5 +f 633/5 632/5 634/5 +f 635/5 636/5 637/5 +f 637/5 636/5 638/5 +f 635/5 639/5 636/5 +f 636/5 639/5 640/5 +f 639/5 641/5 640/5 +f 640/5 641/5 642/5 +f 641/5 643/5 642/5 +f 642/5 643/5 644/5 +f 643/5 645/5 644/5 +f 644/5 645/5 646/5 +f 645/5 647/5 646/5 +f 646/5 647/5 648/5 +f 647/5 649/5 648/5 +f 648/5 649/5 650/5 +f 649/5 651/5 650/5 +f 650/5 651/5 652/5 +f 651/5 653/5 652/5 +f 652/5 653/5 654/5 +f 653/5 655/5 654/5 +f 654/5 655/5 656/5 +f 655/5 657/5 656/5 +f 656/5 657/5 658/5 +f 657/5 659/5 658/5 +f 658/5 659/5 660/5 +f 659/5 661/5 660/5 +f 660/5 661/5 662/5 +f 661/5 663/5 662/5 +f 662/5 663/5 664/5 +f 663/5 665/5 664/5 +f 664/5 665/5 666/5 +f 665/5 667/5 666/5 +f 666/5 667/5 668/5 +f 667/5 669/5 668/5 +f 668/5 669/5 670/5 +f 669/5 671/5 670/5 +f 670/5 671/5 672/5 +f 671/5 631/5 672/5 +f 672/5 631/5 633/5 +f 632/5 673/5 634/5 +f 634/5 673/5 674/5 +f 673/5 675/5 674/5 +f 674/5 675/5 676/5 +f 675/5 677/5 676/5 +f 676/5 677/5 678/5 +f 677/5 679/5 678/5 +f 678/5 679/5 680/5 +f 679/5 681/5 680/5 +f 680/5 681/5 682/5 +f 681/5 683/5 682/5 +f 682/5 683/5 684/5 +f 683/5 685/5 684/5 +f 684/5 685/5 686/5 +f 685/5 687/5 686/5 +f 686/5 687/5 688/5 +f 687/5 628/5 688/5 +f 688/5 628/5 627/5 +f 630/5 689/5 629/5 +f 629/5 689/5 690/5 +f 689/5 691/5 690/5 +f 690/5 691/5 692/5 +f 691/5 693/5 692/5 +f 692/5 693/5 694/5 +f 693/5 695/5 694/5 +f 694/5 695/5 696/5 +f 695/5 697/5 696/5 +f 696/5 697/5 698/5 +f 697/5 699/5 698/5 +f 698/5 699/5 700/5 +f 699/5 701/5 700/5 +f 700/5 701/5 702/5 +f 701/5 703/5 702/5 +f 702/5 703/5 704/5 +f 703/5 457/5 704/5 +f 704/5 457/5 453/5 +f 705/5 706/5 707/5 +f 707/5 706/5 708/5 +f 709/5 710/5 711/5 +f 711/5 710/5 712/5 +f 709/5 713/5 710/5 +f 710/5 713/5 714/5 +f 713/5 715/5 714/5 +f 714/5 715/5 716/5 +f 715/5 717/5 716/5 +f 716/5 717/5 718/5 +f 717/5 719/5 718/5 +f 718/5 719/5 720/5 +f 719/5 721/5 720/5 +f 720/5 721/5 722/5 +f 721/5 723/5 722/5 +f 722/5 723/5 724/5 +f 723/5 725/5 724/5 +f 724/5 725/5 726/5 +f 725/5 727/5 726/5 +f 726/5 727/5 728/5 +f 727/5 729/5 728/5 +f 728/5 729/5 730/5 +f 729/5 731/5 730/5 +f 730/5 731/5 732/5 +f 731/5 733/5 732/5 +f 732/5 733/5 734/5 +f 733/5 735/5 734/5 +f 734/5 735/5 736/5 +f 735/5 737/5 736/5 +f 736/5 737/5 738/5 +f 737/5 739/5 738/5 +f 738/5 739/5 740/5 +f 739/5 741/5 740/5 +f 740/5 741/5 742/5 +f 741/5 743/5 742/5 +f 742/5 743/5 744/5 +f 743/5 745/5 744/5 +f 744/5 745/5 746/5 +f 745/5 637/5 746/5 +f 746/5 637/5 638/5 +f 708/5 747/5 707/5 +f 707/5 747/5 748/5 +f 747/5 749/5 748/5 +f 748/5 749/5 750/5 +f 749/5 751/5 750/5 +f 750/5 751/5 752/5 +f 751/5 753/5 752/5 +f 752/5 753/5 754/5 +f 753/5 755/5 754/5 +f 754/5 755/5 756/5 +f 755/5 757/5 756/5 +f 756/5 757/5 758/5 +f 757/5 759/5 758/5 +f 758/5 759/5 760/5 +f 759/5 761/5 760/5 +f 760/5 761/5 762/5 +f 761/5 711/5 762/5 +f 762/5 711/5 712/5 +f 426/5 763/5 421/5 +f 421/5 763/5 764/5 +f 763/5 765/5 764/5 +f 764/5 765/5 766/5 +f 765/5 767/5 766/5 +f 766/5 767/5 768/5 +f 767/5 769/5 768/5 +f 768/5 769/5 770/5 +f 769/5 771/5 770/5 +f 770/5 771/5 772/5 +f 771/5 773/5 772/5 +f 772/5 773/5 774/5 +f 773/5 775/5 774/5 +f 774/5 775/5 776/5 +f 775/5 777/5 776/5 +f 776/5 777/5 778/5 +f 777/5 706/5 778/5 +f 778/5 706/5 705/5 +f 345/5 347/5 779/5 +f 779/5 347/5 780/5 +f 781/5 782/5 783/5 +f 783/5 782/5 784/5 +f 784/5 782/5 785/5 +f 785/5 782/5 786/5 +f 785/5 786/5 787/5 +f 785/5 787/5 788/5 +f 788/5 787/5 789/5 +f 788/5 789/5 790/5 +f 790/5 789/5 791/5 +f 790/5 791/5 792/5 +f 792/5 791/5 793/5 +f 792/5 793/5 794/5 +f 794/5 793/5 795/5 +f 793/5 796/5 795/5 +f 795/5 796/5 797/5 +f 795/5 797/5 798/5 +f 798/5 797/5 799/5 +f 798/5 799/5 800/5 +f 800/5 799/5 801/5 +f 800/5 801/5 802/5 +f 802/5 801/5 803/5 +f 802/5 803/5 804/5 +f 804/5 803/5 805/5 +f 803/5 806/5 805/5 +f 805/5 806/5 807/5 +f 805/5 807/5 808/5 +f 808/5 807/5 809/5 +f 808/5 809/5 810/5 +f 810/5 809/5 811/5 +f 810/5 811/5 812/5 +f 812/5 811/5 813/5 +f 811/5 814/5 813/5 +f 813/5 814/5 815/5 +f 814/5 816/5 815/5 +f 815/5 816/5 817/5 +f 815/5 817/5 818/5 +f 818/5 817/5 819/5 +f 818/5 819/5 820/5 +f 820/5 819/5 821/5 +f 820/5 821/5 822/5 +f 822/5 821/5 823/5 +f 821/5 824/5 823/5 +f 823/5 824/5 825/5 +f 823/5 825/5 826/5 +f 826/5 825/5 827/5 +f 826/5 827/5 828/5 +f 828/5 827/5 829/5 +f 828/5 829/5 830/5 +f 830/5 829/5 831/5 +f 830/5 831/5 832/5 +f 832/5 831/5 833/5 +f 831/5 834/5 833/5 +f 833/5 834/5 835/5 +f 833/5 835/5 836/5 +f 836/5 835/5 837/5 +f 836/5 837/5 838/5 +f 838/5 837/5 839/5 +f 838/5 839/5 840/5 +f 840/5 839/5 841/5 +f 840/5 841/5 842/5 +f 842/5 841/5 843/5 +f 841/5 844/5 843/5 +f 843/5 844/5 845/5 +f 843/5 845/5 846/5 +f 847/5 848/5 849/5 +f 849/5 848/5 850/5 +f 850/5 848/5 851/5 +f 851/5 848/5 852/5 +f 851/5 852/5 853/5 +f 851/5 853/5 854/5 +f 854/5 853/5 855/5 +f 854/5 855/5 856/5 +f 856/5 855/5 857/5 +f 856/5 857/5 858/5 +f 858/5 857/5 859/5 +f 858/5 859/5 860/5 +f 860/5 859/5 861/5 +f 859/5 862/5 861/5 +f 861/5 862/5 863/5 +f 861/5 863/5 864/5 +f 864/5 863/5 865/5 +f 864/5 865/5 866/5 +f 866/5 865/5 867/5 +f 866/5 867/5 868/5 +f 868/5 867/5 869/5 +f 868/5 869/5 870/5 +f 870/5 869/5 871/5 +f 869/5 872/5 871/5 +f 871/5 872/5 873/5 +f 871/5 873/5 874/5 +f 874/5 873/5 875/5 +f 874/5 875/5 876/5 +f 876/5 875/5 877/5 +f 876/5 877/5 878/5 +f 878/5 877/5 879/5 +f 877/5 880/5 879/5 +f 879/5 880/5 881/5 +f 880/5 882/5 881/5 +f 881/5 882/5 883/5 +f 881/5 883/5 884/5 +f 884/5 883/5 885/5 +f 884/5 885/5 886/5 +f 886/5 885/5 887/5 +f 886/5 887/5 888/5 +f 888/5 887/5 889/5 +f 887/5 890/5 889/5 +f 889/5 890/5 891/5 +f 889/5 891/5 892/5 +f 892/5 891/5 893/5 +f 892/5 893/5 894/5 +f 894/5 893/5 895/5 +f 894/5 895/5 896/5 +f 896/5 895/5 897/5 +f 896/5 897/5 898/5 +f 898/5 897/5 899/5 +f 897/5 900/5 899/5 +f 899/5 900/5 901/5 +f 899/5 901/5 902/5 +f 902/5 901/5 903/5 +f 902/5 903/5 904/5 +f 904/5 903/5 905/5 +f 904/5 905/5 906/5 +f 906/5 905/5 907/5 +f 906/5 907/5 908/5 +f 908/5 907/5 909/5 +f 907/5 910/5 909/5 +f 909/5 910/5 911/5 +f 909/5 911/5 912/5 +f 913/5 914/5 915/5 +f 915/5 914/5 916/5 +f 915/5 916/5 917/5 +f 917/5 918/5 915/5 +f 915/5 918/5 919/5 +f 915/5 919/5 920/5 +f 920/5 921/5 915/5 +f 915/5 921/5 922/5 +f 915/5 922/5 923/5 +f 923/5 924/5 915/5 +f 915/5 924/5 925/5 +f 915/5 925/5 926/5 +f 926/5 927/5 915/5 +f 915/5 927/5 928/5 +f 915/5 928/5 929/5 +f 929/5 930/5 915/5 +f 915/5 930/5 931/5 +f 915/5 931/5 932/5 +f 932/5 933/5 915/5 +f 915/5 933/5 934/5 +f 915/5 934/5 935/5 +f 935/5 936/5 915/5 +f 915/5 936/5 937/5 +f 915/5 937/5 938/5 +f 938/5 939/5 915/5 +f 915/5 939/5 940/5 +f 915/5 940/5 941/5 +f 941/5 942/5 915/5 +f 915/5 942/5 943/5 +f 915/5 943/5 944/5 +f 944/5 945/5 915/5 +f 915/5 945/5 946/5 +f 946/5 945/5 947/5 +f 947/5 945/5 948/5 +f 947/5 948/5 949/5 +f 950/5 951/5 949/5 +f 949/5 951/5 952/5 +f 949/5 952/5 947/5 +f 950/5 953/5 951/5 +f 951/5 953/5 954/5 +f 951/5 954/5 955/5 +f 955/5 956/5 951/5 +f 951/5 956/5 957/5 +f 951/5 957/5 958/5 +f 958/5 959/5 951/5 +f 951/5 959/5 960/5 +f 951/5 960/5 961/5 +f 961/5 962/5 951/5 +f 951/5 962/5 963/5 +f 951/5 963/5 964/5 +f 964/5 965/5 951/5 +f 951/5 965/5 966/5 +f 951/5 966/5 967/5 +f 967/5 968/5 951/5 +f 951/5 968/5 969/5 +f 951/5 969/5 970/5 +f 970/5 971/5 951/5 +f 951/5 971/5 972/5 +f 951/5 972/5 973/5 +f 973/5 974/5 951/5 +f 951/5 974/5 975/5 +f 951/5 975/5 976/5 +f 976/5 977/5 951/5 +f 951/5 977/5 978/5 +f 951/5 978/5 979/5 +f 979/5 980/5 951/5 +f 951/5 980/5 981/5 +f 951/5 981/5 982/5 +f 781/5 783/5 983/5 +f 983/5 783/5 984/5 +f 983/5 984/5 985/5 +f 986/5 987/5 988/5 +f 988/5 987/5 989/5 +f 988/5 989/5 990/5 +f 990/5 989/5 991/5 +f 990/5 991/5 992/5 +f 992/5 991/5 993/5 +f 992/5 993/5 994/5 +f 994/5 993/5 995/5 +f 994/5 995/5 996/5 +f 996/5 995/5 997/5 +f 996/5 997/5 998/5 +f 998/5 997/5 999/5 +f 998/5 999/5 1000/5 +f 1000/5 999/5 1001/5 +f 1000/5 1001/5 985/5 +f 985/5 1001/5 1002/5 +f 985/5 1002/5 983/5 +f 986/5 1003/5 987/5 +f 987/5 1003/5 1004/5 +f 1003/5 1005/5 1004/5 +f 1004/5 1005/5 1006/5 +f 1005/5 1007/5 1006/5 +f 1006/5 1007/5 1008/5 +f 1007/5 1009/5 1008/5 +f 1008/5 1009/5 1010/5 +f 1009/5 1011/5 1010/5 +f 1010/5 1011/5 1012/5 +f 1011/5 1013/5 1012/5 +f 1012/5 1013/5 1014/5 +f 1013/5 1015/5 1014/5 +f 1014/5 1015/5 1016/5 +f 1015/5 1017/5 1016/5 +f 1016/5 1017/5 1018/5 +f 1017/5 847/5 1018/5 +f 1018/5 847/5 849/5 +f 1019/5 1020/5 1021/5 +f 1021/5 1020/5 1022/5 +f 1021/5 1022/5 1023/5 +f 1023/5 1024/5 1021/5 +f 1021/5 1024/5 1025/5 +f 1021/5 1025/5 1026/5 +f 1026/5 1027/5 1021/5 +f 1021/5 1027/5 1028/5 +f 1021/5 1028/5 1029/5 +f 1029/5 1030/5 1021/5 +f 1021/5 1030/5 1031/5 +f 1021/5 1031/5 1032/5 +f 1032/5 1033/5 1021/5 +f 1021/5 1033/5 1034/5 +f 1021/5 1034/5 1035/5 +f 1035/5 1036/5 1021/5 +f 1021/5 1036/5 1037/5 +f 1021/5 1037/5 1038/5 +f 1038/5 1039/5 1021/5 +f 1021/5 1039/5 1040/5 +f 1021/5 1040/5 1041/5 +f 1041/5 1042/5 1021/5 +f 1021/5 1042/5 1043/5 +f 1021/5 1043/5 1044/5 +f 1044/5 1045/5 1021/5 +f 1021/5 1045/5 1046/5 +f 1021/5 1046/5 1047/5 +f 1047/5 1048/5 1021/5 +f 1021/5 1048/5 1049/5 +f 1021/5 1049/5 1050/5 +f 1050/5 1051/5 1021/5 +f 1021/5 1051/5 1052/5 +f 1052/5 1051/5 1053/5 +f 1053/5 1051/5 1054/5 +f 1053/5 1054/5 1055/5 +f 1056/5 1057/5 1055/5 +f 1055/5 1057/5 1058/5 +f 1055/5 1058/5 1053/5 +f 1056/5 1059/5 1057/5 +f 1057/5 1059/5 1060/5 +f 1057/5 1060/5 1061/5 +f 1061/5 1062/5 1057/5 +f 1057/5 1062/5 1063/5 +f 1057/5 1063/5 1064/5 +f 1064/5 1065/5 1057/5 +f 1057/5 1065/5 1066/5 +f 1057/5 1066/5 1067/5 +f 1067/5 1068/5 1057/5 +f 1057/5 1068/5 1069/5 +f 1057/5 1069/5 1070/5 +f 1070/5 1071/5 1057/5 +f 1057/5 1071/5 1072/5 +f 1057/5 1072/5 1073/5 +f 1073/5 1074/5 1057/5 +f 1057/5 1074/5 1075/5 +f 1057/5 1075/5 1076/5 +f 1076/5 1077/5 1057/5 +f 1057/5 1077/5 1078/5 +f 1057/5 1078/5 1079/5 +f 1079/5 1080/5 1057/5 +f 1057/5 1080/5 1081/5 +f 1057/5 1081/5 1082/5 +f 1082/5 1083/5 1057/5 +f 1057/5 1083/5 1084/5 +f 1057/5 1084/5 1085/5 +f 1085/5 1086/5 1057/5 +f 1057/5 1086/5 1087/5 +f 1057/5 1087/5 1088/5 +f 846/5 845/5 1089/5 +f 1089/5 845/5 1090/5 +f 1089/5 1090/5 1091/5 +f 1091/5 1090/5 1092/5 +f 1093/5 1094/5 1095/5 +f 1095/5 1094/5 1096/5 +f 1095/5 1096/5 1097/5 +f 1093/5 1098/5 1094/5 +f 1094/5 1098/5 1099/5 +f 1094/5 1099/5 1100/5 +f 1100/5 1101/5 1094/5 +f 1094/5 1101/5 1102/5 +f 1094/5 1102/5 1103/5 +f 1103/5 1104/5 1094/5 +f 1094/5 1104/5 1105/5 +f 1094/5 1105/5 1106/5 +f 1106/5 1107/5 1094/5 +f 1094/5 1107/5 1108/5 +f 1094/5 1108/5 1109/5 +f 1109/5 1110/5 1094/5 +f 1094/5 1110/5 1111/5 +f 1094/5 1111/5 1112/5 +f 1112/5 1113/5 1094/5 +f 1094/5 1113/5 1114/5 +f 1094/5 1114/5 1115/5 +f 1115/5 1116/5 1094/5 +f 1094/5 1116/5 1117/5 +f 1094/5 1117/5 1118/5 +f 1118/5 1119/5 1094/5 +f 1094/5 1119/5 1120/5 +f 1094/5 1120/5 1121/5 +f 1121/5 1122/5 1094/5 +f 1094/5 1122/5 1123/5 +f 1094/5 1123/5 1124/5 +f 1124/5 1125/5 1094/5 +f 1094/5 1125/5 1126/5 +f 1094/5 1126/5 1127/5 +f 1128/5 1129/5 1097/5 +f 1097/5 1129/5 1130/5 +f 1097/5 1130/5 1095/5 +f 1128/5 1131/5 1129/5 +f 1129/5 1131/5 1132/5 +f 1133/5 1134/5 1131/5 +f 1131/5 1134/5 1135/5 +f 1131/5 1135/5 1136/5 +f 1136/5 1137/5 1131/5 +f 1131/5 1137/5 1138/5 +f 1131/5 1138/5 1139/5 +f 1139/5 1140/5 1131/5 +f 1131/5 1140/5 1141/5 +f 1131/5 1141/5 1142/5 +f 1142/5 1143/5 1131/5 +f 1131/5 1143/5 1144/5 +f 1131/5 1144/5 1145/5 +f 1145/5 1146/5 1131/5 +f 1131/5 1146/5 1147/5 +f 1131/5 1147/5 1148/5 +f 1148/5 1149/5 1131/5 +f 1131/5 1149/5 1150/5 +f 1131/5 1150/5 1151/5 +f 1151/5 1152/5 1131/5 +f 1131/5 1152/5 1153/5 +f 1131/5 1153/5 1154/5 +f 1154/5 1155/5 1131/5 +f 1131/5 1155/5 1156/5 +f 1131/5 1156/5 1157/5 +f 1157/5 1158/5 1131/5 +f 1131/5 1158/5 1159/5 +f 1131/5 1159/5 1160/5 +f 1160/5 1161/5 1131/5 +f 1131/5 1161/5 1162/5 +f 1131/5 1162/5 1132/5 +f 1163/5 1164/5 1165/5 +f 1165/5 1164/5 1166/5 +f 1165/5 1166/5 1167/5 +f 1164/5 1168/5 1166/5 +f 1165/5 1167/5 1169/5 +f 1169/5 1167/5 1170/5 +f 1169/5 1170/5 1171/5 +f 1171/5 1170/5 1172/5 +f 1171/5 1172/5 1173/5 +f 1173/5 1172/5 1174/5 +f 1173/5 1174/5 1175/5 +f 1175/5 1174/5 1176/5 +f 1175/5 1176/5 1177/5 +f 1177/5 1176/5 1178/5 +f 1177/5 1178/5 1179/5 +f 1179/5 1178/5 1097/5 +f 1179/5 1097/5 1096/5 +f 1178/5 1128/5 1097/5 +f 1180/5 1168/5 1181/5 +f 1181/5 1168/5 1164/5 +f 1181/5 1164/5 1182/5 +f 1182/5 1164/5 1163/5 +f 1180/5 1181/5 1183/5 +f 1183/5 1181/5 1184/5 +f 1183/5 1184/5 1185/5 +f 1181/5 1182/5 1184/5 +f 1183/5 1185/5 1186/5 +f 1186/5 1185/5 1187/5 +f 1186/5 1187/5 1188/5 +f 1188/5 1187/5 1189/5 +f 1188/5 1189/5 1190/5 +f 1190/5 1189/5 1191/5 +f 1190/5 1191/5 1192/5 +f 1192/5 1191/5 1193/5 +f 1192/5 1193/5 1194/5 +f 1194/5 1193/5 1195/5 +f 1194/5 1195/5 1196/5 +f 1196/5 1195/5 1053/5 +f 1196/5 1053/5 1058/5 +f 1195/5 1052/5 1053/5 +f 911/5 1197/5 912/5 +f 912/5 1197/5 1198/5 +f 1197/5 1199/5 1198/5 +f 1198/5 1199/5 1200/5 +f 1201/5 1202/5 1203/5 +f 1203/5 1202/5 1204/5 +f 1203/5 1204/5 1205/5 +f 1201/5 1206/5 1202/5 +f 1202/5 1206/5 1207/5 +f 1202/5 1207/5 1208/5 +f 1208/5 1209/5 1202/5 +f 1202/5 1209/5 1210/5 +f 1202/5 1210/5 1211/5 +f 1211/5 1212/5 1202/5 +f 1202/5 1212/5 1213/5 +f 1202/5 1213/5 1214/5 +f 1214/5 1215/5 1202/5 +f 1202/5 1215/5 1216/5 +f 1202/5 1216/5 1217/5 +f 1217/5 1218/5 1202/5 +f 1202/5 1218/5 1219/5 +f 1202/5 1219/5 1220/5 +f 1220/5 1221/5 1202/5 +f 1202/5 1221/5 1222/5 +f 1202/5 1222/5 1223/5 +f 1223/5 1224/5 1202/5 +f 1202/5 1224/5 1225/5 +f 1202/5 1225/5 1226/5 +f 1226/5 1227/5 1202/5 +f 1202/5 1227/5 1228/5 +f 1202/5 1228/5 1229/5 +f 1229/5 1230/5 1202/5 +f 1202/5 1230/5 1231/5 +f 1202/5 1231/5 1232/5 +f 1232/5 1233/5 1202/5 +f 1202/5 1233/5 1234/5 +f 1202/5 1234/5 1235/5 +f 1236/5 1237/5 1205/5 +f 1205/5 1237/5 1238/5 +f 1205/5 1238/5 1203/5 +f 1236/5 1239/5 1237/5 +f 1237/5 1239/5 1240/5 +f 1241/5 1242/5 1239/5 +f 1239/5 1242/5 1243/5 +f 1239/5 1243/5 1244/5 +f 1244/5 1245/5 1239/5 +f 1239/5 1245/5 1246/5 +f 1239/5 1246/5 1247/5 +f 1247/5 1248/5 1239/5 +f 1239/5 1248/5 1249/5 +f 1239/5 1249/5 1250/5 +f 1250/5 1251/5 1239/5 +f 1239/5 1251/5 1252/5 +f 1239/5 1252/5 1253/5 +f 1253/5 1254/5 1239/5 +f 1239/5 1254/5 1255/5 +f 1239/5 1255/5 1256/5 +f 1256/5 1257/5 1239/5 +f 1239/5 1257/5 1258/5 +f 1239/5 1258/5 1259/5 +f 1259/5 1260/5 1239/5 +f 1239/5 1260/5 1261/5 +f 1239/5 1261/5 1262/5 +f 1262/5 1263/5 1239/5 +f 1239/5 1263/5 1264/5 +f 1239/5 1264/5 1265/5 +f 1265/5 1266/5 1239/5 +f 1239/5 1266/5 1267/5 +f 1239/5 1267/5 1268/5 +f 1268/5 1269/5 1239/5 +f 1239/5 1269/5 1270/5 +f 1239/5 1270/5 1240/5 +f 1271/5 1272/5 1273/5 +f 1273/5 1272/5 1274/5 +f 1273/5 1274/5 1275/5 +f 1272/5 1276/5 1274/5 +f 1274/5 1276/5 1277/5 +f 1276/5 1278/5 1277/5 +f 1277/5 1278/5 1279/5 +f 1278/5 1280/5 1279/5 +f 1279/5 1280/5 1281/5 +f 1280/5 1282/5 1281/5 +f 1281/5 1282/5 1283/5 +f 1282/5 1284/5 1283/5 +f 1283/5 1284/5 1285/5 +f 1284/5 1286/5 1285/5 +f 1285/5 1286/5 1287/5 +f 1236/5 1205/5 1286/5 +f 1286/5 1205/5 1287/5 +f 1205/5 1204/5 1287/5 +f 1275/5 1288/5 1273/5 +f 1273/5 1288/5 1289/5 +f 1273/5 1289/5 1271/5 +f 1271/5 1289/5 1290/5 +f 1290/5 1289/5 1291/5 +f 1291/5 1289/5 1292/5 +f 1291/5 1292/5 1293/5 +f 1289/5 1288/5 1292/5 +f 1291/5 1293/5 1294/5 +f 1294/5 1293/5 1295/5 +f 1294/5 1295/5 1296/5 +f 1296/5 1295/5 1297/5 +f 1296/5 1297/5 1298/5 +f 1298/5 1297/5 1299/5 +f 1298/5 1299/5 1300/5 +f 1300/5 1299/5 1301/5 +f 1300/5 1301/5 1302/5 +f 1302/5 1301/5 1303/5 +f 1302/5 1303/5 1304/5 +f 1304/5 1303/5 947/5 +f 1304/5 947/5 952/5 +f 1303/5 946/5 947/5 +f 1305/5 1306/5 1307/5 +f 1307/5 1306/5 1308/5 +f 1306/5 1309/5 1308/5 +f 1308/5 1309/5 1310/5 +f 1311/5 1312/5 1313/5 +f 1313/5 1312/5 1314/5 +f 1312/5 1315/5 1314/5 +f 1314/5 1315/5 1316/5 +f 1316/5 1315/5 1317/5 +f 1317/5 1315/5 1318/5 +f 1317/5 1318/5 1319/5 +f 1317/5 1319/5 1320/5 +f 1320/5 1319/5 1321/5 +f 1320/5 1321/5 1322/5 +f 1322/5 1321/5 1323/5 +f 1322/5 1323/5 1324/5 +f 1324/5 1323/5 1325/5 +f 1324/5 1325/5 1326/5 +f 1326/5 1325/5 1327/5 +f 1325/5 1328/5 1327/5 +f 1327/5 1328/5 1329/5 +f 1327/5 1329/5 1330/5 +f 1330/5 1329/5 1331/5 +f 1330/5 1331/5 1332/5 +f 1332/5 1331/5 1333/5 +f 1332/5 1333/5 1334/5 +f 1334/5 1333/5 1335/5 +f 1334/5 1335/5 1336/5 +f 1336/5 1335/5 1337/5 +f 1335/5 1338/5 1337/5 +f 1337/5 1338/5 1339/5 +f 1337/5 1339/5 1340/5 +f 1340/5 1339/5 1341/5 +f 1340/5 1341/5 1342/5 +f 1342/5 1341/5 1343/5 +f 1342/5 1343/5 1344/5 +f 1344/5 1343/5 1345/5 +f 1344/5 1345/5 1346/5 +f 1346/5 1345/5 1347/5 +f 1345/5 1348/5 1347/5 +f 1347/5 1348/5 1349/5 +f 1347/5 1349/5 1350/5 +f 1350/5 1349/5 1351/5 +f 1350/5 1351/5 1352/5 +f 1352/5 1351/5 1353/5 +f 1352/5 1353/5 1354/5 +f 1354/5 1353/5 1355/5 +f 1354/5 1355/5 1356/5 +f 1356/5 1355/5 1357/5 +f 1355/5 1358/5 1357/5 +f 1357/5 1358/5 1359/5 +f 1357/5 1359/5 1360/5 +f 1360/5 1359/5 1361/5 +f 1360/5 1361/5 1362/5 +f 1362/5 1361/5 1363/5 +f 1362/5 1363/5 1364/5 +f 1364/5 1363/5 1365/5 +f 1364/5 1365/5 1366/5 +f 1366/5 1365/5 1367/5 +f 1365/5 1368/5 1367/5 +f 1367/5 1368/5 1369/5 +f 1367/5 1369/5 1370/5 +f 1370/5 1369/5 1371/5 +f 1370/5 1371/5 1372/5 +f 1372/5 1371/5 1373/5 +f 1372/5 1373/5 1374/5 +f 1374/5 1373/5 1199/5 +f 1373/5 1200/5 1199/5 +f 1091/5 1092/5 1375/5 +f 1375/5 1092/5 1376/5 +f 1375/5 1376/5 1377/5 +f 1375/5 1377/5 1378/5 +f 1378/5 1377/5 1379/5 +f 1378/5 1379/5 1380/5 +f 1380/5 1379/5 1381/5 +f 1380/5 1381/5 1382/5 +f 1382/5 1381/5 1383/5 +f 1381/5 1384/5 1383/5 +f 1383/5 1384/5 1385/5 +f 1383/5 1385/5 1386/5 +f 1386/5 1385/5 1387/5 +f 1386/5 1387/5 1388/5 +f 1388/5 1387/5 1389/5 +f 1388/5 1389/5 1390/5 +f 1390/5 1389/5 1391/5 +f 1390/5 1391/5 1392/5 +f 1392/5 1391/5 1393/5 +f 1391/5 1394/5 1393/5 +f 1393/5 1394/5 1395/5 +f 1393/5 1395/5 1396/5 +f 1396/5 1395/5 1397/5 +f 1396/5 1397/5 1398/5 +f 1398/5 1397/5 1399/5 +f 1398/5 1399/5 1400/5 +f 1400/5 1399/5 1401/5 +f 1400/5 1401/5 1402/5 +f 1402/5 1401/5 1403/5 +f 1401/5 1404/5 1403/5 +f 1403/5 1404/5 1405/5 +f 1403/5 1405/5 1406/5 +f 1406/5 1405/5 1407/5 +f 1406/5 1407/5 1408/5 +f 1408/5 1407/5 1409/5 +f 1408/5 1409/5 1410/5 +f 1410/5 1409/5 1411/5 +f 1410/5 1411/5 1412/5 +f 1412/5 1411/5 1413/5 +f 1411/5 1414/5 1413/5 +f 1413/5 1414/5 1415/5 +f 1413/5 1415/5 1416/5 +f 1416/5 1415/5 1417/5 +f 1416/5 1417/5 1418/5 +f 1418/5 1417/5 1419/5 +f 1418/5 1419/5 1420/5 +f 1420/5 1419/5 1421/5 +f 1420/5 1421/5 1422/5 +f 1422/5 1421/5 1423/5 +f 1421/5 1424/5 1423/5 +f 1423/5 1424/5 1425/5 +f 1423/5 1425/5 1426/5 +f 1426/5 1425/5 1427/5 +f 1426/5 1427/5 1428/5 +f 1428/5 1427/5 1429/5 +f 1428/5 1429/5 1430/5 +f 1430/5 1429/5 1431/5 +f 1430/5 1431/5 1432/5 +f 1432/5 1431/5 1433/5 +f 1431/5 1434/5 1433/5 +f 1433/5 1434/5 1435/5 +f 1433/5 1435/5 1436/5 +f 1436/5 1435/5 1437/5 +f 1436/5 1437/5 1438/5 +f 1439/5 1440/5 1441/5 +f 1441/5 1440/5 1442/5 +f 1441/5 1442/5 1443/5 +f 1441/5 1443/5 1444/5 +f 1444/5 1443/5 1445/5 +f 1444/5 1445/5 1446/5 +f 1446/5 1445/5 1447/5 +f 1446/5 1447/5 1448/5 +f 1448/5 1447/5 1449/5 +f 1448/5 1449/5 1450/5 +f 1450/5 1449/5 1451/5 +f 1449/5 1452/5 1451/5 +f 1451/5 1452/5 1453/5 +f 1451/5 1453/5 1454/5 +f 1454/5 1453/5 1455/5 +f 1454/5 1455/5 1456/5 +f 1456/5 1455/5 1457/5 +f 1456/5 1457/5 1458/5 +f 1458/5 1457/5 1459/5 +f 1458/5 1459/5 1460/5 +f 1460/5 1459/5 1461/5 +f 1459/5 1462/5 1461/5 +f 1461/5 1462/5 1463/5 +f 1461/5 1463/5 1464/5 +f 1464/5 1463/5 1465/5 +f 1464/5 1465/5 1466/5 +f 1466/5 1465/5 1467/5 +f 1466/5 1467/5 1468/5 +f 1468/5 1467/5 1469/5 +f 1468/5 1469/5 1470/5 +f 1470/5 1469/5 1471/5 +f 1469/5 1472/5 1471/5 +f 1471/5 1472/5 1473/5 +f 1472/5 1474/5 1473/5 +f 1473/5 1474/5 1475/5 +f 1473/5 1475/5 1476/5 +f 1476/5 1475/5 1477/5 +f 1476/5 1477/5 1478/5 +f 1478/5 1477/5 1479/5 +f 1478/5 1479/5 1480/5 +f 1480/5 1479/5 1481/5 +f 1480/5 1481/5 1482/5 +f 1482/5 1481/5 1483/5 +f 1481/5 1484/5 1483/5 +f 1483/5 1484/5 1485/5 +f 1483/5 1485/5 1486/5 +f 1486/5 1485/5 1487/5 +f 1486/5 1487/5 1488/5 +f 1488/5 1487/5 1489/5 +f 1488/5 1489/5 1490/5 +f 1490/5 1489/5 1491/5 +f 1490/5 1491/5 1492/5 +f 1492/5 1491/5 1493/5 +f 1491/5 1494/5 1493/5 +f 1493/5 1494/5 1495/5 +f 1493/5 1495/5 1496/5 +f 1496/5 1495/5 1497/5 +f 1496/5 1497/5 1498/5 +f 1498/5 1497/5 1499/5 +f 1498/5 1499/5 1500/5 +f 1500/5 1499/5 1501/5 +f 1500/5 1501/5 1502/5 +f 1502/5 1501/5 1307/5 +f 1501/5 1305/5 1307/5 +f 1503/5 1504/5 1505/5 +f 1505/5 1504/5 1506/5 +f 1504/5 1507/5 1506/5 +f 1506/5 1507/5 1508/5 +f 1507/5 1509/5 1508/5 +f 1508/5 1509/5 1510/5 +f 1509/5 1511/5 1510/5 +f 1510/5 1511/5 1512/5 +f 1511/5 1513/5 1512/5 +f 1512/5 1513/5 1514/5 +f 1513/5 1515/5 1514/5 +f 1514/5 1515/5 1516/5 +f 1515/5 1517/5 1516/5 +f 1516/5 1517/5 1518/5 +f 1517/5 1519/5 1518/5 +f 1518/5 1519/5 1520/5 +f 1519/5 1521/5 1520/5 +f 1520/5 1521/5 1522/5 +f 1521/5 1523/5 1522/5 +f 1522/5 1523/5 1524/5 +f 1523/5 1525/5 1524/5 +f 1524/5 1525/5 1526/5 +f 1525/5 1527/5 1526/5 +f 1526/5 1527/5 1528/5 +f 1527/5 1529/5 1528/5 +f 1528/5 1529/5 1530/5 +f 1529/5 1531/5 1530/5 +f 1530/5 1531/5 1532/5 +f 1531/5 1533/5 1532/5 +f 1532/5 1533/5 1534/5 +f 1533/5 1535/5 1534/5 +f 1534/5 1535/5 1536/5 +f 1535/5 1537/5 1536/5 +f 1536/5 1537/5 1538/5 +f 1537/5 1539/5 1538/5 +f 1538/5 1539/5 1540/5 +f 1539/5 1541/5 1540/5 +f 1540/5 1541/5 1542/5 +f 1541/5 1543/5 1542/5 +f 1542/5 1543/5 1544/5 +f 1544/5 1543/5 1545/5 +f 1545/5 1543/5 1546/5 +f 1545/5 1546/5 1547/5 +f 1545/5 1547/5 1548/5 +f 1548/5 1547/5 1549/5 +f 1548/5 1549/5 1550/5 +f 1550/5 1549/5 1551/5 +f 1550/5 1551/5 1552/5 +f 1552/5 1551/5 1553/5 +f 1552/5 1553/5 1554/5 +f 1554/5 1553/5 1555/5 +f 1554/5 1555/5 1556/5 +f 1556/5 1555/5 1557/5 +f 1556/5 1557/5 1558/5 +f 1558/5 1557/5 1559/5 +f 1558/5 1559/5 1560/5 +f 1560/5 1559/5 1561/5 +f 1560/5 1561/5 1562/5 +f 1562/5 1561/5 1563/5 +f 1562/5 1563/5 1564/5 +f 1564/5 1563/5 1565/5 +f 1564/5 1565/5 1566/5 +f 1566/5 1565/5 1271/5 +f 1566/5 1271/5 1290/5 +f 1567/5 1503/5 1568/5 +f 1568/5 1503/5 1505/5 +f 1568/5 1505/5 1569/5 +f 1570/5 1571/5 1572/5 +f 1572/5 1571/5 1573/5 +f 1572/5 1573/5 1574/5 +f 1573/5 1571/5 1575/5 +f 1575/5 1571/5 1576/5 +f 1575/5 1576/5 1577/5 +f 1575/5 1577/5 1578/5 +f 1578/5 1577/5 1579/5 +f 1578/5 1579/5 1580/5 +f 1580/5 1579/5 1581/5 +f 1580/5 1581/5 1582/5 +f 1582/5 1581/5 1583/5 +f 1582/5 1583/5 1584/5 +f 1584/5 1583/5 1585/5 +f 1583/5 1586/5 1585/5 +f 1585/5 1586/5 1587/5 +f 1585/5 1587/5 1588/5 +f 1588/5 1587/5 1589/5 +f 1588/5 1589/5 1590/5 +f 1590/5 1589/5 1591/5 +f 1589/5 1592/5 1591/5 +f 1591/5 1592/5 1593/5 +f 1591/5 1593/5 1594/5 +f 1594/5 1593/5 1595/5 +f 1593/5 1596/5 1595/5 +f 1595/5 1596/5 1597/5 +f 1595/5 1597/5 1598/5 +f 1598/5 1597/5 1599/5 +f 1598/5 1599/5 1600/5 +f 1600/5 1599/5 1601/5 +f 1600/5 1601/5 1602/5 +f 1602/5 1601/5 1568/5 +f 1602/5 1568/5 1569/5 +f 1601/5 1567/5 1568/5 +f 1603/5 1570/5 1604/5 +f 1604/5 1570/5 1572/5 +f 1604/5 1572/5 1605/5 +f 1605/5 1572/5 1606/5 +f 1572/5 1574/5 1606/5 +f 1606/5 1574/5 1607/5 +f 1606/5 1607/5 1608/5 +f 1608/5 1609/5 1606/5 +f 1606/5 1609/5 1610/5 +f 1606/5 1610/5 1611/5 +f 1611/5 1612/5 1606/5 +f 1606/5 1612/5 1613/5 +f 1606/5 1613/5 1614/5 +f 1614/5 1615/5 1606/5 +f 1606/5 1615/5 1616/5 +f 1606/5 1616/5 1617/5 +f 1617/5 1618/5 1606/5 +f 1606/5 1618/5 1619/5 +f 1606/5 1619/5 1620/5 +f 1620/5 1621/5 1606/5 +f 1606/5 1621/5 1622/5 +f 1606/5 1622/5 1623/5 +f 1623/5 1624/5 1606/5 +f 1606/5 1624/5 1625/5 +f 1606/5 1625/5 1626/5 +f 1626/5 1627/5 1606/5 +f 1606/5 1627/5 1628/5 +f 1606/5 1628/5 1629/5 +f 1629/5 1630/5 1606/5 +f 1606/5 1630/5 1631/5 +f 1606/5 1631/5 1632/5 +f 1632/5 1633/5 1606/5 +f 1606/5 1633/5 1634/5 +f 1606/5 1634/5 1635/5 +f 1635/5 1636/5 1606/5 +f 1606/5 1636/5 1637/5 +f 1606/5 1637/5 1638/5 +f 1639/5 1640/5 1604/5 +f 1604/5 1640/5 1641/5 +f 1604/5 1641/5 1642/5 +f 1642/5 1643/5 1604/5 +f 1604/5 1643/5 1644/5 +f 1604/5 1644/5 1645/5 +f 1645/5 1646/5 1604/5 +f 1604/5 1646/5 1647/5 +f 1604/5 1647/5 1648/5 +f 1648/5 1649/5 1604/5 +f 1604/5 1649/5 1650/5 +f 1604/5 1650/5 1651/5 +f 1651/5 1652/5 1604/5 +f 1604/5 1652/5 1653/5 +f 1604/5 1653/5 1654/5 +f 1654/5 1655/5 1604/5 +f 1604/5 1655/5 1656/5 +f 1604/5 1656/5 1657/5 +f 1657/5 1658/5 1604/5 +f 1604/5 1658/5 1659/5 +f 1604/5 1659/5 1660/5 +f 1660/5 1661/5 1604/5 +f 1604/5 1661/5 1662/5 +f 1604/5 1662/5 1663/5 +f 1663/5 1664/5 1604/5 +f 1604/5 1664/5 1665/5 +f 1604/5 1665/5 1666/5 +f 1666/5 1667/5 1604/5 +f 1604/5 1667/5 1668/5 +f 1604/5 1668/5 1669/5 +f 1669/5 1603/5 1604/5 +f 1310/5 1309/5 1670/5 +f 1670/5 1309/5 1671/5 +f 1670/5 1671/5 1672/5 +f 1670/5 1672/5 1673/5 +f 1673/5 1672/5 1674/5 +f 1673/5 1674/5 1675/5 +f 1675/5 1674/5 1676/5 +f 1675/5 1676/5 1677/5 +f 1677/5 1676/5 1678/5 +f 1676/5 1679/5 1678/5 +f 1678/5 1679/5 1680/5 +f 1678/5 1680/5 1681/5 +f 1681/5 1680/5 1682/5 +f 1681/5 1682/5 1683/5 +f 1683/5 1682/5 1684/5 +f 1683/5 1684/5 1685/5 +f 1685/5 1684/5 1686/5 +f 1685/5 1686/5 1687/5 +f 1687/5 1686/5 1688/5 +f 1686/5 1689/5 1688/5 +f 1688/5 1689/5 1690/5 +f 1688/5 1690/5 1691/5 +f 1691/5 1690/5 1692/5 +f 1691/5 1692/5 1693/5 +f 1693/5 1692/5 1694/5 +f 1693/5 1694/5 1695/5 +f 1695/5 1694/5 1696/5 +f 1695/5 1696/5 1697/5 +f 1697/5 1696/5 1698/5 +f 1696/5 1699/5 1698/5 +f 1698/5 1699/5 1700/5 +f 1698/5 1700/5 1701/5 +f 1701/5 1700/5 1702/5 +f 1701/5 1702/5 1703/5 +f 1703/5 1702/5 1704/5 +f 1703/5 1704/5 1705/5 +f 1705/5 1704/5 1706/5 +f 1705/5 1706/5 1707/5 +f 1707/5 1706/5 1708/5 +f 1706/5 1709/5 1708/5 +f 1708/5 1709/5 1710/5 +f 1708/5 1710/5 1711/5 +f 1711/5 1710/5 1712/5 +f 1711/5 1712/5 1713/5 +f 1713/5 1712/5 1714/5 +f 1713/5 1714/5 1715/5 +f 1715/5 1714/5 1716/5 +f 1715/5 1716/5 1717/5 +f 1717/5 1716/5 1718/5 +f 1716/5 1719/5 1718/5 +f 1718/5 1719/5 1720/5 +f 1718/5 1720/5 1721/5 +f 1721/5 1720/5 1722/5 +f 1721/5 1722/5 1723/5 +f 1723/5 1722/5 1724/5 +f 1723/5 1724/5 1725/5 +f 1725/5 1724/5 1726/5 +f 1725/5 1726/5 1727/5 +f 1727/5 1726/5 1728/5 +f 1726/5 1729/5 1728/5 +f 1728/5 1729/5 1730/5 +f 1728/5 1730/5 1731/5 +f 1731/5 1730/5 1732/5 +f 1731/5 1732/5 1733/5 +f 1734/5 1735/5 1736/5 +f 1736/5 1735/5 1737/5 +f 1736/5 1737/5 1738/5 +f 1738/5 1737/5 1739/5 +f 1738/5 1739/5 1740/5 +f 1740/5 1739/5 1741/5 +f 1740/5 1741/5 1742/5 +f 1743/5 1744/5 1736/5 +f 1736/5 1744/5 1745/5 +f 1736/5 1745/5 1746/5 +f 1746/5 1747/5 1736/5 +f 1736/5 1747/5 1748/5 +f 1736/5 1748/5 1749/5 +f 1749/5 1750/5 1736/5 +f 1736/5 1750/5 1751/5 +f 1736/5 1751/5 1752/5 +f 1752/5 1753/5 1736/5 +f 1736/5 1753/5 1754/5 +f 1736/5 1754/5 1755/5 +f 1755/5 1756/5 1736/5 +f 1736/5 1756/5 1757/5 +f 1736/5 1757/5 1758/5 +f 1758/5 1759/5 1736/5 +f 1736/5 1759/5 1760/5 +f 1736/5 1760/5 1761/5 +f 1761/5 1762/5 1736/5 +f 1736/5 1762/5 1763/5 +f 1736/5 1763/5 1764/5 +f 1764/5 1765/5 1736/5 +f 1736/5 1765/5 1766/5 +f 1736/5 1766/5 1767/5 +f 1767/5 1768/5 1736/5 +f 1736/5 1768/5 1769/5 +f 1736/5 1769/5 1770/5 +f 1770/5 1771/5 1736/5 +f 1736/5 1771/5 1772/5 +f 1736/5 1772/5 1734/5 +f 1742/5 1773/5 1740/5 +f 1740/5 1773/5 1774/5 +f 1740/5 1774/5 1775/5 +f 1775/5 1776/5 1740/5 +f 1740/5 1776/5 1777/5 +f 1740/5 1777/5 1778/5 +f 1778/5 1779/5 1740/5 +f 1740/5 1779/5 1780/5 +f 1740/5 1780/5 1781/5 +f 1781/5 1782/5 1740/5 +f 1740/5 1782/5 1783/5 +f 1740/5 1783/5 1784/5 +f 1784/5 1785/5 1740/5 +f 1740/5 1785/5 1786/5 +f 1740/5 1786/5 1787/5 +f 1787/5 1788/5 1740/5 +f 1740/5 1788/5 1789/5 +f 1740/5 1789/5 1790/5 +f 1790/5 1791/5 1740/5 +f 1740/5 1791/5 1792/5 +f 1740/5 1792/5 1793/5 +f 1793/5 1794/5 1740/5 +f 1740/5 1794/5 1795/5 +f 1740/5 1795/5 1796/5 +f 1796/5 1797/5 1740/5 +f 1740/5 1797/5 1798/5 +f 1740/5 1798/5 1799/5 +f 1799/5 1800/5 1740/5 +f 1740/5 1800/5 1801/5 +f 1740/5 1801/5 1802/5 +f 1737/5 1803/5 1739/5 +f 1739/5 1803/5 1804/5 +f 1804/5 1803/5 1805/5 +f 1805/5 1803/5 1806/5 +f 1805/5 1806/5 1807/5 +f 1805/5 1807/5 1808/5 +f 1808/5 1807/5 1809/5 +f 1808/5 1809/5 1810/5 +f 1810/5 1809/5 1811/5 +f 1810/5 1811/5 1812/5 +f 1812/5 1811/5 1813/5 +f 1812/5 1813/5 1814/5 +f 1814/5 1813/5 1815/5 +f 1813/5 1816/5 1815/5 +f 1815/5 1816/5 1817/5 +f 1815/5 1817/5 1818/5 +f 1818/5 1817/5 1819/5 +f 1818/5 1819/5 1820/5 +f 1820/5 1819/5 1821/5 +f 1819/5 1822/5 1821/5 +f 1821/5 1822/5 1823/5 +f 1821/5 1823/5 1824/5 +f 1824/5 1823/5 1825/5 +f 1823/5 1826/5 1825/5 +f 1825/5 1826/5 1827/5 +f 1825/5 1827/5 1828/5 +f 1828/5 1827/5 1829/5 +f 1828/5 1829/5 1830/5 +f 1830/5 1829/5 1831/5 +f 1830/5 1831/5 1832/5 +f 1832/5 1831/5 1833/5 +f 1832/5 1833/5 1834/5 +f 1311/5 1835/5 1836/5 +f 1836/5 1835/5 1837/5 +f 1836/5 1837/5 1838/5 +f 1838/5 1837/5 1839/5 +f 1838/5 1839/5 1840/5 +f 1840/5 1839/5 1841/5 +f 1840/5 1841/5 1842/5 +f 1842/5 1841/5 1843/5 +f 1842/5 1843/5 1844/5 +f 1844/5 1843/5 1845/5 +f 1844/5 1845/5 1846/5 +f 1846/5 1845/5 1847/5 +f 1846/5 1847/5 1848/5 +f 1848/5 1847/5 1849/5 +f 1848/5 1849/5 1850/5 +f 1850/5 1849/5 1851/5 +f 1850/5 1851/5 1852/5 +f 1311/5 1313/5 1835/5 +f 1853/5 1854/5 1855/5 +f 1855/5 1854/5 1856/5 +f 1855/5 1856/5 1857/5 +f 1855/5 1857/5 1858/5 +f 1858/5 1857/5 1859/5 +f 1858/5 1859/5 1860/5 +f 1860/5 1859/5 1861/5 +f 1860/5 1861/5 1862/5 +f 1862/5 1861/5 1863/5 +f 1862/5 1863/5 1864/5 +f 1864/5 1863/5 1865/5 +f 1864/5 1865/5 1866/5 +f 1866/5 1865/5 1867/5 +f 1866/5 1867/5 1868/5 +f 1868/5 1867/5 1869/5 +f 1867/5 1870/5 1869/5 +f 1869/5 1870/5 1438/5 +f 1869/5 1438/5 1437/5 +f 1833/5 1871/5 1834/5 +f 1834/5 1871/5 1872/5 +f 1873/5 1874/5 1875/5 +f 1875/5 1874/5 1876/5 +f 1875/5 1876/5 1877/5 +f 1877/5 1876/5 1878/5 +f 1877/5 1878/5 1879/5 +f 1879/5 1878/5 1880/5 +f 1879/5 1880/5 1881/5 +f 1881/5 1880/5 1882/5 +f 1881/5 1882/5 1883/5 +f 1883/5 1882/5 1884/5 +f 1883/5 1884/5 1885/5 +f 1885/5 1884/5 1886/5 +f 1885/5 1886/5 1887/5 +f 1887/5 1886/5 1888/5 +f 1887/5 1888/5 1889/5 +f 1889/5 1888/5 1890/5 +f 1889/5 1890/5 1891/5 +f 1891/5 1890/5 1892/5 +f 1891/5 1892/5 1893/5 +f 1893/5 1892/5 1894/5 +f 1893/5 1894/5 1895/5 +f 1895/5 1894/5 1896/5 +f 1895/5 1896/5 1897/5 +f 1897/5 1896/5 1898/5 +f 1897/5 1898/5 1899/5 +f 1899/5 1898/5 1900/5 +f 1899/5 1900/5 1901/5 +f 1873/5 1902/5 1874/5 +f 1874/5 1902/5 1903/5 +f 1902/5 1904/5 1903/5 +f 1903/5 1904/5 1905/5 +f 1904/5 1906/5 1905/5 +f 1905/5 1906/5 1907/5 +f 1906/5 1908/5 1907/5 +f 1907/5 1908/5 1909/5 +f 1908/5 1910/5 1909/5 +f 1909/5 1910/5 1911/5 +f 1910/5 1912/5 1911/5 +f 1911/5 1912/5 1913/5 +f 1912/5 1914/5 1913/5 +f 1913/5 1914/5 1915/5 +f 1914/5 1916/5 1915/5 +f 1915/5 1916/5 1917/5 +f 1916/5 1918/5 1917/5 +f 1917/5 1918/5 1919/5 +f 1918/5 1920/5 1919/5 +f 1919/5 1920/5 1921/5 +f 1920/5 1922/5 1921/5 +f 1921/5 1922/5 1923/5 +f 1922/5 1924/5 1923/5 +f 1923/5 1924/5 1925/5 +f 1924/5 1926/5 1925/5 +f 1925/5 1926/5 1927/5 +f 1926/5 1928/5 1927/5 +f 1927/5 1928/5 1929/5 +f 1928/5 1930/5 1929/5 +f 1929/5 1930/5 1931/5 +f 1930/5 1932/5 1931/5 +f 1931/5 1932/5 1933/5 +f 1932/5 1934/5 1933/5 +f 1933/5 1934/5 1935/5 +f 1934/5 1936/5 1935/5 +f 1935/5 1936/5 1937/5 +f 1936/5 1938/5 1937/5 +f 1937/5 1938/5 1939/5 +f 1938/5 1940/5 1939/5 +f 1939/5 1940/5 1941/5 +f 1940/5 1942/5 1941/5 +f 1941/5 1942/5 1943/5 +f 1942/5 1944/5 1943/5 +f 1943/5 1944/5 1945/5 +f 1944/5 1946/5 1945/5 +f 1945/5 1946/5 1947/5 +f 1946/5 1948/5 1947/5 +f 1947/5 1948/5 1949/5 +f 1948/5 1950/5 1949/5 +f 1949/5 1950/5 1951/5 +f 1950/5 1952/5 1951/5 +f 1951/5 1952/5 1953/5 +f 1952/5 1954/5 1953/5 +f 1953/5 1954/5 1955/5 +f 1899/5 1901/5 1956/5 +f 1956/5 1901/5 1957/5 +f 1956/5 1957/5 1958/5 +f 1958/5 1957/5 1959/5 +f 1958/5 1959/5 1960/5 +f 1960/5 1959/5 1961/5 +f 1960/5 1961/5 1962/5 +f 1962/5 1961/5 1963/5 +f 1962/5 1963/5 1964/5 +f 1964/5 1963/5 1965/5 +f 1964/5 1965/5 1966/5 +f 1966/5 1965/5 1967/5 +f 1966/5 1967/5 1968/5 +f 1968/5 1967/5 1969/5 +f 1968/5 1969/5 1970/5 +f 1970/5 1969/5 1971/5 +f 1970/5 1971/5 1972/5 +f 1972/5 1971/5 1440/5 +f 1972/5 1440/5 1439/5 +f 1973/5 1974/5 1975/5 +f 1975/5 1974/5 1976/5 +f 1975/5 1976/5 1977/5 +f 1975/5 1977/5 1978/5 +f 1978/5 1977/5 1979/5 +f 1978/5 1979/5 1980/5 +f 1980/5 1979/5 1981/5 +f 1980/5 1981/5 1982/5 +f 1982/5 1981/5 1983/5 +f 1982/5 1983/5 1984/5 +f 1984/5 1983/5 1985/5 +f 1984/5 1985/5 1986/5 +f 1986/5 1985/5 1987/5 +f 1986/5 1987/5 1988/5 +f 1988/5 1987/5 1989/5 +f 1988/5 1989/5 1990/5 +f 1990/5 1989/5 1991/5 +f 1990/5 1991/5 1992/5 +f 1992/5 1991/5 1993/5 +f 1992/5 1993/5 1994/5 +f 1994/5 1993/5 1995/5 +f 1994/5 1995/5 1996/5 +f 1996/5 1995/5 1997/5 +f 1996/5 1997/5 1998/5 +f 1998/5 1997/5 1999/5 +f 1998/5 1999/5 2000/5 +f 2000/5 1999/5 2001/5 +f 2000/5 2001/5 2002/5 +f 2002/5 2001/5 2003/5 +f 2002/5 2003/5 2004/5 +f 2004/5 2003/5 2005/5 +f 2004/5 2005/5 2006/5 +f 2006/5 2005/5 2007/5 +f 2006/5 2007/5 2008/5 +f 2008/5 2007/5 2009/5 +f 2008/5 2009/5 2010/5 +f 2010/5 2009/5 2011/5 +f 2010/5 2011/5 2012/5 +f 2012/5 2011/5 2013/5 +f 2012/5 2013/5 2014/5 +f 2014/5 2013/5 2015/5 +f 2014/5 2015/5 2016/5 +f 2016/5 2015/5 2017/5 +f 2016/5 2017/5 2018/5 +f 2018/5 2017/5 2019/5 +f 2018/5 2019/5 2020/5 +f 2020/5 2019/5 2021/5 +f 2020/5 2021/5 2022/5 +f 2022/5 2021/5 2023/5 +f 2022/5 2023/5 2024/5 +f 2024/5 2023/5 2025/5 +f 2024/5 2025/5 2026/5 +f 2024/5 2026/5 2027/5 +f 2027/5 2026/5 2028/5 +f 2027/5 2028/5 2029/5 +f 2029/5 2028/5 2030/5 +f 2029/5 2030/5 2031/5 +f 2031/5 2030/5 2032/5 +f 2031/5 2032/5 2033/5 +f 2033/5 2032/5 2034/5 +f 2033/5 2034/5 2035/5 +f 2035/5 2034/5 2036/5 +f 2035/5 2036/5 2037/5 +f 2037/5 2036/5 2038/5 +f 2037/5 2038/5 2039/5 +f 2037/5 2039/5 2040/5 +f 2040/5 2039/5 2041/5 +f 2040/5 2041/5 2042/5 +f 2042/5 2041/5 2043/5 +f 2042/5 2043/5 2044/5 +f 2044/5 2043/5 2045/5 +f 2044/5 2045/5 2046/5 +f 2046/5 2045/5 2047/5 +f 2046/5 2047/5 2048/5 +f 2048/5 2047/5 2049/5 +f 2048/5 2049/5 2050/5 +f 2050/5 2049/5 2051/5 +f 2050/5 2051/5 2052/5 +f 2052/5 2051/5 2053/5 +f 2052/5 2053/5 2054/5 +f 2054/5 2053/5 2055/5 +f 2054/5 2055/5 2056/5 +f 2056/5 2055/5 2057/5 +f 2056/5 2057/5 2058/5 +f 2058/5 2057/5 2059/5 +f 2058/5 2059/5 2060/5 +f 2060/5 2059/5 2061/5 +f 2060/5 2061/5 2062/5 +f 2062/5 2061/5 2063/5 +f 2062/5 2063/5 2064/5 +f 2064/5 2063/5 2065/5 +f 2064/5 2065/5 2066/5 +f 2066/5 2065/5 2067/5 +f 2066/5 2067/5 2068/5 +f 2068/5 2067/5 2069/5 +f 2068/5 2069/5 2070/5 +f 2070/5 2069/5 1733/5 +f 2070/5 1733/5 1732/5 +f 2071/5 2072/5 2027/5 +f 2027/5 2072/5 2024/5 +f 1871/5 2073/5 1872/5 +f 1872/5 2073/5 2074/5 +f 2073/5 2075/5 2074/5 +f 2074/5 2075/5 2076/5 +f 2075/5 2077/5 2076/5 +f 2076/5 2077/5 2078/5 +f 2077/5 2079/5 2078/5 +f 2078/5 2079/5 2080/5 +f 2079/5 2081/5 2080/5 +f 2080/5 2081/5 2082/5 +f 2081/5 2083/5 2082/5 +f 2082/5 2083/5 2084/5 +f 2083/5 2085/5 2084/5 +f 2084/5 2085/5 2086/5 +f 2085/5 2087/5 2086/5 +f 2086/5 2087/5 2088/5 +f 2087/5 2089/5 2088/5 +f 2088/5 2089/5 2090/5 +f 2089/5 2091/5 2090/5 +f 2090/5 2091/5 2092/5 +f 2091/5 2093/5 2092/5 +f 2092/5 2093/5 2094/5 +f 2093/5 2095/5 2094/5 +f 2094/5 2095/5 2096/5 +f 2095/5 2097/5 2096/5 +f 2096/5 2097/5 2098/5 +f 2097/5 2099/5 2098/5 +f 2098/5 2099/5 2100/5 +f 2099/5 2101/5 2100/5 +f 2100/5 2101/5 2102/5 +f 2101/5 2103/5 2102/5 +f 2102/5 2103/5 2104/5 +f 2103/5 2105/5 2104/5 +f 2104/5 2105/5 2106/5 +f 2105/5 2107/5 2106/5 +f 2106/5 2107/5 2108/5 +f 2107/5 2109/5 2108/5 +f 2108/5 2109/5 2110/5 +f 2109/5 2111/5 2110/5 +f 2110/5 2111/5 2112/5 +f 2112/5 2111/5 2113/5 +f 2113/5 2111/5 2114/5 +f 2113/5 2114/5 2115/5 +f 2113/5 2115/5 2116/5 +f 2116/5 2115/5 2117/5 +f 2116/5 2117/5 2118/5 +f 2118/5 2117/5 2119/5 +f 2118/5 2119/5 2120/5 +f 2120/5 2119/5 2121/5 +f 2120/5 2121/5 2122/5 +f 2122/5 2121/5 2123/5 +f 2122/5 2123/5 2124/5 +f 2124/5 2123/5 2125/5 +f 2124/5 2125/5 2126/5 +f 2126/5 2125/5 2127/5 +f 2126/5 2127/5 2128/5 +f 2128/5 2127/5 2129/5 +f 2128/5 2129/5 2130/5 +f 2130/5 2129/5 2131/5 +f 2130/5 2131/5 2132/5 +f 2132/5 2131/5 2133/5 +f 2132/5 2133/5 2134/5 +f 2134/5 2133/5 1168/5 +f 2134/5 1168/5 1180/5 +f 2135/5 2136/5 2137/5 +f 2137/5 2136/5 2138/5 +f 2137/5 2138/5 2139/5 +f 2137/5 2139/5 2140/5 +f 2140/5 2139/5 2141/5 +f 2140/5 2141/5 2142/5 +f 2142/5 2141/5 2143/5 +f 2142/5 2143/5 2144/5 +f 2144/5 2143/5 2145/5 +f 2144/5 2145/5 2146/5 +f 2146/5 2145/5 2147/5 +f 2145/5 2148/5 2147/5 +f 2147/5 2148/5 2149/5 +f 2147/5 2149/5 2150/5 +f 2150/5 2149/5 2151/5 +f 2150/5 2151/5 2152/5 +f 2152/5 2151/5 2153/5 +f 2152/5 2153/5 2154/5 +f 2154/5 2153/5 2155/5 +f 2154/5 2155/5 2156/5 +f 2156/5 2155/5 2157/5 +f 2155/5 2158/5 2157/5 +f 2157/5 2158/5 2159/5 +f 2157/5 2159/5 2160/5 +f 2160/5 2159/5 2161/5 +f 2160/5 2161/5 2162/5 +f 2162/5 2161/5 2163/5 +f 2162/5 2163/5 2164/5 +f 2164/5 2163/5 2165/5 +f 2164/5 2165/5 2166/5 +f 2166/5 2165/5 2167/5 +f 2165/5 2168/5 2167/5 +f 2167/5 2168/5 2169/5 +f 2168/5 2170/5 2169/5 +f 2169/5 2170/5 2171/5 +f 2169/5 2171/5 2172/5 +f 2172/5 2171/5 2173/5 +f 2172/5 2173/5 2174/5 +f 2174/5 2173/5 2175/5 +f 2174/5 2175/5 2176/5 +f 2176/5 2175/5 2177/5 +f 2176/5 2177/5 2178/5 +f 2178/5 2177/5 2179/5 +f 2177/5 2180/5 2179/5 +f 2179/5 2180/5 2181/5 +f 2179/5 2181/5 2182/5 +f 2182/5 2181/5 2183/5 +f 2182/5 2183/5 2184/5 +f 2184/5 2183/5 2185/5 +f 2184/5 2185/5 2186/5 +f 2186/5 2185/5 2187/5 +f 2186/5 2187/5 2188/5 +f 2188/5 2187/5 2189/5 +f 2187/5 2190/5 2189/5 +f 2189/5 2190/5 2191/5 +f 2189/5 2191/5 2192/5 +f 2192/5 2191/5 2193/5 +f 2192/5 2193/5 2194/5 +f 2194/5 2193/5 2195/5 +f 2194/5 2195/5 2196/5 +f 2196/5 2195/5 2197/5 +f 2196/5 2197/5 2198/5 +f 2198/5 2197/5 2199/5 +f 2197/5 2200/5 2199/5 +f 2201/5 2202/5 2203/5 +f 2203/5 2202/5 2204/5 +f 2203/5 2204/5 2205/5 +f 2203/5 2205/5 2206/5 +f 2206/5 2205/5 2207/5 +f 2206/5 2207/5 2208/5 +f 2208/5 2207/5 2209/5 +f 2208/5 2209/5 2210/5 +f 2210/5 2209/5 2211/5 +f 2210/5 2211/5 2212/5 +f 2212/5 2211/5 2213/5 +f 2211/5 2214/5 2213/5 +f 2213/5 2214/5 2215/5 +f 2213/5 2215/5 2216/5 +f 2216/5 2215/5 2217/5 +f 2216/5 2217/5 2218/5 +f 2218/5 2217/5 2219/5 +f 2218/5 2219/5 2220/5 +f 2220/5 2219/5 2221/5 +f 2220/5 2221/5 2222/5 +f 2222/5 2221/5 2223/5 +f 2221/5 2224/5 2223/5 +f 2223/5 2224/5 2225/5 +f 2223/5 2225/5 2226/5 +f 2226/5 2225/5 2227/5 +f 2226/5 2227/5 2228/5 +f 2228/5 2227/5 2229/5 +f 2228/5 2229/5 2230/5 +f 2230/5 2229/5 2231/5 +f 2230/5 2231/5 2232/5 +f 2232/5 2231/5 2233/5 +f 2231/5 2234/5 2233/5 +f 2233/5 2234/5 2235/5 +f 2234/5 2236/5 2235/5 +f 2235/5 2236/5 2237/5 +f 2235/5 2237/5 2238/5 +f 2238/5 2237/5 2239/5 +f 2238/5 2239/5 2240/5 +f 2240/5 2239/5 2241/5 +f 2240/5 2241/5 2242/5 +f 2242/5 2241/5 2243/5 +f 2242/5 2243/5 2244/5 +f 2244/5 2243/5 2245/5 +f 2243/5 2246/5 2245/5 +f 2245/5 2246/5 2247/5 +f 2245/5 2247/5 2248/5 +f 2248/5 2247/5 2249/5 +f 2248/5 2249/5 2250/5 +f 2250/5 2249/5 2251/5 +f 2250/5 2251/5 2252/5 +f 2252/5 2251/5 2253/5 +f 2252/5 2253/5 2254/5 +f 2254/5 2253/5 2255/5 +f 2253/5 2256/5 2255/5 +f 2255/5 2256/5 2257/5 +f 2255/5 2257/5 2258/5 +f 2258/5 2257/5 2259/5 +f 2258/5 2259/5 2260/5 +f 2260/5 2259/5 2261/5 +f 2260/5 2261/5 2262/5 +f 2262/5 2261/5 2263/5 +f 2262/5 2263/5 2264/5 +f 2264/5 2263/5 2265/5 +f 2263/5 2266/5 2265/5 +f 2267/5 2268/5 2269/5 +f 2269/5 2268/5 2270/5 +f 2269/5 2270/5 2271/5 +f 2271/5 2272/5 2269/5 +f 2269/5 2272/5 2273/5 +f 2269/5 2273/5 2274/5 +f 2274/5 2275/5 2269/5 +f 2269/5 2275/5 2276/5 +f 2269/5 2276/5 2277/5 +f 2277/5 2278/5 2269/5 +f 2269/5 2278/5 2279/5 +f 2269/5 2279/5 2280/5 +f 2280/5 2281/5 2269/5 +f 2269/5 2281/5 2282/5 +f 2269/5 2282/5 2283/5 +f 2283/5 2284/5 2269/5 +f 2269/5 2284/5 2285/5 +f 2269/5 2285/5 2286/5 +f 2286/5 2287/5 2269/5 +f 2269/5 2287/5 2288/5 +f 2269/5 2288/5 2289/5 +f 2289/5 2290/5 2269/5 +f 2269/5 2290/5 2291/5 +f 2269/5 2291/5 2292/5 +f 2292/5 2293/5 2269/5 +f 2269/5 2293/5 2294/5 +f 2269/5 2294/5 2295/5 +f 2295/5 2296/5 2269/5 +f 2269/5 2296/5 2297/5 +f 2269/5 2297/5 2298/5 +f 2298/5 2299/5 2269/5 +f 2269/5 2299/5 2300/5 +f 2300/5 2299/5 2301/5 +f 2301/5 2299/5 2302/5 +f 2301/5 2302/5 2303/5 +f 2304/5 2305/5 2303/5 +f 2303/5 2305/5 2306/5 +f 2303/5 2306/5 2301/5 +f 2304/5 2307/5 2305/5 +f 2305/5 2307/5 2308/5 +f 2305/5 2308/5 2309/5 +f 2309/5 2310/5 2305/5 +f 2305/5 2310/5 2311/5 +f 2305/5 2311/5 2312/5 +f 2312/5 2313/5 2305/5 +f 2305/5 2313/5 2314/5 +f 2305/5 2314/5 2315/5 +f 2315/5 2316/5 2305/5 +f 2305/5 2316/5 2317/5 +f 2305/5 2317/5 2318/5 +f 2318/5 2319/5 2305/5 +f 2305/5 2319/5 2320/5 +f 2305/5 2320/5 2321/5 +f 2321/5 2322/5 2305/5 +f 2305/5 2322/5 2323/5 +f 2305/5 2323/5 2324/5 +f 2324/5 2325/5 2305/5 +f 2305/5 2325/5 2326/5 +f 2305/5 2326/5 2327/5 +f 2327/5 2328/5 2305/5 +f 2305/5 2328/5 2329/5 +f 2305/5 2329/5 2330/5 +f 2330/5 2331/5 2305/5 +f 2305/5 2331/5 2332/5 +f 2305/5 2332/5 2333/5 +f 2333/5 2334/5 2305/5 +f 2305/5 2334/5 2335/5 +f 2305/5 2335/5 2336/5 +f 2136/5 2135/5 2337/5 +f 2337/5 2135/5 2338/5 +f 2337/5 2338/5 2339/5 +f 2340/5 2341/5 2342/5 +f 2342/5 2341/5 2343/5 +f 2342/5 2343/5 2344/5 +f 2344/5 2343/5 2345/5 +f 2344/5 2345/5 2346/5 +f 2346/5 2345/5 2347/5 +f 2346/5 2347/5 2348/5 +f 2348/5 2347/5 2349/5 +f 2348/5 2349/5 2350/5 +f 2350/5 2349/5 2351/5 +f 2350/5 2351/5 2352/5 +f 2352/5 2351/5 2353/5 +f 2352/5 2353/5 2354/5 +f 2354/5 2353/5 2355/5 +f 2354/5 2355/5 2339/5 +f 2339/5 2355/5 2356/5 +f 2339/5 2356/5 2337/5 +f 2340/5 2357/5 2341/5 +f 2341/5 2357/5 2358/5 +f 2357/5 2359/5 2358/5 +f 2358/5 2359/5 2360/5 +f 2359/5 2361/5 2360/5 +f 2360/5 2361/5 2362/5 +f 2361/5 2363/5 2362/5 +f 2362/5 2363/5 2364/5 +f 2363/5 2365/5 2364/5 +f 2364/5 2365/5 2366/5 +f 2365/5 2367/5 2366/5 +f 2366/5 2367/5 2368/5 +f 2367/5 2369/5 2368/5 +f 2368/5 2369/5 2370/5 +f 2369/5 2371/5 2370/5 +f 2370/5 2371/5 2372/5 +f 2371/5 2202/5 2372/5 +f 2372/5 2202/5 2201/5 +f 2373/5 2374/5 2375/5 +f 2375/5 2374/5 2376/5 +f 2375/5 2376/5 2377/5 +f 2377/5 2378/5 2375/5 +f 2375/5 2378/5 2379/5 +f 2375/5 2379/5 2380/5 +f 2380/5 2381/5 2375/5 +f 2375/5 2381/5 2382/5 +f 2375/5 2382/5 2383/5 +f 2383/5 2384/5 2375/5 +f 2375/5 2384/5 2385/5 +f 2375/5 2385/5 2386/5 +f 2386/5 2387/5 2375/5 +f 2375/5 2387/5 2388/5 +f 2375/5 2388/5 2389/5 +f 2389/5 2390/5 2375/5 +f 2375/5 2390/5 2391/5 +f 2375/5 2391/5 2392/5 +f 2392/5 2393/5 2375/5 +f 2375/5 2393/5 2394/5 +f 2375/5 2394/5 2395/5 +f 2395/5 2396/5 2375/5 +f 2375/5 2396/5 2397/5 +f 2375/5 2397/5 2398/5 +f 2398/5 2399/5 2375/5 +f 2375/5 2399/5 2400/5 +f 2375/5 2400/5 2401/5 +f 2401/5 2402/5 2375/5 +f 2375/5 2402/5 2403/5 +f 2375/5 2403/5 2404/5 +f 2404/5 2405/5 2375/5 +f 2375/5 2405/5 2406/5 +f 2406/5 2405/5 2407/5 +f 2407/5 2405/5 2408/5 +f 2407/5 2408/5 2409/5 +f 2410/5 2411/5 2409/5 +f 2409/5 2411/5 2412/5 +f 2409/5 2412/5 2407/5 +f 2410/5 2413/5 2411/5 +f 2411/5 2413/5 2414/5 +f 2411/5 2414/5 2415/5 +f 2415/5 2416/5 2411/5 +f 2411/5 2416/5 2417/5 +f 2411/5 2417/5 2418/5 +f 2418/5 2419/5 2411/5 +f 2411/5 2419/5 2420/5 +f 2411/5 2420/5 2421/5 +f 2421/5 2422/5 2411/5 +f 2411/5 2422/5 2423/5 +f 2411/5 2423/5 2424/5 +f 2424/5 2425/5 2411/5 +f 2411/5 2425/5 2426/5 +f 2411/5 2426/5 2427/5 +f 2427/5 2428/5 2411/5 +f 2411/5 2428/5 2429/5 +f 2411/5 2429/5 2430/5 +f 2430/5 2431/5 2411/5 +f 2411/5 2431/5 2432/5 +f 2411/5 2432/5 2433/5 +f 2433/5 2434/5 2411/5 +f 2411/5 2434/5 2435/5 +f 2411/5 2435/5 2436/5 +f 2436/5 2437/5 2411/5 +f 2411/5 2437/5 2438/5 +f 2411/5 2438/5 2439/5 +f 2439/5 2440/5 2411/5 +f 2411/5 2440/5 2441/5 +f 2411/5 2441/5 2442/5 +f 2199/5 2200/5 2443/5 +f 2443/5 2200/5 2444/5 +f 2443/5 2444/5 2445/5 +f 2445/5 2444/5 2446/5 +f 2447/5 2448/5 2449/5 +f 2449/5 2448/5 2450/5 +f 2449/5 2450/5 2451/5 +f 2447/5 2452/5 2448/5 +f 2448/5 2452/5 2453/5 +f 2448/5 2453/5 2454/5 +f 2454/5 2455/5 2448/5 +f 2448/5 2455/5 2456/5 +f 2448/5 2456/5 2457/5 +f 2457/5 2458/5 2448/5 +f 2448/5 2458/5 2459/5 +f 2448/5 2459/5 2460/5 +f 2460/5 2461/5 2448/5 +f 2448/5 2461/5 2462/5 +f 2448/5 2462/5 2463/5 +f 2463/5 2464/5 2448/5 +f 2448/5 2464/5 2465/5 +f 2448/5 2465/5 2466/5 +f 2466/5 2467/5 2448/5 +f 2448/5 2467/5 2468/5 +f 2448/5 2468/5 2469/5 +f 2469/5 2470/5 2448/5 +f 2448/5 2470/5 2471/5 +f 2448/5 2471/5 2472/5 +f 2472/5 2473/5 2448/5 +f 2448/5 2473/5 2474/5 +f 2448/5 2474/5 2475/5 +f 2475/5 2476/5 2448/5 +f 2448/5 2476/5 2477/5 +f 2448/5 2477/5 2478/5 +f 2478/5 2479/5 2448/5 +f 2448/5 2479/5 2480/5 +f 2448/5 2480/5 2481/5 +f 2482/5 2483/5 2451/5 +f 2451/5 2483/5 2484/5 +f 2451/5 2484/5 2449/5 +f 2482/5 2485/5 2483/5 +f 2483/5 2485/5 2486/5 +f 2487/5 2488/5 2485/5 +f 2485/5 2488/5 2489/5 +f 2485/5 2489/5 2490/5 +f 2490/5 2491/5 2485/5 +f 2485/5 2491/5 2492/5 +f 2485/5 2492/5 2493/5 +f 2493/5 2494/5 2485/5 +f 2485/5 2494/5 2495/5 +f 2485/5 2495/5 2496/5 +f 2496/5 2497/5 2485/5 +f 2485/5 2497/5 2498/5 +f 2485/5 2498/5 2499/5 +f 2499/5 2500/5 2485/5 +f 2485/5 2500/5 2501/5 +f 2485/5 2501/5 2502/5 +f 2502/5 2503/5 2485/5 +f 2485/5 2503/5 2504/5 +f 2485/5 2504/5 2505/5 +f 2505/5 2506/5 2485/5 +f 2485/5 2506/5 2507/5 +f 2485/5 2507/5 2508/5 +f 2508/5 2509/5 2485/5 +f 2485/5 2509/5 2510/5 +f 2485/5 2510/5 2511/5 +f 2511/5 2512/5 2485/5 +f 2485/5 2512/5 2513/5 +f 2485/5 2513/5 2514/5 +f 2514/5 2515/5 2485/5 +f 2485/5 2515/5 2516/5 +f 2485/5 2516/5 2486/5 +f 2517/5 2518/5 2519/5 +f 2519/5 2518/5 2520/5 +f 2519/5 2520/5 2521/5 +f 2518/5 2522/5 2520/5 +f 2519/5 2521/5 2523/5 +f 2523/5 2521/5 2524/5 +f 2523/5 2524/5 2525/5 +f 2525/5 2524/5 2526/5 +f 2525/5 2526/5 2527/5 +f 2527/5 2526/5 2528/5 +f 2527/5 2528/5 2529/5 +f 2529/5 2528/5 2530/5 +f 2529/5 2530/5 2531/5 +f 2531/5 2530/5 2532/5 +f 2531/5 2532/5 2533/5 +f 2533/5 2532/5 2451/5 +f 2533/5 2451/5 2450/5 +f 2532/5 2482/5 2451/5 +f 2534/5 2522/5 2535/5 +f 2535/5 2522/5 2518/5 +f 2535/5 2518/5 2536/5 +f 2536/5 2518/5 2517/5 +f 2534/5 2535/5 2537/5 +f 2537/5 2535/5 2538/5 +f 2537/5 2538/5 2539/5 +f 2535/5 2536/5 2538/5 +f 2537/5 2539/5 2540/5 +f 2540/5 2539/5 2541/5 +f 2540/5 2541/5 2542/5 +f 2542/5 2541/5 2543/5 +f 2542/5 2543/5 2544/5 +f 2544/5 2543/5 2545/5 +f 2544/5 2545/5 2546/5 +f 2546/5 2545/5 2547/5 +f 2546/5 2547/5 2548/5 +f 2548/5 2547/5 2549/5 +f 2548/5 2549/5 2550/5 +f 2550/5 2549/5 2407/5 +f 2550/5 2407/5 2412/5 +f 2549/5 2406/5 2407/5 +f 2266/5 2551/5 2265/5 +f 2265/5 2551/5 2552/5 +f 2551/5 2553/5 2552/5 +f 2552/5 2553/5 2554/5 +f 2555/5 2556/5 2557/5 +f 2557/5 2556/5 2558/5 +f 2557/5 2558/5 2559/5 +f 2555/5 2560/5 2556/5 +f 2556/5 2560/5 2561/5 +f 2556/5 2561/5 2562/5 +f 2562/5 2563/5 2556/5 +f 2556/5 2563/5 2564/5 +f 2556/5 2564/5 2565/5 +f 2565/5 2566/5 2556/5 +f 2556/5 2566/5 2567/5 +f 2556/5 2567/5 2568/5 +f 2568/5 2569/5 2556/5 +f 2556/5 2569/5 2570/5 +f 2556/5 2570/5 2571/5 +f 2571/5 2572/5 2556/5 +f 2556/5 2572/5 2573/5 +f 2556/5 2573/5 2574/5 +f 2574/5 2575/5 2556/5 +f 2556/5 2575/5 2576/5 +f 2556/5 2576/5 2577/5 +f 2577/5 2578/5 2556/5 +f 2556/5 2578/5 2579/5 +f 2556/5 2579/5 2580/5 +f 2580/5 2581/5 2556/5 +f 2556/5 2581/5 2582/5 +f 2556/5 2582/5 2583/5 +f 2583/5 2584/5 2556/5 +f 2556/5 2584/5 2585/5 +f 2556/5 2585/5 2586/5 +f 2586/5 2587/5 2556/5 +f 2556/5 2587/5 2588/5 +f 2556/5 2588/5 2589/5 +f 2590/5 2591/5 2559/5 +f 2559/5 2591/5 2592/5 +f 2559/5 2592/5 2557/5 +f 2590/5 2593/5 2591/5 +f 2591/5 2593/5 2594/5 +f 2595/5 2596/5 2593/5 +f 2593/5 2596/5 2597/5 +f 2593/5 2597/5 2598/5 +f 2598/5 2599/5 2593/5 +f 2593/5 2599/5 2600/5 +f 2593/5 2600/5 2601/5 +f 2601/5 2602/5 2593/5 +f 2593/5 2602/5 2603/5 +f 2593/5 2603/5 2604/5 +f 2604/5 2605/5 2593/5 +f 2593/5 2605/5 2606/5 +f 2593/5 2606/5 2607/5 +f 2607/5 2608/5 2593/5 +f 2593/5 2608/5 2609/5 +f 2593/5 2609/5 2610/5 +f 2610/5 2611/5 2593/5 +f 2593/5 2611/5 2612/5 +f 2593/5 2612/5 2613/5 +f 2613/5 2614/5 2593/5 +f 2593/5 2614/5 2615/5 +f 2593/5 2615/5 2616/5 +f 2616/5 2617/5 2593/5 +f 2593/5 2617/5 2618/5 +f 2593/5 2618/5 2619/5 +f 2619/5 2620/5 2593/5 +f 2593/5 2620/5 2621/5 +f 2593/5 2621/5 2622/5 +f 2622/5 2623/5 2593/5 +f 2593/5 2623/5 2624/5 +f 2593/5 2624/5 2594/5 +f 2625/5 2626/5 2627/5 +f 2627/5 2626/5 2628/5 +f 2627/5 2628/5 2629/5 +f 2626/5 2630/5 2628/5 +f 2628/5 2630/5 2631/5 +f 2630/5 2632/5 2631/5 +f 2631/5 2632/5 2633/5 +f 2632/5 2634/5 2633/5 +f 2633/5 2634/5 2635/5 +f 2634/5 2636/5 2635/5 +f 2635/5 2636/5 2637/5 +f 2636/5 2638/5 2637/5 +f 2637/5 2638/5 2639/5 +f 2638/5 2640/5 2639/5 +f 2639/5 2640/5 2641/5 +f 2590/5 2559/5 2640/5 +f 2640/5 2559/5 2641/5 +f 2559/5 2558/5 2641/5 +f 2629/5 2642/5 2627/5 +f 2627/5 2642/5 2643/5 +f 2627/5 2643/5 2625/5 +f 2625/5 2643/5 2644/5 +f 2644/5 2643/5 2645/5 +f 2645/5 2643/5 2646/5 +f 2645/5 2646/5 2647/5 +f 2643/5 2642/5 2646/5 +f 2645/5 2647/5 2648/5 +f 2648/5 2647/5 2649/5 +f 2648/5 2649/5 2650/5 +f 2650/5 2649/5 2651/5 +f 2650/5 2651/5 2652/5 +f 2652/5 2651/5 2653/5 +f 2652/5 2653/5 2654/5 +f 2654/5 2653/5 2655/5 +f 2654/5 2655/5 2656/5 +f 2656/5 2655/5 2657/5 +f 2656/5 2657/5 2658/5 +f 2658/5 2657/5 2301/5 +f 2658/5 2301/5 2306/5 +f 2657/5 2300/5 2301/5 +f 2659/5 2660/5 2661/5 +f 2661/5 2660/5 2662/5 +f 2660/5 2663/5 2662/5 +f 2662/5 2663/5 2664/5 +f 2665/5 2666/5 2667/5 +f 2667/5 2666/5 2668/5 +f 2667/5 2668/5 2669/5 +f 2667/5 2669/5 2670/5 +f 2670/5 2669/5 2671/5 +f 2670/5 2671/5 2672/5 +f 2672/5 2671/5 2673/5 +f 2672/5 2673/5 2674/5 +f 2674/5 2673/5 2675/5 +f 2674/5 2675/5 2676/5 +f 2676/5 2675/5 2677/5 +f 2675/5 2678/5 2677/5 +f 2677/5 2678/5 2679/5 +f 2677/5 2679/5 2680/5 +f 2680/5 2679/5 2681/5 +f 2680/5 2681/5 2682/5 +f 2682/5 2681/5 2683/5 +f 2682/5 2683/5 2684/5 +f 2684/5 2683/5 2685/5 +f 2684/5 2685/5 2686/5 +f 2686/5 2685/5 2687/5 +f 2685/5 2688/5 2687/5 +f 2687/5 2688/5 2689/5 +f 2687/5 2689/5 2690/5 +f 2690/5 2689/5 2691/5 +f 2690/5 2691/5 2692/5 +f 2692/5 2691/5 2693/5 +f 2692/5 2693/5 2694/5 +f 2694/5 2693/5 2695/5 +f 2694/5 2695/5 2696/5 +f 2696/5 2695/5 2697/5 +f 2695/5 2698/5 2697/5 +f 2697/5 2698/5 2699/5 +f 2698/5 2700/5 2699/5 +f 2699/5 2700/5 2701/5 +f 2699/5 2701/5 2702/5 +f 2702/5 2701/5 2703/5 +f 2702/5 2703/5 2704/5 +f 2704/5 2703/5 2705/5 +f 2704/5 2705/5 2706/5 +f 2706/5 2705/5 2707/5 +f 2706/5 2707/5 2708/5 +f 2708/5 2707/5 2709/5 +f 2707/5 2710/5 2709/5 +f 2709/5 2710/5 2711/5 +f 2709/5 2711/5 2712/5 +f 2712/5 2711/5 2713/5 +f 2712/5 2713/5 2714/5 +f 2714/5 2713/5 2715/5 +f 2714/5 2715/5 2716/5 +f 2716/5 2715/5 2717/5 +f 2716/5 2717/5 2718/5 +f 2718/5 2717/5 2719/5 +f 2717/5 2720/5 2719/5 +f 2719/5 2720/5 2721/5 +f 2719/5 2721/5 2722/5 +f 2722/5 2721/5 2723/5 +f 2722/5 2723/5 2724/5 +f 2724/5 2723/5 2725/5 +f 2724/5 2725/5 2726/5 +f 2726/5 2725/5 2727/5 +f 2726/5 2727/5 2728/5 +f 2728/5 2727/5 2553/5 +f 2727/5 2554/5 2553/5 +f 2445/5 2446/5 2729/5 +f 2729/5 2446/5 2730/5 +f 2729/5 2730/5 2731/5 +f 2729/5 2731/5 2732/5 +f 2732/5 2731/5 2733/5 +f 2732/5 2733/5 2734/5 +f 2734/5 2733/5 2735/5 +f 2734/5 2735/5 2736/5 +f 2736/5 2735/5 2737/5 +f 2736/5 2737/5 2738/5 +f 2738/5 2737/5 2739/5 +f 2737/5 2740/5 2739/5 +f 2739/5 2740/5 2741/5 +f 2739/5 2741/5 2742/5 +f 2742/5 2741/5 2743/5 +f 2742/5 2743/5 2744/5 +f 2744/5 2743/5 2745/5 +f 2744/5 2745/5 2746/5 +f 2746/5 2745/5 2747/5 +f 2746/5 2747/5 2748/5 +f 2748/5 2747/5 2749/5 +f 2747/5 2750/5 2749/5 +f 2749/5 2750/5 2751/5 +f 2749/5 2751/5 2752/5 +f 2752/5 2751/5 2753/5 +f 2752/5 2753/5 2754/5 +f 2754/5 2753/5 2755/5 +f 2754/5 2755/5 2756/5 +f 2756/5 2755/5 2757/5 +f 2756/5 2757/5 2758/5 +f 2758/5 2757/5 2759/5 +f 2757/5 2760/5 2759/5 +f 2759/5 2760/5 2761/5 +f 2760/5 2762/5 2761/5 +f 2761/5 2762/5 2763/5 +f 2761/5 2763/5 2764/5 +f 2764/5 2763/5 2765/5 +f 2764/5 2765/5 2766/5 +f 2766/5 2765/5 2767/5 +f 2766/5 2767/5 2768/5 +f 2768/5 2767/5 2769/5 +f 2768/5 2769/5 2770/5 +f 2770/5 2769/5 2771/5 +f 2769/5 2772/5 2771/5 +f 2771/5 2772/5 2773/5 +f 2771/5 2773/5 2774/5 +f 2774/5 2773/5 2775/5 +f 2774/5 2775/5 2776/5 +f 2776/5 2775/5 2777/5 +f 2776/5 2777/5 2778/5 +f 2778/5 2777/5 2779/5 +f 2778/5 2779/5 2780/5 +f 2780/5 2779/5 2781/5 +f 2779/5 2782/5 2781/5 +f 2781/5 2782/5 2783/5 +f 2781/5 2783/5 2784/5 +f 2784/5 2783/5 2785/5 +f 2784/5 2785/5 2786/5 +f 2786/5 2785/5 2787/5 +f 2786/5 2787/5 2788/5 +f 2788/5 2787/5 2789/5 +f 2788/5 2789/5 2790/5 +f 2790/5 2789/5 2791/5 +f 2789/5 2792/5 2791/5 +f 2793/5 2794/5 2795/5 +f 2795/5 2794/5 2796/5 +f 2795/5 2796/5 2797/5 +f 2795/5 2797/5 2798/5 +f 2798/5 2797/5 2799/5 +f 2798/5 2799/5 2800/5 +f 2800/5 2799/5 2801/5 +f 2800/5 2801/5 2802/5 +f 2802/5 2801/5 2803/5 +f 2802/5 2803/5 2804/5 +f 2804/5 2803/5 2805/5 +f 2803/5 2806/5 2805/5 +f 2805/5 2806/5 2807/5 +f 2805/5 2807/5 2808/5 +f 2808/5 2807/5 2809/5 +f 2808/5 2809/5 2810/5 +f 2810/5 2809/5 2811/5 +f 2810/5 2811/5 2812/5 +f 2812/5 2811/5 2813/5 +f 2812/5 2813/5 2814/5 +f 2814/5 2813/5 2815/5 +f 2813/5 2816/5 2815/5 +f 2815/5 2816/5 2817/5 +f 2815/5 2817/5 2818/5 +f 2818/5 2817/5 2819/5 +f 2818/5 2819/5 2820/5 +f 2820/5 2819/5 2821/5 +f 2820/5 2821/5 2822/5 +f 2822/5 2821/5 2823/5 +f 2822/5 2823/5 2824/5 +f 2824/5 2823/5 2825/5 +f 2823/5 2826/5 2825/5 +f 2825/5 2826/5 2827/5 +f 2826/5 2828/5 2827/5 +f 2827/5 2828/5 2829/5 +f 2827/5 2829/5 2830/5 +f 2830/5 2829/5 2831/5 +f 2830/5 2831/5 2832/5 +f 2832/5 2831/5 2833/5 +f 2832/5 2833/5 2834/5 +f 2834/5 2833/5 2835/5 +f 2834/5 2835/5 2836/5 +f 2836/5 2835/5 2837/5 +f 2835/5 2838/5 2837/5 +f 2837/5 2838/5 2839/5 +f 2837/5 2839/5 2840/5 +f 2840/5 2839/5 2841/5 +f 2840/5 2841/5 2842/5 +f 2842/5 2841/5 2843/5 +f 2842/5 2843/5 2844/5 +f 2844/5 2843/5 2845/5 +f 2844/5 2845/5 2846/5 +f 2846/5 2845/5 2847/5 +f 2845/5 2848/5 2847/5 +f 2847/5 2848/5 2849/5 +f 2847/5 2849/5 2850/5 +f 2850/5 2849/5 2851/5 +f 2850/5 2851/5 2852/5 +f 2852/5 2851/5 2853/5 +f 2852/5 2853/5 2854/5 +f 2854/5 2853/5 2855/5 +f 2854/5 2855/5 2856/5 +f 2856/5 2855/5 2661/5 +f 2855/5 2659/5 2661/5 +f 2857/5 2858/5 2859/5 +f 2859/5 2858/5 2860/5 +f 2859/5 2860/5 2861/5 +f 2859/5 2861/5 2862/5 +f 2862/5 2861/5 2863/5 +f 2862/5 2863/5 2864/5 +f 2864/5 2863/5 2865/5 +f 2864/5 2865/5 2866/5 +f 2866/5 2865/5 2867/5 +f 2866/5 2867/5 2868/5 +f 2868/5 2867/5 2869/5 +f 2868/5 2869/5 2870/5 +f 2870/5 2869/5 2871/5 +f 2870/5 2871/5 2872/5 +f 2872/5 2871/5 2873/5 +f 2872/5 2873/5 2874/5 +f 2874/5 2873/5 2875/5 +f 2874/5 2875/5 2876/5 +f 2876/5 2875/5 2877/5 +f 2876/5 2877/5 2878/5 +f 2878/5 2877/5 2879/5 +f 2878/5 2879/5 2880/5 +f 2880/5 2879/5 2881/5 +f 2880/5 2881/5 2882/5 +f 2882/5 2881/5 2883/5 +f 2882/5 2883/5 2884/5 +f 2884/5 2883/5 2885/5 +f 2884/5 2885/5 2886/5 +f 2886/5 2885/5 2887/5 +f 2886/5 2887/5 2888/5 +f 2888/5 2887/5 2889/5 +f 2888/5 2889/5 2890/5 +f 2890/5 2889/5 2891/5 +f 2890/5 2891/5 2892/5 +f 2892/5 2891/5 2893/5 +f 2892/5 2893/5 2894/5 +f 2894/5 2893/5 2895/5 +f 2894/5 2895/5 2896/5 +f 2896/5 2895/5 2897/5 +f 2896/5 2897/5 2898/5 +f 2898/5 2897/5 2899/5 +f 2898/5 2899/5 2900/5 +f 2900/5 2899/5 2901/5 +f 2900/5 2901/5 2902/5 +f 2902/5 2901/5 2903/5 +f 2902/5 2903/5 2904/5 +f 2904/5 2903/5 2905/5 +f 2904/5 2905/5 2906/5 +f 2906/5 2905/5 2907/5 +f 2906/5 2907/5 2908/5 +f 2908/5 2907/5 2909/5 +f 2908/5 2909/5 2910/5 +f 2910/5 2909/5 2911/5 +f 2910/5 2911/5 2912/5 +f 2912/5 2911/5 2913/5 +f 2912/5 2913/5 2914/5 +f 2914/5 2913/5 2915/5 +f 2914/5 2915/5 2916/5 +f 2916/5 2915/5 2917/5 +f 2916/5 2917/5 2918/5 +f 2918/5 2917/5 2919/5 +f 2918/5 2919/5 2920/5 +f 2920/5 2919/5 2644/5 +f 2919/5 2625/5 2644/5 +f 2921/5 2858/5 2922/5 +f 2922/5 2858/5 2857/5 +f 2922/5 2857/5 2923/5 +f 2924/5 2925/5 2926/5 +f 2926/5 2925/5 2927/5 +f 2926/5 2927/5 2928/5 +f 2927/5 2925/5 2929/5 +f 2929/5 2925/5 2930/5 +f 2929/5 2930/5 2931/5 +f 2929/5 2931/5 2932/5 +f 2932/5 2931/5 2933/5 +f 2932/5 2933/5 2934/5 +f 2934/5 2933/5 2935/5 +f 2934/5 2935/5 2936/5 +f 2936/5 2935/5 2937/5 +f 2936/5 2937/5 2938/5 +f 2938/5 2937/5 2939/5 +f 2937/5 2940/5 2939/5 +f 2939/5 2940/5 2941/5 +f 2939/5 2941/5 2942/5 +f 2942/5 2941/5 2943/5 +f 2942/5 2943/5 2944/5 +f 2944/5 2943/5 2945/5 +f 2943/5 2946/5 2945/5 +f 2945/5 2946/5 2947/5 +f 2945/5 2947/5 2948/5 +f 2948/5 2947/5 2949/5 +f 2947/5 2950/5 2949/5 +f 2949/5 2950/5 2951/5 +f 2949/5 2951/5 2952/5 +f 2952/5 2951/5 2953/5 +f 2952/5 2953/5 2954/5 +f 2954/5 2953/5 2955/5 +f 2954/5 2955/5 2956/5 +f 2956/5 2955/5 2922/5 +f 2956/5 2922/5 2923/5 +f 2955/5 2921/5 2922/5 +f 2957/5 2924/5 2958/5 +f 2958/5 2924/5 2926/5 +f 2958/5 2926/5 2959/5 +f 2959/5 2926/5 2960/5 +f 2926/5 2928/5 2960/5 +f 2960/5 2928/5 2961/5 +f 2960/5 2961/5 2962/5 +f 2962/5 2963/5 2960/5 +f 2960/5 2963/5 2964/5 +f 2960/5 2964/5 2965/5 +f 2965/5 2966/5 2960/5 +f 2960/5 2966/5 2967/5 +f 2960/5 2967/5 2968/5 +f 2968/5 2969/5 2960/5 +f 2960/5 2969/5 2970/5 +f 2960/5 2970/5 2971/5 +f 2971/5 2972/5 2960/5 +f 2960/5 2972/5 2973/5 +f 2960/5 2973/5 2974/5 +f 2974/5 2975/5 2960/5 +f 2960/5 2975/5 2976/5 +f 2960/5 2976/5 2977/5 +f 2977/5 2978/5 2960/5 +f 2960/5 2978/5 2979/5 +f 2960/5 2979/5 2980/5 +f 2980/5 2981/5 2960/5 +f 2960/5 2981/5 2982/5 +f 2960/5 2982/5 2983/5 +f 2983/5 2984/5 2960/5 +f 2960/5 2984/5 2985/5 +f 2960/5 2985/5 2986/5 +f 2986/5 2987/5 2960/5 +f 2960/5 2987/5 2988/5 +f 2960/5 2988/5 2989/5 +f 2989/5 2990/5 2960/5 +f 2960/5 2990/5 2991/5 +f 2960/5 2991/5 2992/5 +f 2993/5 2994/5 2958/5 +f 2958/5 2994/5 2995/5 +f 2958/5 2995/5 2996/5 +f 2996/5 2997/5 2958/5 +f 2958/5 2997/5 2998/5 +f 2958/5 2998/5 2999/5 +f 2999/5 3000/5 2958/5 +f 2958/5 3000/5 3001/5 +f 2958/5 3001/5 3002/5 +f 3002/5 3003/5 2958/5 +f 2958/5 3003/5 3004/5 +f 2958/5 3004/5 3005/5 +f 3005/5 3006/5 2958/5 +f 2958/5 3006/5 3007/5 +f 2958/5 3007/5 3008/5 +f 3008/5 3009/5 2958/5 +f 2958/5 3009/5 3010/5 +f 2958/5 3010/5 3011/5 +f 3011/5 3012/5 2958/5 +f 2958/5 3012/5 3013/5 +f 2958/5 3013/5 3014/5 +f 3014/5 3015/5 2958/5 +f 2958/5 3015/5 3016/5 +f 2958/5 3016/5 3017/5 +f 3017/5 3018/5 2958/5 +f 2958/5 3018/5 3019/5 +f 2958/5 3019/5 3020/5 +f 3020/5 3021/5 2958/5 +f 2958/5 3021/5 3022/5 +f 2958/5 3022/5 3023/5 +f 3023/5 2957/5 2958/5 +f 2664/5 2663/5 3024/5 +f 3024/5 2663/5 3025/5 +f 3024/5 3025/5 3026/5 +f 3024/5 3026/5 3027/5 +f 3027/5 3026/5 3028/5 +f 3027/5 3028/5 3029/5 +f 3029/5 3028/5 3030/5 +f 3029/5 3030/5 3031/5 +f 3031/5 3030/5 3032/5 +f 3031/5 3032/5 3033/5 +f 3033/5 3032/5 3034/5 +f 3032/5 3035/5 3034/5 +f 3034/5 3035/5 3036/5 +f 3034/5 3036/5 3037/5 +f 3037/5 3036/5 3038/5 +f 3037/5 3038/5 3039/5 +f 3039/5 3038/5 3040/5 +f 3039/5 3040/5 3041/5 +f 3041/5 3040/5 3042/5 +f 3041/5 3042/5 3043/5 +f 3043/5 3042/5 3044/5 +f 3042/5 3045/5 3044/5 +f 3044/5 3045/5 3046/5 +f 3044/5 3046/5 3047/5 +f 3047/5 3046/5 3048/5 +f 3047/5 3048/5 3049/5 +f 3049/5 3048/5 3050/5 +f 3049/5 3050/5 3051/5 +f 3051/5 3050/5 3052/5 +f 3051/5 3052/5 3053/5 +f 3053/5 3052/5 3054/5 +f 3052/5 3055/5 3054/5 +f 3054/5 3055/5 3056/5 +f 3055/5 3057/5 3056/5 +f 3056/5 3057/5 3058/5 +f 3056/5 3058/5 3059/5 +f 3059/5 3058/5 3060/5 +f 3059/5 3060/5 3061/5 +f 3061/5 3060/5 3062/5 +f 3061/5 3062/5 3063/5 +f 3063/5 3062/5 3064/5 +f 3063/5 3064/5 3065/5 +f 3065/5 3064/5 3066/5 +f 3064/5 3067/5 3066/5 +f 3066/5 3067/5 3068/5 +f 3066/5 3068/5 3069/5 +f 3069/5 3068/5 3070/5 +f 3069/5 3070/5 3071/5 +f 3071/5 3070/5 3072/5 +f 3071/5 3072/5 3073/5 +f 3073/5 3072/5 3074/5 +f 3073/5 3074/5 3075/5 +f 3075/5 3074/5 3076/5 +f 3074/5 3077/5 3076/5 +f 3076/5 3077/5 3078/5 +f 3076/5 3078/5 3079/5 +f 3079/5 3078/5 3080/5 +f 3079/5 3080/5 3081/5 +f 3081/5 3080/5 3082/5 +f 3081/5 3082/5 3083/5 +f 3083/5 3082/5 3084/5 +f 3083/5 3084/5 3085/5 +f 3085/5 3084/5 3086/5 +f 3084/5 3087/5 3086/5 +f 3088/5 3089/5 3090/5 +f 3090/5 3089/5 3091/5 +f 3090/5 3091/5 3092/5 +f 3092/5 3091/5 3093/5 +f 3092/5 3093/5 3094/5 +f 3094/5 3093/5 3095/5 +f 3094/5 3095/5 3096/5 +f 3097/5 3098/5 3090/5 +f 3090/5 3098/5 3099/5 +f 3090/5 3099/5 3100/5 +f 3100/5 3101/5 3090/5 +f 3090/5 3101/5 3102/5 +f 3090/5 3102/5 3103/5 +f 3103/5 3104/5 3090/5 +f 3090/5 3104/5 3105/5 +f 3090/5 3105/5 3106/5 +f 3106/5 3107/5 3090/5 +f 3090/5 3107/5 3108/5 +f 3090/5 3108/5 3109/5 +f 3109/5 3110/5 3090/5 +f 3090/5 3110/5 3111/5 +f 3090/5 3111/5 3112/5 +f 3112/5 3113/5 3090/5 +f 3090/5 3113/5 3114/5 +f 3090/5 3114/5 3115/5 +f 3115/5 3116/5 3090/5 +f 3090/5 3116/5 3117/5 +f 3090/5 3117/5 3118/5 +f 3118/5 3119/5 3090/5 +f 3090/5 3119/5 3120/5 +f 3090/5 3120/5 3121/5 +f 3121/5 3122/5 3090/5 +f 3090/5 3122/5 3123/5 +f 3090/5 3123/5 3124/5 +f 3124/5 3125/5 3090/5 +f 3090/5 3125/5 3126/5 +f 3090/5 3126/5 3088/5 +f 3096/5 3127/5 3094/5 +f 3094/5 3127/5 3128/5 +f 3094/5 3128/5 3129/5 +f 3129/5 3130/5 3094/5 +f 3094/5 3130/5 3131/5 +f 3094/5 3131/5 3132/5 +f 3132/5 3133/5 3094/5 +f 3094/5 3133/5 3134/5 +f 3094/5 3134/5 3135/5 +f 3135/5 3136/5 3094/5 +f 3094/5 3136/5 3137/5 +f 3094/5 3137/5 3138/5 +f 3138/5 3139/5 3094/5 +f 3094/5 3139/5 3140/5 +f 3094/5 3140/5 3141/5 +f 3141/5 3142/5 3094/5 +f 3094/5 3142/5 3143/5 +f 3094/5 3143/5 3144/5 +f 3144/5 3145/5 3094/5 +f 3094/5 3145/5 3146/5 +f 3094/5 3146/5 3147/5 +f 3147/5 3148/5 3094/5 +f 3094/5 3148/5 3149/5 +f 3094/5 3149/5 3150/5 +f 3150/5 3151/5 3094/5 +f 3094/5 3151/5 3152/5 +f 3094/5 3152/5 3153/5 +f 3153/5 3154/5 3094/5 +f 3094/5 3154/5 3155/5 +f 3094/5 3155/5 3156/5 +f 3091/5 3157/5 3093/5 +f 3093/5 3157/5 3158/5 +f 3158/5 3157/5 3159/5 +f 3159/5 3157/5 3160/5 +f 3159/5 3160/5 3161/5 +f 3159/5 3161/5 3162/5 +f 3162/5 3161/5 3163/5 +f 3162/5 3163/5 3164/5 +f 3164/5 3163/5 3165/5 +f 3164/5 3165/5 3166/5 +f 3166/5 3165/5 3167/5 +f 3166/5 3167/5 3168/5 +f 3168/5 3167/5 3169/5 +f 3167/5 3170/5 3169/5 +f 3169/5 3170/5 3171/5 +f 3169/5 3171/5 3172/5 +f 3172/5 3171/5 3173/5 +f 3172/5 3173/5 3174/5 +f 3174/5 3173/5 3175/5 +f 3173/5 3176/5 3175/5 +f 3175/5 3176/5 3177/5 +f 3175/5 3177/5 3178/5 +f 3178/5 3177/5 3179/5 +f 3177/5 3180/5 3179/5 +f 3179/5 3180/5 3181/5 +f 3179/5 3181/5 3182/5 +f 3182/5 3181/5 3183/5 +f 3182/5 3183/5 3184/5 +f 3184/5 3183/5 3185/5 +f 3184/5 3185/5 3186/5 +f 3186/5 3185/5 3187/5 +f 3186/5 3187/5 3188/5 +f 2666/5 3189/5 3190/5 +f 3190/5 3189/5 3191/5 +f 3190/5 3191/5 3192/5 +f 3192/5 3191/5 3193/5 +f 3192/5 3193/5 3194/5 +f 3194/5 3193/5 3195/5 +f 3194/5 3195/5 3196/5 +f 3196/5 3195/5 3197/5 +f 3196/5 3197/5 3198/5 +f 3198/5 3197/5 3199/5 +f 3198/5 3199/5 3200/5 +f 3200/5 3199/5 3201/5 +f 3200/5 3201/5 3202/5 +f 3202/5 3201/5 3203/5 +f 3202/5 3203/5 3204/5 +f 3204/5 3203/5 3205/5 +f 3204/5 3205/5 3206/5 +f 2666/5 2665/5 3189/5 +f 3207/5 3208/5 3209/5 +f 3209/5 3208/5 3210/5 +f 3209/5 3210/5 3211/5 +f 3209/5 3211/5 3212/5 +f 3212/5 3211/5 3213/5 +f 3212/5 3213/5 3214/5 +f 3214/5 3213/5 3215/5 +f 3214/5 3215/5 3216/5 +f 3216/5 3215/5 3217/5 +f 3216/5 3217/5 3218/5 +f 3218/5 3217/5 3219/5 +f 3218/5 3219/5 3220/5 +f 3220/5 3219/5 3221/5 +f 3220/5 3221/5 3222/5 +f 3222/5 3221/5 3223/5 +f 3221/5 3224/5 3223/5 +f 3223/5 3224/5 2791/5 +f 3223/5 2791/5 2792/5 +f 3187/5 3225/5 3188/5 +f 3188/5 3225/5 3226/5 +f 3227/5 3228/5 3229/5 +f 3229/5 3228/5 3230/5 +f 3229/5 3230/5 3231/5 +f 3231/5 3230/5 3232/5 +f 3231/5 3232/5 3233/5 +f 3233/5 3232/5 3234/5 +f 3233/5 3234/5 3235/5 +f 3235/5 3234/5 3236/5 +f 3235/5 3236/5 3237/5 +f 3237/5 3236/5 3238/5 +f 3237/5 3238/5 3239/5 +f 3239/5 3238/5 3240/5 +f 3239/5 3240/5 3241/5 +f 3241/5 3240/5 3242/5 +f 3241/5 3242/5 3243/5 +f 3243/5 3242/5 3244/5 +f 3243/5 3244/5 3245/5 +f 3245/5 3244/5 3246/5 +f 3245/5 3246/5 3247/5 +f 3247/5 3246/5 3248/5 +f 3247/5 3248/5 3249/5 +f 3249/5 3248/5 3250/5 +f 3249/5 3250/5 3251/5 +f 3251/5 3250/5 3252/5 +f 3251/5 3252/5 3253/5 +f 3253/5 3252/5 3254/5 +f 3253/5 3254/5 3255/5 +f 3227/5 3256/5 3228/5 +f 3228/5 3256/5 3257/5 +f 3256/5 3258/5 3257/5 +f 3257/5 3258/5 3259/5 +f 3258/5 3260/5 3259/5 +f 3259/5 3260/5 3261/5 +f 3260/5 3262/5 3261/5 +f 3261/5 3262/5 3263/5 +f 3262/5 3264/5 3263/5 +f 3263/5 3264/5 3265/5 +f 3264/5 3266/5 3265/5 +f 3265/5 3266/5 3267/5 +f 3266/5 3268/5 3267/5 +f 3267/5 3268/5 3269/5 +f 3268/5 3270/5 3269/5 +f 3269/5 3270/5 3271/5 +f 3270/5 3272/5 3271/5 +f 3271/5 3272/5 3273/5 +f 3272/5 3274/5 3273/5 +f 3273/5 3274/5 3275/5 +f 3274/5 3276/5 3275/5 +f 3275/5 3276/5 3277/5 +f 3276/5 3278/5 3277/5 +f 3277/5 3278/5 3279/5 +f 3278/5 3280/5 3279/5 +f 3279/5 3280/5 3281/5 +f 3280/5 3282/5 3281/5 +f 3281/5 3282/5 3283/5 +f 3282/5 3284/5 3283/5 +f 3283/5 3284/5 3285/5 +f 3284/5 3286/5 3285/5 +f 3285/5 3286/5 3287/5 +f 3286/5 3288/5 3287/5 +f 3287/5 3288/5 3289/5 +f 3288/5 3290/5 3289/5 +f 3289/5 3290/5 3291/5 +f 3290/5 3292/5 3291/5 +f 3291/5 3292/5 3293/5 +f 3292/5 3294/5 3293/5 +f 3293/5 3294/5 3295/5 +f 3294/5 3296/5 3295/5 +f 3295/5 3296/5 3297/5 +f 3296/5 3298/5 3297/5 +f 3297/5 3298/5 3299/5 +f 3298/5 3300/5 3299/5 +f 3299/5 3300/5 3301/5 +f 3300/5 3302/5 3301/5 +f 3301/5 3302/5 3303/5 +f 3302/5 3304/5 3303/5 +f 3303/5 3304/5 3305/5 +f 3304/5 3306/5 3305/5 +f 3305/5 3306/5 3307/5 +f 3306/5 3308/5 3307/5 +f 3307/5 3308/5 3309/5 +f 3253/5 3255/5 3310/5 +f 3310/5 3255/5 3311/5 +f 3310/5 3311/5 3312/5 +f 3312/5 3311/5 3313/5 +f 3312/5 3313/5 3314/5 +f 3314/5 3313/5 3315/5 +f 3314/5 3315/5 3316/5 +f 3316/5 3315/5 3317/5 +f 3316/5 3317/5 3318/5 +f 3318/5 3317/5 3319/5 +f 3318/5 3319/5 3320/5 +f 3320/5 3319/5 3321/5 +f 3320/5 3321/5 3322/5 +f 3322/5 3321/5 3323/5 +f 3322/5 3323/5 3324/5 +f 3324/5 3323/5 3325/5 +f 3324/5 3325/5 3326/5 +f 3326/5 3325/5 2794/5 +f 3326/5 2794/5 2793/5 +f 3327/5 3328/5 3329/5 +f 3329/5 3328/5 3330/5 +f 3329/5 3330/5 3331/5 +f 3329/5 3331/5 3332/5 +f 3332/5 3331/5 3333/5 +f 3332/5 3333/5 3334/5 +f 3334/5 3333/5 3335/5 +f 3334/5 3335/5 3336/5 +f 3336/5 3335/5 3337/5 +f 3336/5 3337/5 3338/5 +f 3338/5 3337/5 3339/5 +f 3338/5 3339/5 3340/5 +f 3340/5 3339/5 3341/5 +f 3340/5 3341/5 3342/5 +f 3342/5 3341/5 3343/5 +f 3342/5 3343/5 3344/5 +f 3344/5 3343/5 3345/5 +f 3344/5 3345/5 3346/5 +f 3346/5 3345/5 3347/5 +f 3346/5 3347/5 3348/5 +f 3348/5 3347/5 3349/5 +f 3348/5 3349/5 3350/5 +f 3350/5 3349/5 3351/5 +f 3350/5 3351/5 3352/5 +f 3352/5 3351/5 3353/5 +f 3352/5 3353/5 3354/5 +f 3354/5 3353/5 3355/5 +f 3354/5 3355/5 3356/5 +f 3356/5 3355/5 3357/5 +f 3356/5 3357/5 3358/5 +f 3358/5 3357/5 3359/5 +f 3358/5 3359/5 3360/5 +f 3360/5 3359/5 3361/5 +f 3360/5 3361/5 3362/5 +f 3362/5 3361/5 3363/5 +f 3362/5 3363/5 3364/5 +f 3364/5 3363/5 3365/5 +f 3364/5 3365/5 3366/5 +f 3366/5 3365/5 3367/5 +f 3366/5 3367/5 3368/5 +f 3368/5 3367/5 3369/5 +f 3368/5 3369/5 3370/5 +f 3370/5 3369/5 3371/5 +f 3370/5 3371/5 3372/5 +f 3372/5 3371/5 3373/5 +f 3372/5 3373/5 3374/5 +f 3374/5 3373/5 3375/5 +f 3374/5 3375/5 3376/5 +f 3376/5 3375/5 3377/5 +f 3376/5 3377/5 3378/5 +f 3378/5 3377/5 3379/5 +f 3378/5 3379/5 3380/5 +f 3378/5 3380/5 3381/5 +f 3381/5 3380/5 3382/5 +f 3381/5 3382/5 3383/5 +f 3383/5 3382/5 3384/5 +f 3383/5 3384/5 3385/5 +f 3385/5 3384/5 3386/5 +f 3385/5 3386/5 3387/5 +f 3387/5 3386/5 3388/5 +f 3387/5 3388/5 3389/5 +f 3389/5 3388/5 3390/5 +f 3389/5 3390/5 3391/5 +f 3391/5 3390/5 3392/5 +f 3391/5 3392/5 3393/5 +f 3391/5 3393/5 3394/5 +f 3394/5 3393/5 3395/5 +f 3394/5 3395/5 3396/5 +f 3396/5 3395/5 3397/5 +f 3396/5 3397/5 3398/5 +f 3398/5 3397/5 3399/5 +f 3398/5 3399/5 3400/5 +f 3400/5 3399/5 3401/5 +f 3400/5 3401/5 3402/5 +f 3402/5 3401/5 3403/5 +f 3402/5 3403/5 3404/5 +f 3404/5 3403/5 3405/5 +f 3404/5 3405/5 3406/5 +f 3406/5 3405/5 3407/5 +f 3406/5 3407/5 3408/5 +f 3408/5 3407/5 3409/5 +f 3408/5 3409/5 3410/5 +f 3410/5 3409/5 3411/5 +f 3410/5 3411/5 3412/5 +f 3412/5 3411/5 3413/5 +f 3412/5 3413/5 3414/5 +f 3414/5 3413/5 3415/5 +f 3414/5 3415/5 3416/5 +f 3416/5 3415/5 3417/5 +f 3416/5 3417/5 3418/5 +f 3418/5 3417/5 3419/5 +f 3418/5 3419/5 3420/5 +f 3420/5 3419/5 3421/5 +f 3420/5 3421/5 3422/5 +f 3422/5 3421/5 3423/5 +f 3422/5 3423/5 3424/5 +f 3424/5 3423/5 3086/5 +f 3424/5 3086/5 3087/5 +f 3425/5 3426/5 3381/5 +f 3381/5 3426/5 3378/5 +f 3226/5 3225/5 3427/5 +f 3427/5 3225/5 3428/5 +f 3427/5 3428/5 3429/5 +f 3427/5 3429/5 3430/5 +f 3430/5 3429/5 3431/5 +f 3430/5 3431/5 3432/5 +f 3432/5 3431/5 3433/5 +f 3432/5 3433/5 3434/5 +f 3434/5 3433/5 3435/5 +f 3434/5 3435/5 3436/5 +f 3436/5 3435/5 3437/5 +f 3436/5 3437/5 3438/5 +f 3438/5 3437/5 3439/5 +f 3438/5 3439/5 3440/5 +f 3440/5 3439/5 3441/5 +f 3440/5 3441/5 3442/5 +f 3442/5 3441/5 3443/5 +f 3442/5 3443/5 3444/5 +f 3444/5 3443/5 3445/5 +f 3444/5 3445/5 3446/5 +f 3446/5 3445/5 3447/5 +f 3446/5 3447/5 3448/5 +f 3448/5 3447/5 3449/5 +f 3448/5 3449/5 3450/5 +f 3450/5 3449/5 3451/5 +f 3450/5 3451/5 3452/5 +f 3452/5 3451/5 3453/5 +f 3452/5 3453/5 3454/5 +f 3454/5 3453/5 3455/5 +f 3454/5 3455/5 3456/5 +f 3456/5 3455/5 3457/5 +f 3456/5 3457/5 3458/5 +f 3458/5 3457/5 3459/5 +f 3458/5 3459/5 3460/5 +f 3460/5 3459/5 3461/5 +f 3460/5 3461/5 3462/5 +f 3462/5 3461/5 3463/5 +f 3462/5 3463/5 3464/5 +f 3464/5 3463/5 3465/5 +f 3464/5 3465/5 3466/5 +f 3466/5 3465/5 3467/5 +f 3466/5 3467/5 3468/5 +f 3468/5 3467/5 3469/5 +f 3468/5 3469/5 3470/5 +f 3470/5 3469/5 3471/5 +f 3470/5 3471/5 3472/5 +f 3472/5 3471/5 3473/5 +f 3472/5 3473/5 3474/5 +f 3474/5 3473/5 3475/5 +f 3474/5 3475/5 3476/5 +f 3476/5 3475/5 3477/5 +f 3476/5 3477/5 3478/5 +f 3478/5 3477/5 3479/5 +f 3478/5 3479/5 3480/5 +f 3480/5 3479/5 3481/5 +f 3480/5 3481/5 3482/5 +f 3482/5 3481/5 3483/5 +f 3482/5 3483/5 3484/5 +f 3484/5 3483/5 3485/5 +f 3484/5 3485/5 3486/5 +f 3486/5 3485/5 3487/5 +f 3486/5 3487/5 3488/5 +f 3488/5 3487/5 2534/5 +f 3487/5 2522/5 2534/5 +f 3489/5 3490/5 3491/5 +f 3491/5 3490/5 3492/5 +f 3491/5 3492/5 3493/5 +f 3491/5 3493/5 3494/5 +f 3494/5 3493/5 3495/5 +f 3494/5 3495/5 3496/5 +f 3496/5 3495/5 3497/5 +f 3496/5 3497/5 3498/5 +f 3498/5 3497/5 3499/5 +f 3498/5 3499/5 3500/5 +f 3500/5 3499/5 3501/5 +f 3499/5 3502/5 3501/5 +f 3501/5 3502/5 3503/5 +f 3501/5 3503/5 3504/5 +f 3504/5 3503/5 3505/5 +f 3504/5 3505/5 3506/5 +f 3506/5 3505/5 3507/5 +f 3506/5 3507/5 3508/5 +f 3508/5 3507/5 3509/5 +f 3508/5 3509/5 3510/5 +f 3510/5 3509/5 3511/5 +f 3509/5 3512/5 3511/5 +f 3511/5 3512/5 3513/5 +f 3511/5 3513/5 3514/5 +f 3514/5 3513/5 3515/5 +f 3514/5 3515/5 3516/5 +f 3516/5 3515/5 3517/5 +f 3516/5 3517/5 3518/5 +f 3518/5 3517/5 3519/5 +f 3518/5 3519/5 3520/5 +f 3520/5 3519/5 3521/5 +f 3519/5 3522/5 3521/5 +f 3521/5 3522/5 3523/5 +f 3522/5 3524/5 3523/5 +f 3523/5 3524/5 3525/5 +f 3523/5 3525/5 3526/5 +f 3526/5 3525/5 3527/5 +f 3526/5 3527/5 3528/5 +f 3528/5 3527/5 3529/5 +f 3528/5 3529/5 3530/5 +f 3530/5 3529/5 3531/5 +f 3530/5 3531/5 3532/5 +f 3532/5 3531/5 3533/5 +f 3531/5 3534/5 3533/5 +f 3533/5 3534/5 3535/5 +f 3533/5 3535/5 3536/5 +f 3536/5 3535/5 3537/5 +f 3536/5 3537/5 3538/5 +f 3538/5 3537/5 3539/5 +f 3538/5 3539/5 3540/5 +f 3540/5 3539/5 3541/5 +f 3540/5 3541/5 3542/5 +f 3542/5 3541/5 3543/5 +f 3541/5 3544/5 3543/5 +f 3543/5 3544/5 3545/5 +f 3543/5 3545/5 3546/5 +f 3546/5 3545/5 3547/5 +f 3546/5 3547/5 3548/5 +f 3548/5 3547/5 3549/5 +f 3548/5 3549/5 3550/5 +f 3550/5 3549/5 3551/5 +f 3550/5 3551/5 3552/5 +f 3552/5 3551/5 3553/5 +f 3551/5 3554/5 3553/5 +f 3555/5 3556/5 3557/5 +f 3557/5 3556/5 3558/5 +f 3557/5 3558/5 3559/5 +f 3557/5 3559/5 3560/5 +f 3560/5 3559/5 3561/5 +f 3560/5 3561/5 3562/5 +f 3562/5 3561/5 3563/5 +f 3562/5 3563/5 3564/5 +f 3564/5 3563/5 3565/5 +f 3564/5 3565/5 3566/5 +f 3566/5 3565/5 3567/5 +f 3565/5 3568/5 3567/5 +f 3567/5 3568/5 3569/5 +f 3567/5 3569/5 3570/5 +f 3570/5 3569/5 3571/5 +f 3570/5 3571/5 3572/5 +f 3572/5 3571/5 3573/5 +f 3572/5 3573/5 3574/5 +f 3574/5 3573/5 3575/5 +f 3574/5 3575/5 3576/5 +f 3576/5 3575/5 3577/5 +f 3575/5 3578/5 3577/5 +f 3577/5 3578/5 3579/5 +f 3577/5 3579/5 3580/5 +f 3580/5 3579/5 3581/5 +f 3580/5 3581/5 3582/5 +f 3582/5 3581/5 3583/5 +f 3582/5 3583/5 3584/5 +f 3584/5 3583/5 3585/5 +f 3584/5 3585/5 3586/5 +f 3586/5 3585/5 3587/5 +f 3585/5 3588/5 3587/5 +f 3587/5 3588/5 3589/5 +f 3588/5 3590/5 3589/5 +f 3589/5 3590/5 3591/5 +f 3589/5 3591/5 3592/5 +f 3592/5 3591/5 3593/5 +f 3592/5 3593/5 3594/5 +f 3594/5 3593/5 3595/5 +f 3594/5 3595/5 3596/5 +f 3596/5 3595/5 3597/5 +f 3596/5 3597/5 3598/5 +f 3598/5 3597/5 3599/5 +f 3597/5 3600/5 3599/5 +f 3599/5 3600/5 3601/5 +f 3599/5 3601/5 3602/5 +f 3602/5 3601/5 3603/5 +f 3602/5 3603/5 3604/5 +f 3604/5 3603/5 3605/5 +f 3604/5 3605/5 3606/5 +f 3606/5 3605/5 3607/5 +f 3606/5 3607/5 3608/5 +f 3608/5 3607/5 3609/5 +f 3607/5 3610/5 3609/5 +f 3609/5 3610/5 3611/5 +f 3609/5 3611/5 3612/5 +f 3612/5 3611/5 3613/5 +f 3612/5 3613/5 3614/5 +f 3614/5 3613/5 3615/5 +f 3614/5 3615/5 3616/5 +f 3616/5 3615/5 3617/5 +f 3616/5 3617/5 3618/5 +f 3618/5 3617/5 3619/5 +f 3617/5 3620/5 3619/5 +f 3621/5 3622/5 3623/5 +f 3623/5 3622/5 3624/5 +f 3623/5 3624/5 3625/5 +f 3625/5 3626/5 3623/5 +f 3623/5 3626/5 3627/5 +f 3623/5 3627/5 3628/5 +f 3628/5 3629/5 3623/5 +f 3623/5 3629/5 3630/5 +f 3623/5 3630/5 3631/5 +f 3631/5 3632/5 3623/5 +f 3623/5 3632/5 3633/5 +f 3623/5 3633/5 3634/5 +f 3634/5 3635/5 3623/5 +f 3623/5 3635/5 3636/5 +f 3623/5 3636/5 3637/5 +f 3637/5 3638/5 3623/5 +f 3623/5 3638/5 3639/5 +f 3623/5 3639/5 3640/5 +f 3640/5 3641/5 3623/5 +f 3623/5 3641/5 3642/5 +f 3623/5 3642/5 3643/5 +f 3643/5 3644/5 3623/5 +f 3623/5 3644/5 3645/5 +f 3623/5 3645/5 3646/5 +f 3646/5 3647/5 3623/5 +f 3623/5 3647/5 3648/5 +f 3623/5 3648/5 3649/5 +f 3649/5 3650/5 3623/5 +f 3623/5 3650/5 3651/5 +f 3623/5 3651/5 3652/5 +f 3652/5 3653/5 3623/5 +f 3623/5 3653/5 3654/5 +f 3654/5 3653/5 3655/5 +f 3655/5 3653/5 3656/5 +f 3655/5 3656/5 3657/5 +f 3658/5 3659/5 3657/5 +f 3657/5 3659/5 3660/5 +f 3657/5 3660/5 3655/5 +f 3658/5 3661/5 3659/5 +f 3659/5 3661/5 3662/5 +f 3659/5 3662/5 3663/5 +f 3663/5 3664/5 3659/5 +f 3659/5 3664/5 3665/5 +f 3659/5 3665/5 3666/5 +f 3666/5 3667/5 3659/5 +f 3659/5 3667/5 3668/5 +f 3659/5 3668/5 3669/5 +f 3669/5 3670/5 3659/5 +f 3659/5 3670/5 3671/5 +f 3659/5 3671/5 3672/5 +f 3672/5 3673/5 3659/5 +f 3659/5 3673/5 3674/5 +f 3659/5 3674/5 3675/5 +f 3675/5 3676/5 3659/5 +f 3659/5 3676/5 3677/5 +f 3659/5 3677/5 3678/5 +f 3678/5 3679/5 3659/5 +f 3659/5 3679/5 3680/5 +f 3659/5 3680/5 3681/5 +f 3681/5 3682/5 3659/5 +f 3659/5 3682/5 3683/5 +f 3659/5 3683/5 3684/5 +f 3684/5 3685/5 3659/5 +f 3659/5 3685/5 3686/5 +f 3659/5 3686/5 3687/5 +f 3687/5 3688/5 3659/5 +f 3659/5 3688/5 3689/5 +f 3659/5 3689/5 3690/5 +f 3490/5 3489/5 3691/5 +f 3691/5 3489/5 3692/5 +f 3691/5 3692/5 3693/5 +f 3694/5 3695/5 3696/5 +f 3696/5 3695/5 3697/5 +f 3696/5 3697/5 3698/5 +f 3698/5 3697/5 3699/5 +f 3698/5 3699/5 3700/5 +f 3700/5 3699/5 3701/5 +f 3700/5 3701/5 3702/5 +f 3702/5 3701/5 3703/5 +f 3702/5 3703/5 3704/5 +f 3704/5 3703/5 3705/5 +f 3704/5 3705/5 3706/5 +f 3706/5 3705/5 3707/5 +f 3706/5 3707/5 3708/5 +f 3708/5 3707/5 3709/5 +f 3708/5 3709/5 3693/5 +f 3693/5 3709/5 3710/5 +f 3693/5 3710/5 3691/5 +f 3694/5 3711/5 3695/5 +f 3695/5 3711/5 3712/5 +f 3711/5 3713/5 3712/5 +f 3712/5 3713/5 3714/5 +f 3713/5 3715/5 3714/5 +f 3714/5 3715/5 3716/5 +f 3715/5 3717/5 3716/5 +f 3716/5 3717/5 3718/5 +f 3717/5 3719/5 3718/5 +f 3718/5 3719/5 3720/5 +f 3719/5 3721/5 3720/5 +f 3720/5 3721/5 3722/5 +f 3721/5 3723/5 3722/5 +f 3722/5 3723/5 3724/5 +f 3723/5 3725/5 3724/5 +f 3724/5 3725/5 3726/5 +f 3725/5 3556/5 3726/5 +f 3726/5 3556/5 3555/5 +f 3727/5 3728/5 3729/5 +f 3729/5 3728/5 3730/5 +f 3729/5 3730/5 3731/5 +f 3731/5 3732/5 3729/5 +f 3729/5 3732/5 3733/5 +f 3729/5 3733/5 3734/5 +f 3734/5 3735/5 3729/5 +f 3729/5 3735/5 3736/5 +f 3729/5 3736/5 3737/5 +f 3737/5 3738/5 3729/5 +f 3729/5 3738/5 3739/5 +f 3729/5 3739/5 3740/5 +f 3740/5 3741/5 3729/5 +f 3729/5 3741/5 3742/5 +f 3729/5 3742/5 3743/5 +f 3743/5 3744/5 3729/5 +f 3729/5 3744/5 3745/5 +f 3729/5 3745/5 3746/5 +f 3746/5 3747/5 3729/5 +f 3729/5 3747/5 3748/5 +f 3729/5 3748/5 3749/5 +f 3749/5 3750/5 3729/5 +f 3729/5 3750/5 3751/5 +f 3729/5 3751/5 3752/5 +f 3752/5 3753/5 3729/5 +f 3729/5 3753/5 3754/5 +f 3729/5 3754/5 3755/5 +f 3755/5 3756/5 3729/5 +f 3729/5 3756/5 3757/5 +f 3729/5 3757/5 3758/5 +f 3758/5 3759/5 3729/5 +f 3729/5 3759/5 3760/5 +f 3760/5 3759/5 3761/5 +f 3761/5 3759/5 3762/5 +f 3761/5 3762/5 3763/5 +f 3764/5 3765/5 3763/5 +f 3763/5 3765/5 3766/5 +f 3763/5 3766/5 3761/5 +f 3764/5 3767/5 3765/5 +f 3765/5 3767/5 3768/5 +f 3765/5 3768/5 3769/5 +f 3769/5 3770/5 3765/5 +f 3765/5 3770/5 3771/5 +f 3765/5 3771/5 3772/5 +f 3772/5 3773/5 3765/5 +f 3765/5 3773/5 3774/5 +f 3765/5 3774/5 3775/5 +f 3775/5 3776/5 3765/5 +f 3765/5 3776/5 3777/5 +f 3765/5 3777/5 3778/5 +f 3778/5 3779/5 3765/5 +f 3765/5 3779/5 3780/5 +f 3765/5 3780/5 3781/5 +f 3781/5 3782/5 3765/5 +f 3765/5 3782/5 3783/5 +f 3765/5 3783/5 3784/5 +f 3784/5 3785/5 3765/5 +f 3765/5 3785/5 3786/5 +f 3765/5 3786/5 3787/5 +f 3787/5 3788/5 3765/5 +f 3765/5 3788/5 3789/5 +f 3765/5 3789/5 3790/5 +f 3790/5 3791/5 3765/5 +f 3765/5 3791/5 3792/5 +f 3765/5 3792/5 3793/5 +f 3793/5 3794/5 3765/5 +f 3765/5 3794/5 3795/5 +f 3765/5 3795/5 3796/5 +f 3553/5 3554/5 3797/5 +f 3797/5 3554/5 3798/5 +f 3797/5 3798/5 3799/5 +f 3799/5 3798/5 3800/5 +f 3801/5 3802/5 3803/5 +f 3803/5 3802/5 3804/5 +f 3803/5 3804/5 3805/5 +f 3801/5 3806/5 3802/5 +f 3802/5 3806/5 3807/5 +f 3802/5 3807/5 3808/5 +f 3808/5 3809/5 3802/5 +f 3802/5 3809/5 3810/5 +f 3802/5 3810/5 3811/5 +f 3811/5 3812/5 3802/5 +f 3802/5 3812/5 3813/5 +f 3802/5 3813/5 3814/5 +f 3814/5 3815/5 3802/5 +f 3802/5 3815/5 3816/5 +f 3802/5 3816/5 3817/5 +f 3817/5 3818/5 3802/5 +f 3802/5 3818/5 3819/5 +f 3802/5 3819/5 3820/5 +f 3820/5 3821/5 3802/5 +f 3802/5 3821/5 3822/5 +f 3802/5 3822/5 3823/5 +f 3823/5 3824/5 3802/5 +f 3802/5 3824/5 3825/5 +f 3802/5 3825/5 3826/5 +f 3826/5 3827/5 3802/5 +f 3802/5 3827/5 3828/5 +f 3802/5 3828/5 3829/5 +f 3829/5 3830/5 3802/5 +f 3802/5 3830/5 3831/5 +f 3802/5 3831/5 3832/5 +f 3832/5 3833/5 3802/5 +f 3802/5 3833/5 3834/5 +f 3802/5 3834/5 3835/5 +f 3836/5 3837/5 3805/5 +f 3805/5 3837/5 3838/5 +f 3805/5 3838/5 3803/5 +f 3836/5 3839/5 3837/5 +f 3837/5 3839/5 3840/5 +f 3841/5 3842/5 3839/5 +f 3839/5 3842/5 3843/5 +f 3839/5 3843/5 3844/5 +f 3844/5 3845/5 3839/5 +f 3839/5 3845/5 3846/5 +f 3839/5 3846/5 3847/5 +f 3847/5 3848/5 3839/5 +f 3839/5 3848/5 3849/5 +f 3839/5 3849/5 3850/5 +f 3850/5 3851/5 3839/5 +f 3839/5 3851/5 3852/5 +f 3839/5 3852/5 3853/5 +f 3853/5 3854/5 3839/5 +f 3839/5 3854/5 3855/5 +f 3839/5 3855/5 3856/5 +f 3856/5 3857/5 3839/5 +f 3839/5 3857/5 3858/5 +f 3839/5 3858/5 3859/5 +f 3859/5 3860/5 3839/5 +f 3839/5 3860/5 3861/5 +f 3839/5 3861/5 3862/5 +f 3862/5 3863/5 3839/5 +f 3839/5 3863/5 3864/5 +f 3839/5 3864/5 3865/5 +f 3865/5 3866/5 3839/5 +f 3839/5 3866/5 3867/5 +f 3839/5 3867/5 3868/5 +f 3868/5 3869/5 3839/5 +f 3839/5 3869/5 3870/5 +f 3839/5 3870/5 3840/5 +f 3871/5 3872/5 3873/5 +f 3873/5 3872/5 3874/5 +f 3873/5 3874/5 3875/5 +f 3872/5 3876/5 3874/5 +f 3873/5 3875/5 3877/5 +f 3877/5 3875/5 3878/5 +f 3877/5 3878/5 3879/5 +f 3879/5 3878/5 3880/5 +f 3879/5 3880/5 3881/5 +f 3881/5 3880/5 3882/5 +f 3881/5 3882/5 3883/5 +f 3883/5 3882/5 3884/5 +f 3883/5 3884/5 3885/5 +f 3885/5 3884/5 3886/5 +f 3885/5 3886/5 3887/5 +f 3887/5 3886/5 3805/5 +f 3887/5 3805/5 3804/5 +f 3886/5 3836/5 3805/5 +f 3888/5 3876/5 3889/5 +f 3889/5 3876/5 3872/5 +f 3889/5 3872/5 3890/5 +f 3890/5 3872/5 3871/5 +f 3888/5 3889/5 3891/5 +f 3891/5 3889/5 3892/5 +f 3891/5 3892/5 3893/5 +f 3889/5 3890/5 3892/5 +f 3891/5 3893/5 3894/5 +f 3894/5 3893/5 3895/5 +f 3894/5 3895/5 3896/5 +f 3896/5 3895/5 3897/5 +f 3896/5 3897/5 3898/5 +f 3898/5 3897/5 3899/5 +f 3898/5 3899/5 3900/5 +f 3900/5 3899/5 3901/5 +f 3900/5 3901/5 3902/5 +f 3902/5 3901/5 3903/5 +f 3902/5 3903/5 3904/5 +f 3904/5 3903/5 3761/5 +f 3904/5 3761/5 3766/5 +f 3903/5 3760/5 3761/5 +f 3620/5 3905/5 3619/5 +f 3619/5 3905/5 3906/5 +f 3905/5 3907/5 3906/5 +f 3906/5 3907/5 3908/5 +f 3909/5 3910/5 3911/5 +f 3911/5 3910/5 3912/5 +f 3911/5 3912/5 3913/5 +f 3909/5 3914/5 3910/5 +f 3910/5 3914/5 3915/5 +f 3910/5 3915/5 3916/5 +f 3916/5 3917/5 3910/5 +f 3910/5 3917/5 3918/5 +f 3910/5 3918/5 3919/5 +f 3919/5 3920/5 3910/5 +f 3910/5 3920/5 3921/5 +f 3910/5 3921/5 3922/5 +f 3922/5 3923/5 3910/5 +f 3910/5 3923/5 3924/5 +f 3910/5 3924/5 3925/5 +f 3925/5 3926/5 3910/5 +f 3910/5 3926/5 3927/5 +f 3910/5 3927/5 3928/5 +f 3928/5 3929/5 3910/5 +f 3910/5 3929/5 3930/5 +f 3910/5 3930/5 3931/5 +f 3931/5 3932/5 3910/5 +f 3910/5 3932/5 3933/5 +f 3910/5 3933/5 3934/5 +f 3934/5 3935/5 3910/5 +f 3910/5 3935/5 3936/5 +f 3910/5 3936/5 3937/5 +f 3937/5 3938/5 3910/5 +f 3910/5 3938/5 3939/5 +f 3910/5 3939/5 3940/5 +f 3940/5 3941/5 3910/5 +f 3910/5 3941/5 3942/5 +f 3910/5 3942/5 3943/5 +f 3944/5 3945/5 3913/5 +f 3913/5 3945/5 3946/5 +f 3913/5 3946/5 3911/5 +f 3944/5 3947/5 3945/5 +f 3945/5 3947/5 3948/5 +f 3949/5 3950/5 3947/5 +f 3947/5 3950/5 3951/5 +f 3947/5 3951/5 3952/5 +f 3952/5 3953/5 3947/5 +f 3947/5 3953/5 3954/5 +f 3947/5 3954/5 3955/5 +f 3955/5 3956/5 3947/5 +f 3947/5 3956/5 3957/5 +f 3947/5 3957/5 3958/5 +f 3958/5 3959/5 3947/5 +f 3947/5 3959/5 3960/5 +f 3947/5 3960/5 3961/5 +f 3961/5 3962/5 3947/5 +f 3947/5 3962/5 3963/5 +f 3947/5 3963/5 3964/5 +f 3964/5 3965/5 3947/5 +f 3947/5 3965/5 3966/5 +f 3947/5 3966/5 3967/5 +f 3967/5 3968/5 3947/5 +f 3947/5 3968/5 3969/5 +f 3947/5 3969/5 3970/5 +f 3970/5 3971/5 3947/5 +f 3947/5 3971/5 3972/5 +f 3947/5 3972/5 3973/5 +f 3973/5 3974/5 3947/5 +f 3947/5 3974/5 3975/5 +f 3947/5 3975/5 3976/5 +f 3976/5 3977/5 3947/5 +f 3947/5 3977/5 3978/5 +f 3947/5 3978/5 3948/5 +f 3979/5 3980/5 3981/5 +f 3981/5 3980/5 3982/5 +f 3981/5 3982/5 3983/5 +f 3980/5 3984/5 3982/5 +f 3982/5 3984/5 3985/5 +f 3984/5 3986/5 3985/5 +f 3985/5 3986/5 3987/5 +f 3986/5 3988/5 3987/5 +f 3987/5 3988/5 3989/5 +f 3988/5 3990/5 3989/5 +f 3989/5 3990/5 3991/5 +f 3990/5 3992/5 3991/5 +f 3991/5 3992/5 3993/5 +f 3992/5 3994/5 3993/5 +f 3993/5 3994/5 3995/5 +f 3944/5 3913/5 3994/5 +f 3994/5 3913/5 3995/5 +f 3913/5 3912/5 3995/5 +f 3983/5 3996/5 3981/5 +f 3981/5 3996/5 3997/5 +f 3981/5 3997/5 3979/5 +f 3979/5 3997/5 3998/5 +f 3998/5 3997/5 3999/5 +f 3999/5 3997/5 4000/5 +f 3999/5 4000/5 4001/5 +f 3997/5 3996/5 4000/5 +f 3999/5 4001/5 4002/5 +f 4002/5 4001/5 4003/5 +f 4002/5 4003/5 4004/5 +f 4004/5 4003/5 4005/5 +f 4004/5 4005/5 4006/5 +f 4006/5 4005/5 4007/5 +f 4006/5 4007/5 4008/5 +f 4008/5 4007/5 4009/5 +f 4008/5 4009/5 4010/5 +f 4010/5 4009/5 4011/5 +f 4010/5 4011/5 4012/5 +f 4012/5 4011/5 3655/5 +f 4012/5 3655/5 3660/5 +f 4011/5 3654/5 3655/5 +f 4013/5 4014/5 4015/5 +f 4015/5 4014/5 4016/5 +f 4014/5 4017/5 4016/5 +f 4016/5 4017/5 4018/5 +f 4019/5 4020/5 4021/5 +f 4021/5 4020/5 4022/5 +f 4021/5 4022/5 4023/5 +f 4021/5 4023/5 4024/5 +f 4024/5 4023/5 4025/5 +f 4024/5 4025/5 4026/5 +f 4026/5 4025/5 4027/5 +f 4026/5 4027/5 4028/5 +f 4028/5 4027/5 4029/5 +f 4028/5 4029/5 4030/5 +f 4030/5 4029/5 4031/5 +f 4029/5 4032/5 4031/5 +f 4031/5 4032/5 4033/5 +f 4031/5 4033/5 4034/5 +f 4034/5 4033/5 4035/5 +f 4034/5 4035/5 4036/5 +f 4036/5 4035/5 4037/5 +f 4036/5 4037/5 4038/5 +f 4038/5 4037/5 4039/5 +f 4038/5 4039/5 4040/5 +f 4040/5 4039/5 4041/5 +f 4039/5 4042/5 4041/5 +f 4041/5 4042/5 4043/5 +f 4041/5 4043/5 4044/5 +f 4044/5 4043/5 4045/5 +f 4044/5 4045/5 4046/5 +f 4046/5 4045/5 4047/5 +f 4046/5 4047/5 4048/5 +f 4048/5 4047/5 4049/5 +f 4048/5 4049/5 4050/5 +f 4050/5 4049/5 4051/5 +f 4049/5 4052/5 4051/5 +f 4051/5 4052/5 4053/5 +f 4052/5 4054/5 4053/5 +f 4053/5 4054/5 4055/5 +f 4053/5 4055/5 4056/5 +f 4056/5 4055/5 4057/5 +f 4056/5 4057/5 4058/5 +f 4058/5 4057/5 4059/5 +f 4058/5 4059/5 4060/5 +f 4060/5 4059/5 4061/5 +f 4060/5 4061/5 4062/5 +f 4062/5 4061/5 4063/5 +f 4061/5 4064/5 4063/5 +f 4063/5 4064/5 4065/5 +f 4063/5 4065/5 4066/5 +f 4066/5 4065/5 4067/5 +f 4066/5 4067/5 4068/5 +f 4068/5 4067/5 4069/5 +f 4068/5 4069/5 4070/5 +f 4070/5 4069/5 4071/5 +f 4070/5 4071/5 4072/5 +f 4072/5 4071/5 4073/5 +f 4071/5 4074/5 4073/5 +f 4073/5 4074/5 4075/5 +f 4073/5 4075/5 4076/5 +f 4076/5 4075/5 4077/5 +f 4076/5 4077/5 4078/5 +f 4078/5 4077/5 4079/5 +f 4078/5 4079/5 4080/5 +f 4080/5 4079/5 4081/5 +f 4080/5 4081/5 4082/5 +f 4082/5 4081/5 3907/5 +f 4081/5 3908/5 3907/5 +f 3799/5 3800/5 4083/5 +f 4083/5 3800/5 4084/5 +f 4083/5 4084/5 4085/5 +f 4083/5 4085/5 4086/5 +f 4086/5 4085/5 4087/5 +f 4086/5 4087/5 4088/5 +f 4088/5 4087/5 4089/5 +f 4088/5 4089/5 4090/5 +f 4090/5 4089/5 4091/5 +f 4090/5 4091/5 4092/5 +f 4092/5 4091/5 4093/5 +f 4091/5 4094/5 4093/5 +f 4093/5 4094/5 4095/5 +f 4093/5 4095/5 4096/5 +f 4096/5 4095/5 4097/5 +f 4096/5 4097/5 4098/5 +f 4098/5 4097/5 4099/5 +f 4098/5 4099/5 4100/5 +f 4100/5 4099/5 4101/5 +f 4100/5 4101/5 4102/5 +f 4102/5 4101/5 4103/5 +f 4101/5 4104/5 4103/5 +f 4103/5 4104/5 4105/5 +f 4103/5 4105/5 4106/5 +f 4106/5 4105/5 4107/5 +f 4106/5 4107/5 4108/5 +f 4108/5 4107/5 4109/5 +f 4108/5 4109/5 4110/5 +f 4110/5 4109/5 4111/5 +f 4110/5 4111/5 4112/5 +f 4112/5 4111/5 4113/5 +f 4111/5 4114/5 4113/5 +f 4113/5 4114/5 4115/5 +f 4114/5 4116/5 4115/5 +f 4115/5 4116/5 4117/5 +f 4115/5 4117/5 4118/5 +f 4118/5 4117/5 4119/5 +f 4118/5 4119/5 4120/5 +f 4120/5 4119/5 4121/5 +f 4120/5 4121/5 4122/5 +f 4122/5 4121/5 4123/5 +f 4122/5 4123/5 4124/5 +f 4124/5 4123/5 4125/5 +f 4123/5 4126/5 4125/5 +f 4125/5 4126/5 4127/5 +f 4125/5 4127/5 4128/5 +f 4128/5 4127/5 4129/5 +f 4128/5 4129/5 4130/5 +f 4130/5 4129/5 4131/5 +f 4130/5 4131/5 4132/5 +f 4132/5 4131/5 4133/5 +f 4132/5 4133/5 4134/5 +f 4134/5 4133/5 4135/5 +f 4133/5 4136/5 4135/5 +f 4135/5 4136/5 4137/5 +f 4135/5 4137/5 4138/5 +f 4138/5 4137/5 4139/5 +f 4138/5 4139/5 4140/5 +f 4140/5 4139/5 4141/5 +f 4140/5 4141/5 4142/5 +f 4142/5 4141/5 4143/5 +f 4142/5 4143/5 4144/5 +f 4144/5 4143/5 4145/5 +f 4143/5 4146/5 4145/5 +f 4147/5 4148/5 4149/5 +f 4149/5 4148/5 4150/5 +f 4149/5 4150/5 4151/5 +f 4149/5 4151/5 4152/5 +f 4152/5 4151/5 4153/5 +f 4152/5 4153/5 4154/5 +f 4154/5 4153/5 4155/5 +f 4154/5 4155/5 4156/5 +f 4156/5 4155/5 4157/5 +f 4156/5 4157/5 4158/5 +f 4158/5 4157/5 4159/5 +f 4157/5 4160/5 4159/5 +f 4159/5 4160/5 4161/5 +f 4159/5 4161/5 4162/5 +f 4162/5 4161/5 4163/5 +f 4162/5 4163/5 4164/5 +f 4164/5 4163/5 4165/5 +f 4164/5 4165/5 4166/5 +f 4166/5 4165/5 4167/5 +f 4166/5 4167/5 4168/5 +f 4168/5 4167/5 4169/5 +f 4167/5 4170/5 4169/5 +f 4169/5 4170/5 4171/5 +f 4169/5 4171/5 4172/5 +f 4172/5 4171/5 4173/5 +f 4172/5 4173/5 4174/5 +f 4174/5 4173/5 4175/5 +f 4174/5 4175/5 4176/5 +f 4176/5 4175/5 4177/5 +f 4176/5 4177/5 4178/5 +f 4178/5 4177/5 4179/5 +f 4177/5 4180/5 4179/5 +f 4179/5 4180/5 4181/5 +f 4180/5 4182/5 4181/5 +f 4181/5 4182/5 4183/5 +f 4181/5 4183/5 4184/5 +f 4184/5 4183/5 4185/5 +f 4184/5 4185/5 4186/5 +f 4186/5 4185/5 4187/5 +f 4186/5 4187/5 4188/5 +f 4188/5 4187/5 4189/5 +f 4188/5 4189/5 4190/5 +f 4190/5 4189/5 4191/5 +f 4189/5 4192/5 4191/5 +f 4191/5 4192/5 4193/5 +f 4191/5 4193/5 4194/5 +f 4194/5 4193/5 4195/5 +f 4194/5 4195/5 4196/5 +f 4196/5 4195/5 4197/5 +f 4196/5 4197/5 4198/5 +f 4198/5 4197/5 4199/5 +f 4198/5 4199/5 4200/5 +f 4200/5 4199/5 4201/5 +f 4199/5 4202/5 4201/5 +f 4201/5 4202/5 4203/5 +f 4201/5 4203/5 4204/5 +f 4204/5 4203/5 4205/5 +f 4204/5 4205/5 4206/5 +f 4206/5 4205/5 4207/5 +f 4206/5 4207/5 4208/5 +f 4208/5 4207/5 4209/5 +f 4208/5 4209/5 4210/5 +f 4210/5 4209/5 4015/5 +f 4209/5 4013/5 4015/5 +f 4211/5 4212/5 4213/5 +f 4213/5 4212/5 4214/5 +f 4213/5 4214/5 4215/5 +f 4213/5 4215/5 4216/5 +f 4216/5 4215/5 4217/5 +f 4216/5 4217/5 4218/5 +f 4218/5 4217/5 4219/5 +f 4218/5 4219/5 4220/5 +f 4220/5 4219/5 4221/5 +f 4220/5 4221/5 4222/5 +f 4222/5 4221/5 4223/5 +f 4222/5 4223/5 4224/5 +f 4224/5 4223/5 4225/5 +f 4224/5 4225/5 4226/5 +f 4226/5 4225/5 4227/5 +f 4226/5 4227/5 4228/5 +f 4228/5 4227/5 4229/5 +f 4228/5 4229/5 4230/5 +f 4230/5 4229/5 4231/5 +f 4230/5 4231/5 4232/5 +f 4232/5 4231/5 4233/5 +f 4232/5 4233/5 4234/5 +f 4234/5 4233/5 4235/5 +f 4234/5 4235/5 4236/5 +f 4236/5 4235/5 4237/5 +f 4236/5 4237/5 4238/5 +f 4238/5 4237/5 4239/5 +f 4238/5 4239/5 4240/5 +f 4240/5 4239/5 4241/5 +f 4240/5 4241/5 4242/5 +f 4242/5 4241/5 4243/5 +f 4242/5 4243/5 4244/5 +f 4244/5 4243/5 4245/5 +f 4244/5 4245/5 4246/5 +f 4246/5 4245/5 4247/5 +f 4246/5 4247/5 4248/5 +f 4248/5 4247/5 4249/5 +f 4248/5 4249/5 4250/5 +f 4250/5 4249/5 4251/5 +f 4250/5 4251/5 4252/5 +f 4252/5 4251/5 4253/5 +f 4252/5 4253/5 4254/5 +f 4254/5 4253/5 4255/5 +f 4254/5 4255/5 4256/5 +f 4256/5 4255/5 4257/5 +f 4256/5 4257/5 4258/5 +f 4258/5 4257/5 4259/5 +f 4258/5 4259/5 4260/5 +f 4260/5 4259/5 4261/5 +f 4260/5 4261/5 4262/5 +f 4262/5 4261/5 4263/5 +f 4262/5 4263/5 4264/5 +f 4264/5 4263/5 4265/5 +f 4264/5 4265/5 4266/5 +f 4266/5 4265/5 4267/5 +f 4266/5 4267/5 4268/5 +f 4268/5 4267/5 4269/5 +f 4268/5 4269/5 4270/5 +f 4270/5 4269/5 4271/5 +f 4270/5 4271/5 4272/5 +f 4272/5 4271/5 4273/5 +f 4272/5 4273/5 4274/5 +f 4274/5 4273/5 3998/5 +f 4273/5 3979/5 3998/5 +f 4275/5 4212/5 4276/5 +f 4276/5 4212/5 4211/5 +f 4276/5 4211/5 4277/5 +f 4278/5 4279/5 4280/5 +f 4280/5 4279/5 4281/5 +f 4280/5 4281/5 4282/5 +f 4281/5 4279/5 4283/5 +f 4283/5 4279/5 4284/5 +f 4283/5 4284/5 4285/5 +f 4283/5 4285/5 4286/5 +f 4286/5 4285/5 4287/5 +f 4286/5 4287/5 4288/5 +f 4288/5 4287/5 4289/5 +f 4288/5 4289/5 4290/5 +f 4290/5 4289/5 4291/5 +f 4290/5 4291/5 4292/5 +f 4292/5 4291/5 4293/5 +f 4291/5 4294/5 4293/5 +f 4293/5 4294/5 4295/5 +f 4293/5 4295/5 4296/5 +f 4296/5 4295/5 4297/5 +f 4296/5 4297/5 4298/5 +f 4298/5 4297/5 4299/5 +f 4297/5 4300/5 4299/5 +f 4299/5 4300/5 4301/5 +f 4299/5 4301/5 4302/5 +f 4302/5 4301/5 4303/5 +f 4301/5 4304/5 4303/5 +f 4303/5 4304/5 4305/5 +f 4303/5 4305/5 4306/5 +f 4306/5 4305/5 4307/5 +f 4306/5 4307/5 4308/5 +f 4308/5 4307/5 4309/5 +f 4308/5 4309/5 4310/5 +f 4310/5 4309/5 4276/5 +f 4310/5 4276/5 4277/5 +f 4309/5 4275/5 4276/5 +f 4311/5 4278/5 4312/5 +f 4312/5 4278/5 4280/5 +f 4312/5 4280/5 4313/5 +f 4313/5 4280/5 4314/5 +f 4280/5 4282/5 4314/5 +f 4314/5 4282/5 4315/5 +f 4314/5 4315/5 4316/5 +f 4316/5 4317/5 4314/5 +f 4314/5 4317/5 4318/5 +f 4314/5 4318/5 4319/5 +f 4319/5 4320/5 4314/5 +f 4314/5 4320/5 4321/5 +f 4314/5 4321/5 4322/5 +f 4322/5 4323/5 4314/5 +f 4314/5 4323/5 4324/5 +f 4314/5 4324/5 4325/5 +f 4325/5 4326/5 4314/5 +f 4314/5 4326/5 4327/5 +f 4314/5 4327/5 4328/5 +f 4328/5 4329/5 4314/5 +f 4314/5 4329/5 4330/5 +f 4314/5 4330/5 4331/5 +f 4331/5 4332/5 4314/5 +f 4314/5 4332/5 4333/5 +f 4314/5 4333/5 4334/5 +f 4334/5 4335/5 4314/5 +f 4314/5 4335/5 4336/5 +f 4314/5 4336/5 4337/5 +f 4337/5 4338/5 4314/5 +f 4314/5 4338/5 4339/5 +f 4314/5 4339/5 4340/5 +f 4340/5 4341/5 4314/5 +f 4314/5 4341/5 4342/5 +f 4314/5 4342/5 4343/5 +f 4343/5 4344/5 4314/5 +f 4314/5 4344/5 4345/5 +f 4314/5 4345/5 4346/5 +f 4347/5 4348/5 4312/5 +f 4312/5 4348/5 4349/5 +f 4312/5 4349/5 4350/5 +f 4350/5 4351/5 4312/5 +f 4312/5 4351/5 4352/5 +f 4312/5 4352/5 4353/5 +f 4353/5 4354/5 4312/5 +f 4312/5 4354/5 4355/5 +f 4312/5 4355/5 4356/5 +f 4356/5 4357/5 4312/5 +f 4312/5 4357/5 4358/5 +f 4312/5 4358/5 4359/5 +f 4359/5 4360/5 4312/5 +f 4312/5 4360/5 4361/5 +f 4312/5 4361/5 4362/5 +f 4362/5 4363/5 4312/5 +f 4312/5 4363/5 4364/5 +f 4312/5 4364/5 4365/5 +f 4365/5 4366/5 4312/5 +f 4312/5 4366/5 4367/5 +f 4312/5 4367/5 4368/5 +f 4368/5 4369/5 4312/5 +f 4312/5 4369/5 4370/5 +f 4312/5 4370/5 4371/5 +f 4371/5 4372/5 4312/5 +f 4312/5 4372/5 4373/5 +f 4312/5 4373/5 4374/5 +f 4374/5 4375/5 4312/5 +f 4312/5 4375/5 4376/5 +f 4312/5 4376/5 4377/5 +f 4377/5 4311/5 4312/5 +f 4018/5 4017/5 4378/5 +f 4378/5 4017/5 4379/5 +f 4378/5 4379/5 4380/5 +f 4378/5 4380/5 4381/5 +f 4381/5 4380/5 4382/5 +f 4381/5 4382/5 4383/5 +f 4383/5 4382/5 4384/5 +f 4383/5 4384/5 4385/5 +f 4385/5 4384/5 4386/5 +f 4385/5 4386/5 4387/5 +f 4387/5 4386/5 4388/5 +f 4386/5 4389/5 4388/5 +f 4388/5 4389/5 4390/5 +f 4388/5 4390/5 4391/5 +f 4391/5 4390/5 4392/5 +f 4391/5 4392/5 4393/5 +f 4393/5 4392/5 4394/5 +f 4393/5 4394/5 4395/5 +f 4395/5 4394/5 4396/5 +f 4395/5 4396/5 4397/5 +f 4397/5 4396/5 4398/5 +f 4396/5 4399/5 4398/5 +f 4398/5 4399/5 4400/5 +f 4398/5 4400/5 4401/5 +f 4401/5 4400/5 4402/5 +f 4401/5 4402/5 4403/5 +f 4403/5 4402/5 4404/5 +f 4403/5 4404/5 4405/5 +f 4405/5 4404/5 4406/5 +f 4405/5 4406/5 4407/5 +f 4407/5 4406/5 4408/5 +f 4406/5 4409/5 4408/5 +f 4408/5 4409/5 4410/5 +f 4409/5 4411/5 4410/5 +f 4410/5 4411/5 4412/5 +f 4410/5 4412/5 4413/5 +f 4413/5 4412/5 4414/5 +f 4413/5 4414/5 4415/5 +f 4415/5 4414/5 4416/5 +f 4415/5 4416/5 4417/5 +f 4417/5 4416/5 4418/5 +f 4417/5 4418/5 4419/5 +f 4419/5 4418/5 4420/5 +f 4418/5 4421/5 4420/5 +f 4420/5 4421/5 4422/5 +f 4420/5 4422/5 4423/5 +f 4423/5 4422/5 4424/5 +f 4423/5 4424/5 4425/5 +f 4425/5 4424/5 4426/5 +f 4425/5 4426/5 4427/5 +f 4427/5 4426/5 4428/5 +f 4427/5 4428/5 4429/5 +f 4429/5 4428/5 4430/5 +f 4428/5 4431/5 4430/5 +f 4430/5 4431/5 4432/5 +f 4430/5 4432/5 4433/5 +f 4433/5 4432/5 4434/5 +f 4433/5 4434/5 4435/5 +f 4435/5 4434/5 4436/5 +f 4435/5 4436/5 4437/5 +f 4437/5 4436/5 4438/5 +f 4437/5 4438/5 4439/5 +f 4439/5 4438/5 4440/5 +f 4438/5 4441/5 4440/5 +f 4442/5 4443/5 4444/5 +f 4444/5 4443/5 4445/5 +f 4444/5 4445/5 4446/5 +f 4446/5 4445/5 4447/5 +f 4446/5 4447/5 4448/5 +f 4448/5 4447/5 4449/5 +f 4448/5 4449/5 4450/5 +f 4451/5 4452/5 4444/5 +f 4444/5 4452/5 4453/5 +f 4444/5 4453/5 4454/5 +f 4454/5 4455/5 4444/5 +f 4444/5 4455/5 4456/5 +f 4444/5 4456/5 4457/5 +f 4457/5 4458/5 4444/5 +f 4444/5 4458/5 4459/5 +f 4444/5 4459/5 4460/5 +f 4460/5 4461/5 4444/5 +f 4444/5 4461/5 4462/5 +f 4444/5 4462/5 4463/5 +f 4463/5 4464/5 4444/5 +f 4444/5 4464/5 4465/5 +f 4444/5 4465/5 4466/5 +f 4466/5 4467/5 4444/5 +f 4444/5 4467/5 4468/5 +f 4444/5 4468/5 4469/5 +f 4469/5 4470/5 4444/5 +f 4444/5 4470/5 4471/5 +f 4444/5 4471/5 4472/5 +f 4472/5 4473/5 4444/5 +f 4444/5 4473/5 4474/5 +f 4444/5 4474/5 4475/5 +f 4475/5 4476/5 4444/5 +f 4444/5 4476/5 4477/5 +f 4444/5 4477/5 4478/5 +f 4478/5 4479/5 4444/5 +f 4444/5 4479/5 4480/5 +f 4444/5 4480/5 4442/5 +f 4450/5 4481/5 4448/5 +f 4448/5 4481/5 4482/5 +f 4448/5 4482/5 4483/5 +f 4483/5 4484/5 4448/5 +f 4448/5 4484/5 4485/5 +f 4448/5 4485/5 4486/5 +f 4486/5 4487/5 4448/5 +f 4448/5 4487/5 4488/5 +f 4448/5 4488/5 4489/5 +f 4489/5 4490/5 4448/5 +f 4448/5 4490/5 4491/5 +f 4448/5 4491/5 4492/5 +f 4492/5 4493/5 4448/5 +f 4448/5 4493/5 4494/5 +f 4448/5 4494/5 4495/5 +f 4495/5 4496/5 4448/5 +f 4448/5 4496/5 4497/5 +f 4448/5 4497/5 4498/5 +f 4498/5 4499/5 4448/5 +f 4448/5 4499/5 4500/5 +f 4448/5 4500/5 4501/5 +f 4501/5 4502/5 4448/5 +f 4448/5 4502/5 4503/5 +f 4448/5 4503/5 4504/5 +f 4504/5 4505/5 4448/5 +f 4448/5 4505/5 4506/5 +f 4448/5 4506/5 4507/5 +f 4507/5 4508/5 4448/5 +f 4448/5 4508/5 4509/5 +f 4448/5 4509/5 4510/5 +f 4445/5 4511/5 4447/5 +f 4447/5 4511/5 4512/5 +f 4512/5 4511/5 4513/5 +f 4513/5 4511/5 4514/5 +f 4513/5 4514/5 4515/5 +f 4513/5 4515/5 4516/5 +f 4516/5 4515/5 4517/5 +f 4516/5 4517/5 4518/5 +f 4518/5 4517/5 4519/5 +f 4518/5 4519/5 4520/5 +f 4520/5 4519/5 4521/5 +f 4520/5 4521/5 4522/5 +f 4522/5 4521/5 4523/5 +f 4521/5 4524/5 4523/5 +f 4523/5 4524/5 4525/5 +f 4523/5 4525/5 4526/5 +f 4526/5 4525/5 4527/5 +f 4526/5 4527/5 4528/5 +f 4528/5 4527/5 4529/5 +f 4527/5 4530/5 4529/5 +f 4529/5 4530/5 4531/5 +f 4529/5 4531/5 4532/5 +f 4532/5 4531/5 4533/5 +f 4531/5 4534/5 4533/5 +f 4533/5 4534/5 4535/5 +f 4533/5 4535/5 4536/5 +f 4536/5 4535/5 4537/5 +f 4536/5 4537/5 4538/5 +f 4538/5 4537/5 4539/5 +f 4538/5 4539/5 4540/5 +f 4540/5 4539/5 4541/5 +f 4540/5 4541/5 4542/5 +f 4020/5 4543/5 4544/5 +f 4544/5 4543/5 4545/5 +f 4544/5 4545/5 4546/5 +f 4546/5 4545/5 4547/5 +f 4546/5 4547/5 4548/5 +f 4548/5 4547/5 4549/5 +f 4548/5 4549/5 4550/5 +f 4550/5 4549/5 4551/5 +f 4550/5 4551/5 4552/5 +f 4552/5 4551/5 4553/5 +f 4552/5 4553/5 4554/5 +f 4554/5 4553/5 4555/5 +f 4554/5 4555/5 4556/5 +f 4556/5 4555/5 4557/5 +f 4556/5 4557/5 4558/5 +f 4558/5 4557/5 4559/5 +f 4558/5 4559/5 4560/5 +f 4020/5 4019/5 4543/5 +f 4561/5 4562/5 4563/5 +f 4563/5 4562/5 4564/5 +f 4563/5 4564/5 4565/5 +f 4563/5 4565/5 4566/5 +f 4566/5 4565/5 4567/5 +f 4566/5 4567/5 4568/5 +f 4568/5 4567/5 4569/5 +f 4568/5 4569/5 4570/5 +f 4570/5 4569/5 4571/5 +f 4570/5 4571/5 4572/5 +f 4572/5 4571/5 4573/5 +f 4572/5 4573/5 4574/5 +f 4574/5 4573/5 4575/5 +f 4574/5 4575/5 4576/5 +f 4576/5 4575/5 4577/5 +f 4575/5 4578/5 4577/5 +f 4577/5 4578/5 4145/5 +f 4577/5 4145/5 4146/5 +f 4541/5 4579/5 4542/5 +f 4542/5 4579/5 4580/5 +f 4581/5 4582/5 4583/5 +f 4583/5 4582/5 4584/5 +f 4583/5 4584/5 4585/5 +f 4585/5 4584/5 4586/5 +f 4585/5 4586/5 4587/5 +f 4587/5 4586/5 4588/5 +f 4587/5 4588/5 4589/5 +f 4589/5 4588/5 4590/5 +f 4589/5 4590/5 4591/5 +f 4591/5 4590/5 4592/5 +f 4591/5 4592/5 4593/5 +f 4593/5 4592/5 4594/5 +f 4593/5 4594/5 4595/5 +f 4595/5 4594/5 4596/5 +f 4595/5 4596/5 4597/5 +f 4597/5 4596/5 4598/5 +f 4597/5 4598/5 4599/5 +f 4599/5 4598/5 4600/5 +f 4599/5 4600/5 4601/5 +f 4601/5 4600/5 4602/5 +f 4601/5 4602/5 4603/5 +f 4603/5 4602/5 4604/5 +f 4603/5 4604/5 4605/5 +f 4605/5 4604/5 4606/5 +f 4605/5 4606/5 4607/5 +f 4607/5 4606/5 4608/5 +f 4607/5 4608/5 4609/5 +f 4581/5 4610/5 4582/5 +f 4582/5 4610/5 4611/5 +f 4610/5 4612/5 4611/5 +f 4611/5 4612/5 4613/5 +f 4612/5 4614/5 4613/5 +f 4613/5 4614/5 4615/5 +f 4614/5 4616/5 4615/5 +f 4615/5 4616/5 4617/5 +f 4616/5 4618/5 4617/5 +f 4617/5 4618/5 4619/5 +f 4618/5 4620/5 4619/5 +f 4619/5 4620/5 4621/5 +f 4620/5 4622/5 4621/5 +f 4621/5 4622/5 4623/5 +f 4622/5 4624/5 4623/5 +f 4623/5 4624/5 4625/5 +f 4624/5 4626/5 4625/5 +f 4625/5 4626/5 4627/5 +f 4626/5 4628/5 4627/5 +f 4627/5 4628/5 4629/5 +f 4628/5 4630/5 4629/5 +f 4629/5 4630/5 4631/5 +f 4630/5 4632/5 4631/5 +f 4631/5 4632/5 4633/5 +f 4632/5 4634/5 4633/5 +f 4633/5 4634/5 4635/5 +f 4634/5 4636/5 4635/5 +f 4635/5 4636/5 4637/5 +f 4636/5 4638/5 4637/5 +f 4637/5 4638/5 4639/5 +f 4638/5 4640/5 4639/5 +f 4639/5 4640/5 4641/5 +f 4640/5 4642/5 4641/5 +f 4641/5 4642/5 4643/5 +f 4642/5 4644/5 4643/5 +f 4643/5 4644/5 4645/5 +f 4644/5 4646/5 4645/5 +f 4645/5 4646/5 4647/5 +f 4646/5 4648/5 4647/5 +f 4647/5 4648/5 4649/5 +f 4648/5 4650/5 4649/5 +f 4649/5 4650/5 4651/5 +f 4650/5 4652/5 4651/5 +f 4651/5 4652/5 4653/5 +f 4652/5 4654/5 4653/5 +f 4653/5 4654/5 4655/5 +f 4654/5 4656/5 4655/5 +f 4655/5 4656/5 4657/5 +f 4656/5 4658/5 4657/5 +f 4657/5 4658/5 4659/5 +f 4658/5 4660/5 4659/5 +f 4659/5 4660/5 4661/5 +f 4660/5 4662/5 4661/5 +f 4661/5 4662/5 4663/5 +f 4607/5 4609/5 4664/5 +f 4664/5 4609/5 4665/5 +f 4664/5 4665/5 4666/5 +f 4666/5 4665/5 4667/5 +f 4666/5 4667/5 4668/5 +f 4668/5 4667/5 4669/5 +f 4668/5 4669/5 4670/5 +f 4670/5 4669/5 4671/5 +f 4670/5 4671/5 4672/5 +f 4672/5 4671/5 4673/5 +f 4672/5 4673/5 4674/5 +f 4674/5 4673/5 4675/5 +f 4674/5 4675/5 4676/5 +f 4676/5 4675/5 4677/5 +f 4676/5 4677/5 4678/5 +f 4678/5 4677/5 4679/5 +f 4678/5 4679/5 4680/5 +f 4680/5 4679/5 4148/5 +f 4680/5 4148/5 4147/5 +f 4681/5 4682/5 4683/5 +f 4683/5 4682/5 4684/5 +f 4683/5 4684/5 4685/5 +f 4683/5 4685/5 4686/5 +f 4686/5 4685/5 4687/5 +f 4686/5 4687/5 4688/5 +f 4688/5 4687/5 4689/5 +f 4688/5 4689/5 4690/5 +f 4690/5 4689/5 4691/5 +f 4690/5 4691/5 4692/5 +f 4692/5 4691/5 4693/5 +f 4692/5 4693/5 4694/5 +f 4694/5 4693/5 4695/5 +f 4694/5 4695/5 4696/5 +f 4696/5 4695/5 4697/5 +f 4696/5 4697/5 4698/5 +f 4698/5 4697/5 4699/5 +f 4698/5 4699/5 4700/5 +f 4700/5 4699/5 4701/5 +f 4700/5 4701/5 4702/5 +f 4702/5 4701/5 4703/5 +f 4702/5 4703/5 4704/5 +f 4704/5 4703/5 4705/5 +f 4704/5 4705/5 4706/5 +f 4706/5 4705/5 4707/5 +f 4706/5 4707/5 4708/5 +f 4708/5 4707/5 4709/5 +f 4708/5 4709/5 4710/5 +f 4710/5 4709/5 4711/5 +f 4710/5 4711/5 4712/5 +f 4712/5 4711/5 4713/5 +f 4712/5 4713/5 4714/5 +f 4714/5 4713/5 4715/5 +f 4714/5 4715/5 4716/5 +f 4716/5 4715/5 4717/5 +f 4716/5 4717/5 4718/5 +f 4718/5 4717/5 4719/5 +f 4718/5 4719/5 4720/5 +f 4720/5 4719/5 4721/5 +f 4720/5 4721/5 4722/5 +f 4722/5 4721/5 4723/5 +f 4722/5 4723/5 4724/5 +f 4724/5 4723/5 4725/5 +f 4724/5 4725/5 4726/5 +f 4726/5 4725/5 4727/5 +f 4726/5 4727/5 4728/5 +f 4728/5 4727/5 4729/5 +f 4728/5 4729/5 4730/5 +f 4730/5 4729/5 4731/5 +f 4730/5 4731/5 4732/5 +f 4732/5 4731/5 4733/5 +f 4732/5 4733/5 4734/5 +f 4732/5 4734/5 4735/5 +f 4735/5 4734/5 4736/5 +f 4735/5 4736/5 4737/5 +f 4737/5 4736/5 4738/5 +f 4737/5 4738/5 4739/5 +f 4739/5 4738/5 4740/5 +f 4739/5 4740/5 4741/5 +f 4741/5 4740/5 4742/5 +f 4741/5 4742/5 4743/5 +f 4743/5 4742/5 4744/5 +f 4743/5 4744/5 4745/5 +f 4745/5 4744/5 4746/5 +f 4745/5 4746/5 4747/5 +f 4745/5 4747/5 4748/5 +f 4748/5 4747/5 4749/5 +f 4748/5 4749/5 4750/5 +f 4750/5 4749/5 4751/5 +f 4750/5 4751/5 4752/5 +f 4752/5 4751/5 4753/5 +f 4752/5 4753/5 4754/5 +f 4754/5 4753/5 4755/5 +f 4754/5 4755/5 4756/5 +f 4756/5 4755/5 4757/5 +f 4756/5 4757/5 4758/5 +f 4758/5 4757/5 4759/5 +f 4758/5 4759/5 4760/5 +f 4760/5 4759/5 4761/5 +f 4760/5 4761/5 4762/5 +f 4762/5 4761/5 4763/5 +f 4762/5 4763/5 4764/5 +f 4764/5 4763/5 4765/5 +f 4764/5 4765/5 4766/5 +f 4766/5 4765/5 4767/5 +f 4766/5 4767/5 4768/5 +f 4768/5 4767/5 4769/5 +f 4768/5 4769/5 4770/5 +f 4770/5 4769/5 4771/5 +f 4770/5 4771/5 4772/5 +f 4772/5 4771/5 4773/5 +f 4772/5 4773/5 4774/5 +f 4774/5 4773/5 4775/5 +f 4774/5 4775/5 4776/5 +f 4776/5 4775/5 4777/5 +f 4776/5 4777/5 4778/5 +f 4778/5 4777/5 4440/5 +f 4778/5 4440/5 4441/5 +f 4779/5 4780/5 4735/5 +f 4735/5 4780/5 4732/5 +f 4580/5 4579/5 4781/5 +f 4781/5 4579/5 4782/5 +f 4781/5 4782/5 4783/5 +f 4781/5 4783/5 4784/5 +f 4784/5 4783/5 4785/5 +f 4784/5 4785/5 4786/5 +f 4786/5 4785/5 4787/5 +f 4786/5 4787/5 4788/5 +f 4788/5 4787/5 4789/5 +f 4788/5 4789/5 4790/5 +f 4790/5 4789/5 4791/5 +f 4790/5 4791/5 4792/5 +f 4792/5 4791/5 4793/5 +f 4792/5 4793/5 4794/5 +f 4794/5 4793/5 4795/5 +f 4794/5 4795/5 4796/5 +f 4796/5 4795/5 4797/5 +f 4796/5 4797/5 4798/5 +f 4798/5 4797/5 4799/5 +f 4798/5 4799/5 4800/5 +f 4800/5 4799/5 4801/5 +f 4800/5 4801/5 4802/5 +f 4802/5 4801/5 4803/5 +f 4802/5 4803/5 4804/5 +f 4804/5 4803/5 4805/5 +f 4804/5 4805/5 4806/5 +f 4806/5 4805/5 4807/5 +f 4806/5 4807/5 4808/5 +f 4808/5 4807/5 4809/5 +f 4808/5 4809/5 4810/5 +f 4810/5 4809/5 4811/5 +f 4810/5 4811/5 4812/5 +f 4812/5 4811/5 4813/5 +f 4812/5 4813/5 4814/5 +f 4814/5 4813/5 4815/5 +f 4814/5 4815/5 4816/5 +f 4816/5 4815/5 4817/5 +f 4816/5 4817/5 4818/5 +f 4818/5 4817/5 4819/5 +f 4818/5 4819/5 4820/5 +f 4820/5 4819/5 4821/5 +f 4820/5 4821/5 4822/5 +f 4822/5 4821/5 4823/5 +f 4822/5 4823/5 4824/5 +f 4824/5 4823/5 4825/5 +f 4824/5 4825/5 4826/5 +f 4826/5 4825/5 4827/5 +f 4826/5 4827/5 4828/5 +f 4828/5 4827/5 4829/5 +f 4828/5 4829/5 4830/5 +f 4830/5 4829/5 4831/5 +f 4830/5 4831/5 4832/5 +f 4832/5 4831/5 4833/5 +f 4832/5 4833/5 4834/5 +f 4834/5 4833/5 4835/5 +f 4834/5 4835/5 4836/5 +f 4836/5 4835/5 4837/5 +f 4836/5 4837/5 4838/5 +f 4838/5 4837/5 4839/5 +f 4838/5 4839/5 4840/5 +f 4840/5 4839/5 4841/5 +f 4840/5 4841/5 4842/5 +f 4842/5 4841/5 3888/5 +f 4841/5 3876/5 3888/5 +f 4843/5 4844/5 4845/5 +f 4845/5 4844/5 4846/5 +f 4845/5 4846/5 4847/5 +f 4845/5 4847/5 4848/5 +f 4848/5 4847/5 4849/5 +f 4848/5 4849/5 4850/5 +f 4850/5 4849/5 4851/5 +f 4850/5 4851/5 4852/5 +f 4852/5 4851/5 4853/5 +f 4852/5 4853/5 4854/5 +f 4854/5 4853/5 4855/5 +f 4853/5 4856/5 4855/5 +f 4855/5 4856/5 4857/5 +f 4855/5 4857/5 4858/5 +f 4858/5 4857/5 4859/5 +f 4858/5 4859/5 4860/5 +f 4860/5 4859/5 4861/5 +f 4860/5 4861/5 4862/5 +f 4862/5 4861/5 4863/5 +f 4862/5 4863/5 4864/5 +f 4864/5 4863/5 4865/5 +f 4863/5 4866/5 4865/5 +f 4865/5 4866/5 4867/5 +f 4865/5 4867/5 4868/5 +f 4868/5 4867/5 4869/5 +f 4868/5 4869/5 4870/5 +f 4870/5 4869/5 4871/5 +f 4870/5 4871/5 4872/5 +f 4872/5 4871/5 4873/5 +f 4872/5 4873/5 4874/5 +f 4874/5 4873/5 4875/5 +f 4873/5 4876/5 4875/5 +f 4875/5 4876/5 4877/5 +f 4876/5 4878/5 4877/5 +f 4877/5 4878/5 4879/5 +f 4877/5 4879/5 4880/5 +f 4880/5 4879/5 4881/5 +f 4880/5 4881/5 4882/5 +f 4882/5 4881/5 4883/5 +f 4882/5 4883/5 4884/5 +f 4884/5 4883/5 4885/5 +f 4884/5 4885/5 4886/5 +f 4886/5 4885/5 4887/5 +f 4885/5 4888/5 4887/5 +f 4887/5 4888/5 4889/5 +f 4887/5 4889/5 4890/5 +f 4890/5 4889/5 4891/5 +f 4890/5 4891/5 4892/5 +f 4892/5 4891/5 4893/5 +f 4892/5 4893/5 4894/5 +f 4894/5 4893/5 4895/5 +f 4894/5 4895/5 4896/5 +f 4896/5 4895/5 4897/5 +f 4895/5 4898/5 4897/5 +f 4897/5 4898/5 4899/5 +f 4897/5 4899/5 4900/5 +f 4900/5 4899/5 4901/5 +f 4900/5 4901/5 4902/5 +f 4902/5 4901/5 4903/5 +f 4902/5 4903/5 4904/5 +f 4904/5 4903/5 4905/5 +f 4904/5 4905/5 4906/5 +f 4906/5 4905/5 4907/5 +f 4905/5 4908/5 4907/5 +f 4909/5 4910/5 4911/5 +f 4911/5 4910/5 4912/5 +f 4911/5 4912/5 4913/5 +f 4911/5 4913/5 4914/5 +f 4914/5 4913/5 4915/5 +f 4914/5 4915/5 4916/5 +f 4916/5 4915/5 4917/5 +f 4916/5 4917/5 4918/5 +f 4918/5 4917/5 4919/5 +f 4918/5 4919/5 4920/5 +f 4920/5 4919/5 4921/5 +f 4919/5 4922/5 4921/5 +f 4921/5 4922/5 4923/5 +f 4921/5 4923/5 4924/5 +f 4924/5 4923/5 4925/5 +f 4924/5 4925/5 4926/5 +f 4926/5 4925/5 4927/5 +f 4926/5 4927/5 4928/5 +f 4928/5 4927/5 4929/5 +f 4928/5 4929/5 4930/5 +f 4930/5 4929/5 4931/5 +f 4929/5 4932/5 4931/5 +f 4931/5 4932/5 4933/5 +f 4931/5 4933/5 4934/5 +f 4934/5 4933/5 4935/5 +f 4934/5 4935/5 4936/5 +f 4936/5 4935/5 4937/5 +f 4936/5 4937/5 4938/5 +f 4938/5 4937/5 4939/5 +f 4938/5 4939/5 4940/5 +f 4940/5 4939/5 4941/5 +f 4939/5 4942/5 4941/5 +f 4941/5 4942/5 4943/5 +f 4942/5 4944/5 4943/5 +f 4943/5 4944/5 4945/5 +f 4943/5 4945/5 4946/5 +f 4946/5 4945/5 4947/5 +f 4946/5 4947/5 4948/5 +f 4948/5 4947/5 4949/5 +f 4948/5 4949/5 4950/5 +f 4950/5 4949/5 4951/5 +f 4950/5 4951/5 4952/5 +f 4952/5 4951/5 4953/5 +f 4951/5 4954/5 4953/5 +f 4953/5 4954/5 4955/5 +f 4953/5 4955/5 4956/5 +f 4956/5 4955/5 4957/5 +f 4956/5 4957/5 4958/5 +f 4958/5 4957/5 4959/5 +f 4958/5 4959/5 4960/5 +f 4960/5 4959/5 4961/5 +f 4960/5 4961/5 4962/5 +f 4962/5 4961/5 4963/5 +f 4961/5 4964/5 4963/5 +f 4963/5 4964/5 4965/5 +f 4963/5 4965/5 4966/5 +f 4966/5 4965/5 4967/5 +f 4966/5 4967/5 4968/5 +f 4968/5 4967/5 4969/5 +f 4968/5 4969/5 4970/5 +f 4970/5 4969/5 4971/5 +f 4970/5 4971/5 4972/5 +f 4972/5 4971/5 4973/5 +f 4971/5 4974/5 4973/5 +f 4975/5 4976/5 4977/5 +f 4977/5 4976/5 4978/5 +f 4977/5 4978/5 4979/5 +f 4979/5 4980/5 4977/5 +f 4977/5 4980/5 4981/5 +f 4977/5 4981/5 4982/5 +f 4982/5 4983/5 4977/5 +f 4977/5 4983/5 4984/5 +f 4977/5 4984/5 4985/5 +f 4985/5 4986/5 4977/5 +f 4977/5 4986/5 4987/5 +f 4977/5 4987/5 4988/5 +f 4988/5 4989/5 4977/5 +f 4977/5 4989/5 4990/5 +f 4977/5 4990/5 4991/5 +f 4991/5 4992/5 4977/5 +f 4977/5 4992/5 4993/5 +f 4977/5 4993/5 4994/5 +f 4994/5 4995/5 4977/5 +f 4977/5 4995/5 4996/5 +f 4977/5 4996/5 4997/5 +f 4997/5 4998/5 4977/5 +f 4977/5 4998/5 4999/5 +f 4977/5 4999/5 5000/5 +f 5000/5 5001/5 4977/5 +f 4977/5 5001/5 5002/5 +f 4977/5 5002/5 5003/5 +f 5003/5 5004/5 4977/5 +f 4977/5 5004/5 5005/5 +f 4977/5 5005/5 5006/5 +f 5006/5 5007/5 4977/5 +f 4977/5 5007/5 5008/5 +f 5008/5 5007/5 5009/5 +f 5009/5 5007/5 5010/5 +f 5009/5 5010/5 5011/5 +f 5012/5 5013/5 5011/5 +f 5011/5 5013/5 5014/5 +f 5011/5 5014/5 5009/5 +f 5012/5 5015/5 5013/5 +f 5013/5 5015/5 5016/5 +f 5013/5 5016/5 5017/5 +f 5017/5 5018/5 5013/5 +f 5013/5 5018/5 5019/5 +f 5013/5 5019/5 5020/5 +f 5020/5 5021/5 5013/5 +f 5013/5 5021/5 5022/5 +f 5013/5 5022/5 5023/5 +f 5023/5 5024/5 5013/5 +f 5013/5 5024/5 5025/5 +f 5013/5 5025/5 5026/5 +f 5026/5 5027/5 5013/5 +f 5013/5 5027/5 5028/5 +f 5013/5 5028/5 5029/5 +f 5029/5 5030/5 5013/5 +f 5013/5 5030/5 5031/5 +f 5013/5 5031/5 5032/5 +f 5032/5 5033/5 5013/5 +f 5013/5 5033/5 5034/5 +f 5013/5 5034/5 5035/5 +f 5035/5 5036/5 5013/5 +f 5013/5 5036/5 5037/5 +f 5013/5 5037/5 5038/5 +f 5038/5 5039/5 5013/5 +f 5013/5 5039/5 5040/5 +f 5013/5 5040/5 5041/5 +f 5041/5 5042/5 5013/5 +f 5013/5 5042/5 5043/5 +f 5013/5 5043/5 5044/5 +f 4844/5 4843/5 5045/5 +f 5045/5 4843/5 5046/5 +f 5045/5 5046/5 5047/5 +f 5048/5 5049/5 5050/5 +f 5050/5 5049/5 5051/5 +f 5050/5 5051/5 5052/5 +f 5052/5 5051/5 5053/5 +f 5052/5 5053/5 5054/5 +f 5054/5 5053/5 5055/5 +f 5054/5 5055/5 5056/5 +f 5056/5 5055/5 5057/5 +f 5056/5 5057/5 5058/5 +f 5058/5 5057/5 5059/5 +f 5058/5 5059/5 5060/5 +f 5060/5 5059/5 5061/5 +f 5060/5 5061/5 5062/5 +f 5062/5 5061/5 5063/5 +f 5062/5 5063/5 5047/5 +f 5047/5 5063/5 5064/5 +f 5047/5 5064/5 5045/5 +f 5048/5 5065/5 5049/5 +f 5049/5 5065/5 5066/5 +f 5065/5 5067/5 5066/5 +f 5066/5 5067/5 5068/5 +f 5067/5 5069/5 5068/5 +f 5068/5 5069/5 5070/5 +f 5069/5 5071/5 5070/5 +f 5070/5 5071/5 5072/5 +f 5071/5 5073/5 5072/5 +f 5072/5 5073/5 5074/5 +f 5073/5 5075/5 5074/5 +f 5074/5 5075/5 5076/5 +f 5075/5 5077/5 5076/5 +f 5076/5 5077/5 5078/5 +f 5077/5 5079/5 5078/5 +f 5078/5 5079/5 5080/5 +f 5079/5 4910/5 5080/5 +f 5080/5 4910/5 4909/5 +f 5081/5 5082/5 5083/5 +f 5083/5 5082/5 5084/5 +f 5083/5 5084/5 5085/5 +f 5085/5 5086/5 5083/5 +f 5083/5 5086/5 5087/5 +f 5083/5 5087/5 5088/5 +f 5088/5 5089/5 5083/5 +f 5083/5 5089/5 5090/5 +f 5083/5 5090/5 5091/5 +f 5091/5 5092/5 5083/5 +f 5083/5 5092/5 5093/5 +f 5083/5 5093/5 5094/5 +f 5094/5 5095/5 5083/5 +f 5083/5 5095/5 5096/5 +f 5083/5 5096/5 5097/5 +f 5097/5 5098/5 5083/5 +f 5083/5 5098/5 5099/5 +f 5083/5 5099/5 5100/5 +f 5100/5 5101/5 5083/5 +f 5083/5 5101/5 5102/5 +f 5083/5 5102/5 5103/5 +f 5103/5 5104/5 5083/5 +f 5083/5 5104/5 5105/5 +f 5083/5 5105/5 5106/5 +f 5106/5 5107/5 5083/5 +f 5083/5 5107/5 5108/5 +f 5083/5 5108/5 5109/5 +f 5109/5 5110/5 5083/5 +f 5083/5 5110/5 5111/5 +f 5083/5 5111/5 5112/5 +f 5112/5 5113/5 5083/5 +f 5083/5 5113/5 5114/5 +f 5114/5 5113/5 5115/5 +f 5115/5 5113/5 5116/5 +f 5115/5 5116/5 5117/5 +f 5118/5 5119/5 5117/5 +f 5117/5 5119/5 5120/5 +f 5117/5 5120/5 5115/5 +f 5118/5 5121/5 5119/5 +f 5119/5 5121/5 5122/5 +f 5119/5 5122/5 5123/5 +f 5123/5 5124/5 5119/5 +f 5119/5 5124/5 5125/5 +f 5119/5 5125/5 5126/5 +f 5126/5 5127/5 5119/5 +f 5119/5 5127/5 5128/5 +f 5119/5 5128/5 5129/5 +f 5129/5 5130/5 5119/5 +f 5119/5 5130/5 5131/5 +f 5119/5 5131/5 5132/5 +f 5132/5 5133/5 5119/5 +f 5119/5 5133/5 5134/5 +f 5119/5 5134/5 5135/5 +f 5135/5 5136/5 5119/5 +f 5119/5 5136/5 5137/5 +f 5119/5 5137/5 5138/5 +f 5138/5 5139/5 5119/5 +f 5119/5 5139/5 5140/5 +f 5119/5 5140/5 5141/5 +f 5141/5 5142/5 5119/5 +f 5119/5 5142/5 5143/5 +f 5119/5 5143/5 5144/5 +f 5144/5 5145/5 5119/5 +f 5119/5 5145/5 5146/5 +f 5119/5 5146/5 5147/5 +f 5147/5 5148/5 5119/5 +f 5119/5 5148/5 5149/5 +f 5119/5 5149/5 5150/5 +f 4907/5 4908/5 5151/5 +f 5151/5 4908/5 5152/5 +f 5151/5 5152/5 5153/5 +f 5153/5 5152/5 5154/5 +f 5155/5 5156/5 5157/5 +f 5157/5 5156/5 5158/5 +f 5157/5 5158/5 5159/5 +f 5155/5 5160/5 5156/5 +f 5156/5 5160/5 5161/5 +f 5156/5 5161/5 5162/5 +f 5162/5 5163/5 5156/5 +f 5156/5 5163/5 5164/5 +f 5156/5 5164/5 5165/5 +f 5165/5 5166/5 5156/5 +f 5156/5 5166/5 5167/5 +f 5156/5 5167/5 5168/5 +f 5168/5 5169/5 5156/5 +f 5156/5 5169/5 5170/5 +f 5156/5 5170/5 5171/5 +f 5171/5 5172/5 5156/5 +f 5156/5 5172/5 5173/5 +f 5156/5 5173/5 5174/5 +f 5174/5 5175/5 5156/5 +f 5156/5 5175/5 5176/5 +f 5156/5 5176/5 5177/5 +f 5177/5 5178/5 5156/5 +f 5156/5 5178/5 5179/5 +f 5156/5 5179/5 5180/5 +f 5180/5 5181/5 5156/5 +f 5156/5 5181/5 5182/5 +f 5156/5 5182/5 5183/5 +f 5183/5 5184/5 5156/5 +f 5156/5 5184/5 5185/5 +f 5156/5 5185/5 5186/5 +f 5186/5 5187/5 5156/5 +f 5156/5 5187/5 5188/5 +f 5156/5 5188/5 5189/5 +f 5190/5 5191/5 5159/5 +f 5159/5 5191/5 5192/5 +f 5159/5 5192/5 5157/5 +f 5190/5 5193/5 5191/5 +f 5191/5 5193/5 5194/5 +f 5195/5 5196/5 5193/5 +f 5193/5 5196/5 5197/5 +f 5193/5 5197/5 5198/5 +f 5198/5 5199/5 5193/5 +f 5193/5 5199/5 5200/5 +f 5193/5 5200/5 5201/5 +f 5201/5 5202/5 5193/5 +f 5193/5 5202/5 5203/5 +f 5193/5 5203/5 5204/5 +f 5204/5 5205/5 5193/5 +f 5193/5 5205/5 5206/5 +f 5193/5 5206/5 5207/5 +f 5207/5 5208/5 5193/5 +f 5193/5 5208/5 5209/5 +f 5193/5 5209/5 5210/5 +f 5210/5 5211/5 5193/5 +f 5193/5 5211/5 5212/5 +f 5193/5 5212/5 5213/5 +f 5213/5 5214/5 5193/5 +f 5193/5 5214/5 5215/5 +f 5193/5 5215/5 5216/5 +f 5216/5 5217/5 5193/5 +f 5193/5 5217/5 5218/5 +f 5193/5 5218/5 5219/5 +f 5219/5 5220/5 5193/5 +f 5193/5 5220/5 5221/5 +f 5193/5 5221/5 5222/5 +f 5222/5 5223/5 5193/5 +f 5193/5 5223/5 5224/5 +f 5193/5 5224/5 5194/5 +f 5225/5 5226/5 5227/5 +f 5227/5 5226/5 5228/5 +f 5227/5 5228/5 5229/5 +f 5226/5 5230/5 5228/5 +f 5227/5 5229/5 5231/5 +f 5231/5 5229/5 5232/5 +f 5231/5 5232/5 5233/5 +f 5233/5 5232/5 5234/5 +f 5233/5 5234/5 5235/5 +f 5235/5 5234/5 5236/5 +f 5235/5 5236/5 5237/5 +f 5237/5 5236/5 5238/5 +f 5237/5 5238/5 5239/5 +f 5239/5 5238/5 5240/5 +f 5239/5 5240/5 5241/5 +f 5241/5 5240/5 5159/5 +f 5241/5 5159/5 5158/5 +f 5240/5 5190/5 5159/5 +f 5242/5 5230/5 5243/5 +f 5243/5 5230/5 5226/5 +f 5243/5 5226/5 5244/5 +f 5244/5 5226/5 5225/5 +f 5242/5 5243/5 5245/5 +f 5245/5 5243/5 5246/5 +f 5245/5 5246/5 5247/5 +f 5243/5 5244/5 5246/5 +f 5245/5 5247/5 5248/5 +f 5248/5 5247/5 5249/5 +f 5248/5 5249/5 5250/5 +f 5250/5 5249/5 5251/5 +f 5250/5 5251/5 5252/5 +f 5252/5 5251/5 5253/5 +f 5252/5 5253/5 5254/5 +f 5254/5 5253/5 5255/5 +f 5254/5 5255/5 5256/5 +f 5256/5 5255/5 5257/5 +f 5256/5 5257/5 5258/5 +f 5258/5 5257/5 5115/5 +f 5258/5 5115/5 5120/5 +f 5257/5 5114/5 5115/5 +f 4974/5 5259/5 4973/5 +f 4973/5 5259/5 5260/5 +f 5259/5 5261/5 5260/5 +f 5260/5 5261/5 5262/5 +f 5263/5 5264/5 5265/5 +f 5265/5 5264/5 5266/5 +f 5265/5 5266/5 5267/5 +f 5263/5 5268/5 5264/5 +f 5264/5 5268/5 5269/5 +f 5264/5 5269/5 5270/5 +f 5270/5 5271/5 5264/5 +f 5264/5 5271/5 5272/5 +f 5264/5 5272/5 5273/5 +f 5273/5 5274/5 5264/5 +f 5264/5 5274/5 5275/5 +f 5264/5 5275/5 5276/5 +f 5276/5 5277/5 5264/5 +f 5264/5 5277/5 5278/5 +f 5264/5 5278/5 5279/5 +f 5279/5 5280/5 5264/5 +f 5264/5 5280/5 5281/5 +f 5264/5 5281/5 5282/5 +f 5282/5 5283/5 5264/5 +f 5264/5 5283/5 5284/5 +f 5264/5 5284/5 5285/5 +f 5285/5 5286/5 5264/5 +f 5264/5 5286/5 5287/5 +f 5264/5 5287/5 5288/5 +f 5288/5 5289/5 5264/5 +f 5264/5 5289/5 5290/5 +f 5264/5 5290/5 5291/5 +f 5291/5 5292/5 5264/5 +f 5264/5 5292/5 5293/5 +f 5264/5 5293/5 5294/5 +f 5294/5 5295/5 5264/5 +f 5264/5 5295/5 5296/5 +f 5264/5 5296/5 5297/5 +f 5298/5 5299/5 5267/5 +f 5267/5 5299/5 5300/5 +f 5267/5 5300/5 5265/5 +f 5298/5 5301/5 5299/5 +f 5299/5 5301/5 5302/5 +f 5303/5 5304/5 5301/5 +f 5301/5 5304/5 5305/5 +f 5301/5 5305/5 5306/5 +f 5306/5 5307/5 5301/5 +f 5301/5 5307/5 5308/5 +f 5301/5 5308/5 5309/5 +f 5309/5 5310/5 5301/5 +f 5301/5 5310/5 5311/5 +f 5301/5 5311/5 5312/5 +f 5312/5 5313/5 5301/5 +f 5301/5 5313/5 5314/5 +f 5301/5 5314/5 5315/5 +f 5315/5 5316/5 5301/5 +f 5301/5 5316/5 5317/5 +f 5301/5 5317/5 5318/5 +f 5318/5 5319/5 5301/5 +f 5301/5 5319/5 5320/5 +f 5301/5 5320/5 5321/5 +f 5321/5 5322/5 5301/5 +f 5301/5 5322/5 5323/5 +f 5301/5 5323/5 5324/5 +f 5324/5 5325/5 5301/5 +f 5301/5 5325/5 5326/5 +f 5301/5 5326/5 5327/5 +f 5327/5 5328/5 5301/5 +f 5301/5 5328/5 5329/5 +f 5301/5 5329/5 5330/5 +f 5330/5 5331/5 5301/5 +f 5301/5 5331/5 5332/5 +f 5301/5 5332/5 5302/5 +f 5333/5 5334/5 5335/5 +f 5335/5 5334/5 5336/5 +f 5335/5 5336/5 5337/5 +f 5334/5 5338/5 5336/5 +f 5336/5 5338/5 5339/5 +f 5338/5 5340/5 5339/5 +f 5339/5 5340/5 5341/5 +f 5340/5 5342/5 5341/5 +f 5341/5 5342/5 5343/5 +f 5342/5 5344/5 5343/5 +f 5343/5 5344/5 5345/5 +f 5344/5 5346/5 5345/5 +f 5345/5 5346/5 5347/5 +f 5346/5 5348/5 5347/5 +f 5347/5 5348/5 5349/5 +f 5298/5 5267/5 5348/5 +f 5348/5 5267/5 5349/5 +f 5267/5 5266/5 5349/5 +f 5337/5 5350/5 5335/5 +f 5335/5 5350/5 5351/5 +f 5335/5 5351/5 5333/5 +f 5333/5 5351/5 5352/5 +f 5352/5 5351/5 5353/5 +f 5353/5 5351/5 5354/5 +f 5353/5 5354/5 5355/5 +f 5351/5 5350/5 5354/5 +f 5353/5 5355/5 5356/5 +f 5356/5 5355/5 5357/5 +f 5356/5 5357/5 5358/5 +f 5358/5 5357/5 5359/5 +f 5358/5 5359/5 5360/5 +f 5360/5 5359/5 5361/5 +f 5360/5 5361/5 5362/5 +f 5362/5 5361/5 5363/5 +f 5362/5 5363/5 5364/5 +f 5364/5 5363/5 5365/5 +f 5364/5 5365/5 5366/5 +f 5366/5 5365/5 5009/5 +f 5366/5 5009/5 5014/5 +f 5365/5 5008/5 5009/5 +f 5367/5 5368/5 5369/5 +f 5369/5 5368/5 5370/5 +f 5368/5 5371/5 5370/5 +f 5370/5 5371/5 5372/5 +f 5373/5 5374/5 5375/5 +f 5375/5 5374/5 5376/5 +f 5375/5 5376/5 5377/5 +f 5375/5 5377/5 5378/5 +f 5378/5 5377/5 5379/5 +f 5378/5 5379/5 5380/5 +f 5380/5 5379/5 5381/5 +f 5380/5 5381/5 5382/5 +f 5382/5 5381/5 5383/5 +f 5382/5 5383/5 5384/5 +f 5384/5 5383/5 5385/5 +f 5383/5 5386/5 5385/5 +f 5385/5 5386/5 5387/5 +f 5385/5 5387/5 5388/5 +f 5388/5 5387/5 5389/5 +f 5388/5 5389/5 5390/5 +f 5390/5 5389/5 5391/5 +f 5390/5 5391/5 5392/5 +f 5392/5 5391/5 5393/5 +f 5392/5 5393/5 5394/5 +f 5394/5 5393/5 5395/5 +f 5393/5 5396/5 5395/5 +f 5395/5 5396/5 5397/5 +f 5395/5 5397/5 5398/5 +f 5398/5 5397/5 5399/5 +f 5398/5 5399/5 5400/5 +f 5400/5 5399/5 5401/5 +f 5400/5 5401/5 5402/5 +f 5402/5 5401/5 5403/5 +f 5402/5 5403/5 5404/5 +f 5404/5 5403/5 5405/5 +f 5403/5 5406/5 5405/5 +f 5405/5 5406/5 5407/5 +f 5406/5 5408/5 5407/5 +f 5407/5 5408/5 5409/5 +f 5407/5 5409/5 5410/5 +f 5410/5 5409/5 5411/5 +f 5410/5 5411/5 5412/5 +f 5412/5 5411/5 5413/5 +f 5412/5 5413/5 5414/5 +f 5414/5 5413/5 5415/5 +f 5414/5 5415/5 5416/5 +f 5416/5 5415/5 5417/5 +f 5415/5 5418/5 5417/5 +f 5417/5 5418/5 5419/5 +f 5417/5 5419/5 5420/5 +f 5420/5 5419/5 5421/5 +f 5420/5 5421/5 5422/5 +f 5422/5 5421/5 5423/5 +f 5422/5 5423/5 5424/5 +f 5424/5 5423/5 5425/5 +f 5424/5 5425/5 5426/5 +f 5426/5 5425/5 5427/5 +f 5425/5 5428/5 5427/5 +f 5427/5 5428/5 5429/5 +f 5427/5 5429/5 5430/5 +f 5430/5 5429/5 5431/5 +f 5430/5 5431/5 5432/5 +f 5432/5 5431/5 5433/5 +f 5432/5 5433/5 5434/5 +f 5434/5 5433/5 5435/5 +f 5434/5 5435/5 5436/5 +f 5436/5 5435/5 5261/5 +f 5435/5 5262/5 5261/5 +f 5153/5 5154/5 5437/5 +f 5437/5 5154/5 5438/5 +f 5437/5 5438/5 5439/5 +f 5437/5 5439/5 5440/5 +f 5440/5 5439/5 5441/5 +f 5440/5 5441/5 5442/5 +f 5442/5 5441/5 5443/5 +f 5442/5 5443/5 5444/5 +f 5444/5 5443/5 5445/5 +f 5444/5 5445/5 5446/5 +f 5446/5 5445/5 5447/5 +f 5445/5 5448/5 5447/5 +f 5447/5 5448/5 5449/5 +f 5447/5 5449/5 5450/5 +f 5450/5 5449/5 5451/5 +f 5450/5 5451/5 5452/5 +f 5452/5 5451/5 5453/5 +f 5452/5 5453/5 5454/5 +f 5454/5 5453/5 5455/5 +f 5454/5 5455/5 5456/5 +f 5456/5 5455/5 5457/5 +f 5455/5 5458/5 5457/5 +f 5457/5 5458/5 5459/5 +f 5457/5 5459/5 5460/5 +f 5460/5 5459/5 5461/5 +f 5460/5 5461/5 5462/5 +f 5462/5 5461/5 5463/5 +f 5462/5 5463/5 5464/5 +f 5464/5 5463/5 5465/5 +f 5464/5 5465/5 5466/5 +f 5466/5 5465/5 5467/5 +f 5465/5 5468/5 5467/5 +f 5467/5 5468/5 5469/5 +f 5468/5 5470/5 5469/5 +f 5469/5 5470/5 5471/5 +f 5469/5 5471/5 5472/5 +f 5472/5 5471/5 5473/5 +f 5472/5 5473/5 5474/5 +f 5474/5 5473/5 5475/5 +f 5474/5 5475/5 5476/5 +f 5476/5 5475/5 5477/5 +f 5476/5 5477/5 5478/5 +f 5478/5 5477/5 5479/5 +f 5477/5 5480/5 5479/5 +f 5479/5 5480/5 5481/5 +f 5479/5 5481/5 5482/5 +f 5482/5 5481/5 5483/5 +f 5482/5 5483/5 5484/5 +f 5484/5 5483/5 5485/5 +f 5484/5 5485/5 5486/5 +f 5486/5 5485/5 5487/5 +f 5486/5 5487/5 5488/5 +f 5488/5 5487/5 5489/5 +f 5487/5 5490/5 5489/5 +f 5489/5 5490/5 5491/5 +f 5489/5 5491/5 5492/5 +f 5492/5 5491/5 5493/5 +f 5492/5 5493/5 5494/5 +f 5494/5 5493/5 5495/5 +f 5494/5 5495/5 5496/5 +f 5496/5 5495/5 5497/5 +f 5496/5 5497/5 5498/5 +f 5498/5 5497/5 5499/5 +f 5497/5 5500/5 5499/5 +f 5501/5 5502/5 5503/5 +f 5503/5 5502/5 5504/5 +f 5503/5 5504/5 5505/5 +f 5503/5 5505/5 5506/5 +f 5506/5 5505/5 5507/5 +f 5506/5 5507/5 5508/5 +f 5508/5 5507/5 5509/5 +f 5508/5 5509/5 5510/5 +f 5510/5 5509/5 5511/5 +f 5510/5 5511/5 5512/5 +f 5512/5 5511/5 5513/5 +f 5511/5 5514/5 5513/5 +f 5513/5 5514/5 5515/5 +f 5513/5 5515/5 5516/5 +f 5516/5 5515/5 5517/5 +f 5516/5 5517/5 5518/5 +f 5518/5 5517/5 5519/5 +f 5518/5 5519/5 5520/5 +f 5520/5 5519/5 5521/5 +f 5520/5 5521/5 5522/5 +f 5522/5 5521/5 5523/5 +f 5521/5 5524/5 5523/5 +f 5523/5 5524/5 5525/5 +f 5523/5 5525/5 5526/5 +f 5526/5 5525/5 5527/5 +f 5526/5 5527/5 5528/5 +f 5528/5 5527/5 5529/5 +f 5528/5 5529/5 5530/5 +f 5530/5 5529/5 5531/5 +f 5530/5 5531/5 5532/5 +f 5532/5 5531/5 5533/5 +f 5531/5 5534/5 5533/5 +f 5533/5 5534/5 5535/5 +f 5534/5 5536/5 5535/5 +f 5535/5 5536/5 5537/5 +f 5535/5 5537/5 5538/5 +f 5538/5 5537/5 5539/5 +f 5538/5 5539/5 5540/5 +f 5540/5 5539/5 5541/5 +f 5540/5 5541/5 5542/5 +f 5542/5 5541/5 5543/5 +f 5542/5 5543/5 5544/5 +f 5544/5 5543/5 5545/5 +f 5543/5 5546/5 5545/5 +f 5545/5 5546/5 5547/5 +f 5545/5 5547/5 5548/5 +f 5548/5 5547/5 5549/5 +f 5548/5 5549/5 5550/5 +f 5550/5 5549/5 5551/5 +f 5550/5 5551/5 5552/5 +f 5552/5 5551/5 5553/5 +f 5552/5 5553/5 5554/5 +f 5554/5 5553/5 5555/5 +f 5553/5 5556/5 5555/5 +f 5555/5 5556/5 5557/5 +f 5555/5 5557/5 5558/5 +f 5558/5 5557/5 5559/5 +f 5558/5 5559/5 5560/5 +f 5560/5 5559/5 5561/5 +f 5560/5 5561/5 5562/5 +f 5562/5 5561/5 5563/5 +f 5562/5 5563/5 5564/5 +f 5564/5 5563/5 5369/5 +f 5563/5 5367/5 5369/5 +f 5565/5 5566/5 5567/5 +f 5567/5 5566/5 5568/5 +f 5567/5 5568/5 5569/5 +f 5567/5 5569/5 5570/5 +f 5570/5 5569/5 5571/5 +f 5570/5 5571/5 5572/5 +f 5572/5 5571/5 5573/5 +f 5572/5 5573/5 5574/5 +f 5574/5 5573/5 5575/5 +f 5574/5 5575/5 5576/5 +f 5576/5 5575/5 5577/5 +f 5576/5 5577/5 5578/5 +f 5578/5 5577/5 5579/5 +f 5578/5 5579/5 5580/5 +f 5580/5 5579/5 5581/5 +f 5580/5 5581/5 5582/5 +f 5582/5 5581/5 5583/5 +f 5582/5 5583/5 5584/5 +f 5584/5 5583/5 5585/5 +f 5584/5 5585/5 5586/5 +f 5586/5 5585/5 5587/5 +f 5586/5 5587/5 5588/5 +f 5588/5 5587/5 5589/5 +f 5588/5 5589/5 5590/5 +f 5590/5 5589/5 5591/5 +f 5590/5 5591/5 5592/5 +f 5592/5 5591/5 5593/5 +f 5592/5 5593/5 5594/5 +f 5594/5 5593/5 5595/5 +f 5594/5 5595/5 5596/5 +f 5596/5 5595/5 5597/5 +f 5596/5 5597/5 5598/5 +f 5598/5 5597/5 5599/5 +f 5598/5 5599/5 5600/5 +f 5600/5 5599/5 5601/5 +f 5600/5 5601/5 5602/5 +f 5602/5 5601/5 5603/5 +f 5602/5 5603/5 5604/5 +f 5604/5 5603/5 5605/5 +f 5604/5 5605/5 5606/5 +f 5606/5 5605/5 5607/5 +f 5606/5 5607/5 5608/5 +f 5608/5 5607/5 5609/5 +f 5608/5 5609/5 5610/5 +f 5610/5 5609/5 5611/5 +f 5610/5 5611/5 5612/5 +f 5612/5 5611/5 5613/5 +f 5612/5 5613/5 5614/5 +f 5614/5 5613/5 5615/5 +f 5614/5 5615/5 5616/5 +f 5616/5 5615/5 5617/5 +f 5616/5 5617/5 5618/5 +f 5618/5 5617/5 5619/5 +f 5618/5 5619/5 5620/5 +f 5620/5 5619/5 5621/5 +f 5620/5 5621/5 5622/5 +f 5622/5 5621/5 5623/5 +f 5622/5 5623/5 5624/5 +f 5624/5 5623/5 5625/5 +f 5624/5 5625/5 5626/5 +f 5626/5 5625/5 5627/5 +f 5626/5 5627/5 5628/5 +f 5628/5 5627/5 5352/5 +f 5627/5 5333/5 5352/5 +f 5629/5 5566/5 5630/5 +f 5630/5 5566/5 5565/5 +f 5630/5 5565/5 5631/5 +f 5632/5 5633/5 5634/5 +f 5634/5 5633/5 5635/5 +f 5634/5 5635/5 5636/5 +f 5635/5 5633/5 5637/5 +f 5637/5 5633/5 5638/5 +f 5637/5 5638/5 5639/5 +f 5637/5 5639/5 5640/5 +f 5640/5 5639/5 5641/5 +f 5640/5 5641/5 5642/5 +f 5642/5 5641/5 5643/5 +f 5642/5 5643/5 5644/5 +f 5644/5 5643/5 5645/5 +f 5644/5 5645/5 5646/5 +f 5646/5 5645/5 5647/5 +f 5645/5 5648/5 5647/5 +f 5647/5 5648/5 5649/5 +f 5647/5 5649/5 5650/5 +f 5650/5 5649/5 5651/5 +f 5650/5 5651/5 5652/5 +f 5652/5 5651/5 5653/5 +f 5651/5 5654/5 5653/5 +f 5653/5 5654/5 5655/5 +f 5653/5 5655/5 5656/5 +f 5656/5 5655/5 5657/5 +f 5655/5 5658/5 5657/5 +f 5657/5 5658/5 5659/5 +f 5657/5 5659/5 5660/5 +f 5660/5 5659/5 5661/5 +f 5660/5 5661/5 5662/5 +f 5662/5 5661/5 5663/5 +f 5662/5 5663/5 5664/5 +f 5664/5 5663/5 5630/5 +f 5664/5 5630/5 5631/5 +f 5663/5 5629/5 5630/5 +f 5665/5 5632/5 5666/5 +f 5666/5 5632/5 5634/5 +f 5666/5 5634/5 5667/5 +f 5667/5 5634/5 5668/5 +f 5634/5 5636/5 5668/5 +f 5668/5 5636/5 5669/5 +f 5668/5 5669/5 5670/5 +f 5670/5 5671/5 5668/5 +f 5668/5 5671/5 5672/5 +f 5668/5 5672/5 5673/5 +f 5673/5 5674/5 5668/5 +f 5668/5 5674/5 5675/5 +f 5668/5 5675/5 5676/5 +f 5676/5 5677/5 5668/5 +f 5668/5 5677/5 5678/5 +f 5668/5 5678/5 5679/5 +f 5679/5 5680/5 5668/5 +f 5668/5 5680/5 5681/5 +f 5668/5 5681/5 5682/5 +f 5682/5 5683/5 5668/5 +f 5668/5 5683/5 5684/5 +f 5668/5 5684/5 5685/5 +f 5685/5 5686/5 5668/5 +f 5668/5 5686/5 5687/5 +f 5668/5 5687/5 5688/5 +f 5688/5 5689/5 5668/5 +f 5668/5 5689/5 5690/5 +f 5668/5 5690/5 5691/5 +f 5691/5 5692/5 5668/5 +f 5668/5 5692/5 5693/5 +f 5668/5 5693/5 5694/5 +f 5694/5 5695/5 5668/5 +f 5668/5 5695/5 5696/5 +f 5668/5 5696/5 5697/5 +f 5697/5 5698/5 5668/5 +f 5668/5 5698/5 5699/5 +f 5668/5 5699/5 5700/5 +f 5701/5 5702/5 5666/5 +f 5666/5 5702/5 5703/5 +f 5666/5 5703/5 5704/5 +f 5704/5 5705/5 5666/5 +f 5666/5 5705/5 5706/5 +f 5666/5 5706/5 5707/5 +f 5707/5 5708/5 5666/5 +f 5666/5 5708/5 5709/5 +f 5666/5 5709/5 5710/5 +f 5710/5 5711/5 5666/5 +f 5666/5 5711/5 5712/5 +f 5666/5 5712/5 5713/5 +f 5713/5 5714/5 5666/5 +f 5666/5 5714/5 5715/5 +f 5666/5 5715/5 5716/5 +f 5716/5 5717/5 5666/5 +f 5666/5 5717/5 5718/5 +f 5666/5 5718/5 5719/5 +f 5719/5 5720/5 5666/5 +f 5666/5 5720/5 5721/5 +f 5666/5 5721/5 5722/5 +f 5722/5 5723/5 5666/5 +f 5666/5 5723/5 5724/5 +f 5666/5 5724/5 5725/5 +f 5725/5 5726/5 5666/5 +f 5666/5 5726/5 5727/5 +f 5666/5 5727/5 5728/5 +f 5728/5 5729/5 5666/5 +f 5666/5 5729/5 5730/5 +f 5666/5 5730/5 5731/5 +f 5731/5 5665/5 5666/5 +f 5372/5 5371/5 5732/5 +f 5732/5 5371/5 5733/5 +f 5732/5 5733/5 5734/5 +f 5732/5 5734/5 5735/5 +f 5735/5 5734/5 5736/5 +f 5735/5 5736/5 5737/5 +f 5737/5 5736/5 5738/5 +f 5737/5 5738/5 5739/5 +f 5739/5 5738/5 5740/5 +f 5739/5 5740/5 5741/5 +f 5741/5 5740/5 5742/5 +f 5740/5 5743/5 5742/5 +f 5742/5 5743/5 5744/5 +f 5742/5 5744/5 5745/5 +f 5745/5 5744/5 5746/5 +f 5745/5 5746/5 5747/5 +f 5747/5 5746/5 5748/5 +f 5747/5 5748/5 5749/5 +f 5749/5 5748/5 5750/5 +f 5749/5 5750/5 5751/5 +f 5751/5 5750/5 5752/5 +f 5750/5 5753/5 5752/5 +f 5752/5 5753/5 5754/5 +f 5752/5 5754/5 5755/5 +f 5755/5 5754/5 5756/5 +f 5755/5 5756/5 5757/5 +f 5757/5 5756/5 5758/5 +f 5757/5 5758/5 5759/5 +f 5759/5 5758/5 5760/5 +f 5759/5 5760/5 5761/5 +f 5761/5 5760/5 5762/5 +f 5760/5 5763/5 5762/5 +f 5762/5 5763/5 5764/5 +f 5763/5 5765/5 5764/5 +f 5764/5 5765/5 5766/5 +f 5764/5 5766/5 5767/5 +f 5767/5 5766/5 5768/5 +f 5767/5 5768/5 5769/5 +f 5769/5 5768/5 5770/5 +f 5769/5 5770/5 5771/5 +f 5771/5 5770/5 5772/5 +f 5771/5 5772/5 5773/5 +f 5773/5 5772/5 5774/5 +f 5772/5 5775/5 5774/5 +f 5774/5 5775/5 5776/5 +f 5774/5 5776/5 5777/5 +f 5777/5 5776/5 5778/5 +f 5777/5 5778/5 5779/5 +f 5779/5 5778/5 5780/5 +f 5779/5 5780/5 5781/5 +f 5781/5 5780/5 5782/5 +f 5781/5 5782/5 5783/5 +f 5783/5 5782/5 5784/5 +f 5782/5 5785/5 5784/5 +f 5784/5 5785/5 5786/5 +f 5784/5 5786/5 5787/5 +f 5787/5 5786/5 5788/5 +f 5787/5 5788/5 5789/5 +f 5789/5 5788/5 5790/5 +f 5789/5 5790/5 5791/5 +f 5791/5 5790/5 5792/5 +f 5791/5 5792/5 5793/5 +f 5793/5 5792/5 5794/5 +f 5792/5 5795/5 5794/5 +f 5796/5 5797/5 5798/5 +f 5798/5 5797/5 5799/5 +f 5798/5 5799/5 5800/5 +f 5800/5 5799/5 5801/5 +f 5800/5 5801/5 5802/5 +f 5802/5 5801/5 5803/5 +f 5802/5 5803/5 5804/5 +f 5805/5 5806/5 5798/5 +f 5798/5 5806/5 5807/5 +f 5798/5 5807/5 5808/5 +f 5808/5 5809/5 5798/5 +f 5798/5 5809/5 5810/5 +f 5798/5 5810/5 5811/5 +f 5811/5 5812/5 5798/5 +f 5798/5 5812/5 5813/5 +f 5798/5 5813/5 5814/5 +f 5814/5 5815/5 5798/5 +f 5798/5 5815/5 5816/5 +f 5798/5 5816/5 5817/5 +f 5817/5 5818/5 5798/5 +f 5798/5 5818/5 5819/5 +f 5798/5 5819/5 5820/5 +f 5820/5 5821/5 5798/5 +f 5798/5 5821/5 5822/5 +f 5798/5 5822/5 5823/5 +f 5823/5 5824/5 5798/5 +f 5798/5 5824/5 5825/5 +f 5798/5 5825/5 5826/5 +f 5826/5 5827/5 5798/5 +f 5798/5 5827/5 5828/5 +f 5798/5 5828/5 5829/5 +f 5829/5 5830/5 5798/5 +f 5798/5 5830/5 5831/5 +f 5798/5 5831/5 5832/5 +f 5832/5 5833/5 5798/5 +f 5798/5 5833/5 5834/5 +f 5798/5 5834/5 5796/5 +f 5804/5 5835/5 5802/5 +f 5802/5 5835/5 5836/5 +f 5802/5 5836/5 5837/5 +f 5837/5 5838/5 5802/5 +f 5802/5 5838/5 5839/5 +f 5802/5 5839/5 5840/5 +f 5840/5 5841/5 5802/5 +f 5802/5 5841/5 5842/5 +f 5802/5 5842/5 5843/5 +f 5843/5 5844/5 5802/5 +f 5802/5 5844/5 5845/5 +f 5802/5 5845/5 5846/5 +f 5846/5 5847/5 5802/5 +f 5802/5 5847/5 5848/5 +f 5802/5 5848/5 5849/5 +f 5849/5 5850/5 5802/5 +f 5802/5 5850/5 5851/5 +f 5802/5 5851/5 5852/5 +f 5852/5 5853/5 5802/5 +f 5802/5 5853/5 5854/5 +f 5802/5 5854/5 5855/5 +f 5855/5 5856/5 5802/5 +f 5802/5 5856/5 5857/5 +f 5802/5 5857/5 5858/5 +f 5858/5 5859/5 5802/5 +f 5802/5 5859/5 5860/5 +f 5802/5 5860/5 5861/5 +f 5861/5 5862/5 5802/5 +f 5802/5 5862/5 5863/5 +f 5802/5 5863/5 5864/5 +f 5799/5 5865/5 5801/5 +f 5801/5 5865/5 5866/5 +f 5866/5 5865/5 5867/5 +f 5867/5 5865/5 5868/5 +f 5867/5 5868/5 5869/5 +f 5867/5 5869/5 5870/5 +f 5870/5 5869/5 5871/5 +f 5870/5 5871/5 5872/5 +f 5872/5 5871/5 5873/5 +f 5872/5 5873/5 5874/5 +f 5874/5 5873/5 5875/5 +f 5874/5 5875/5 5876/5 +f 5876/5 5875/5 5877/5 +f 5875/5 5878/5 5877/5 +f 5877/5 5878/5 5879/5 +f 5877/5 5879/5 5880/5 +f 5880/5 5879/5 5881/5 +f 5880/5 5881/5 5882/5 +f 5882/5 5881/5 5883/5 +f 5881/5 5884/5 5883/5 +f 5883/5 5884/5 5885/5 +f 5883/5 5885/5 5886/5 +f 5886/5 5885/5 5887/5 +f 5885/5 5888/5 5887/5 +f 5887/5 5888/5 5889/5 +f 5887/5 5889/5 5890/5 +f 5890/5 5889/5 5891/5 +f 5890/5 5891/5 5892/5 +f 5892/5 5891/5 5893/5 +f 5892/5 5893/5 5894/5 +f 5894/5 5893/5 5895/5 +f 5894/5 5895/5 5896/5 +f 5374/5 5897/5 5898/5 +f 5898/5 5897/5 5899/5 +f 5898/5 5899/5 5900/5 +f 5900/5 5899/5 5901/5 +f 5900/5 5901/5 5902/5 +f 5902/5 5901/5 5903/5 +f 5902/5 5903/5 5904/5 +f 5904/5 5903/5 5905/5 +f 5904/5 5905/5 5906/5 +f 5906/5 5905/5 5907/5 +f 5906/5 5907/5 5908/5 +f 5908/5 5907/5 5909/5 +f 5908/5 5909/5 5910/5 +f 5910/5 5909/5 5911/5 +f 5910/5 5911/5 5912/5 +f 5912/5 5911/5 5913/5 +f 5912/5 5913/5 5914/5 +f 5374/5 5373/5 5897/5 +f 5915/5 5916/5 5917/5 +f 5917/5 5916/5 5918/5 +f 5917/5 5918/5 5919/5 +f 5917/5 5919/5 5920/5 +f 5920/5 5919/5 5921/5 +f 5920/5 5921/5 5922/5 +f 5922/5 5921/5 5923/5 +f 5922/5 5923/5 5924/5 +f 5924/5 5923/5 5925/5 +f 5924/5 5925/5 5926/5 +f 5926/5 5925/5 5927/5 +f 5926/5 5927/5 5928/5 +f 5928/5 5927/5 5929/5 +f 5928/5 5929/5 5930/5 +f 5930/5 5929/5 5931/5 +f 5929/5 5932/5 5931/5 +f 5931/5 5932/5 5499/5 +f 5931/5 5499/5 5500/5 +f 5895/5 5933/5 5896/5 +f 5896/5 5933/5 5934/5 +f 5935/5 5936/5 5937/5 +f 5937/5 5936/5 5938/5 +f 5937/5 5938/5 5939/5 +f 5939/5 5938/5 5940/5 +f 5939/5 5940/5 5941/5 +f 5941/5 5940/5 5942/5 +f 5941/5 5942/5 5943/5 +f 5943/5 5942/5 5944/5 +f 5943/5 5944/5 5945/5 +f 5945/5 5944/5 5946/5 +f 5945/5 5946/5 5947/5 +f 5947/5 5946/5 5948/5 +f 5947/5 5948/5 5949/5 +f 5949/5 5948/5 5950/5 +f 5949/5 5950/5 5951/5 +f 5951/5 5950/5 5952/5 +f 5951/5 5952/5 5953/5 +f 5953/5 5952/5 5954/5 +f 5953/5 5954/5 5955/5 +f 5955/5 5954/5 5956/5 +f 5955/5 5956/5 5957/5 +f 5957/5 5956/5 5958/5 +f 5957/5 5958/5 5959/5 +f 5959/5 5958/5 5960/5 +f 5959/5 5960/5 5961/5 +f 5961/5 5960/5 5962/5 +f 5961/5 5962/5 5963/5 +f 5935/5 5964/5 5936/5 +f 5936/5 5964/5 5965/5 +f 5964/5 5966/5 5965/5 +f 5965/5 5966/5 5967/5 +f 5966/5 5968/5 5967/5 +f 5967/5 5968/5 5969/5 +f 5968/5 5970/5 5969/5 +f 5969/5 5970/5 5971/5 +f 5970/5 5972/5 5971/5 +f 5971/5 5972/5 5973/5 +f 5972/5 5974/5 5973/5 +f 5973/5 5974/5 5975/5 +f 5974/5 5976/5 5975/5 +f 5975/5 5976/5 5977/5 +f 5976/5 5978/5 5977/5 +f 5977/5 5978/5 5979/5 +f 5978/5 5980/5 5979/5 +f 5979/5 5980/5 5981/5 +f 5980/5 5982/5 5981/5 +f 5981/5 5982/5 5983/5 +f 5982/5 5984/5 5983/5 +f 5983/5 5984/5 5985/5 +f 5984/5 5986/5 5985/5 +f 5985/5 5986/5 5987/5 +f 5986/5 5988/5 5987/5 +f 5987/5 5988/5 5989/5 +f 5988/5 5990/5 5989/5 +f 5989/5 5990/5 5991/5 +f 5990/5 5992/5 5991/5 +f 5991/5 5992/5 5993/5 +f 5992/5 5994/5 5993/5 +f 5993/5 5994/5 5995/5 +f 5994/5 5996/5 5995/5 +f 5995/5 5996/5 5997/5 +f 5996/5 5998/5 5997/5 +f 5997/5 5998/5 5999/5 +f 5998/5 6000/5 5999/5 +f 5999/5 6000/5 6001/5 +f 6000/5 6002/5 6001/5 +f 6001/5 6002/5 6003/5 +f 6002/5 6004/5 6003/5 +f 6003/5 6004/5 6005/5 +f 6004/5 6006/5 6005/5 +f 6005/5 6006/5 6007/5 +f 6006/5 6008/5 6007/5 +f 6007/5 6008/5 6009/5 +f 6008/5 6010/5 6009/5 +f 6009/5 6010/5 6011/5 +f 6010/5 6012/5 6011/5 +f 6011/5 6012/5 6013/5 +f 6012/5 6014/5 6013/5 +f 6013/5 6014/5 6015/5 +f 6014/5 6016/5 6015/5 +f 6015/5 6016/5 6017/5 +f 5961/5 5963/5 6018/5 +f 6018/5 5963/5 6019/5 +f 6018/5 6019/5 6020/5 +f 6020/5 6019/5 6021/5 +f 6020/5 6021/5 6022/5 +f 6022/5 6021/5 6023/5 +f 6022/5 6023/5 6024/5 +f 6024/5 6023/5 6025/5 +f 6024/5 6025/5 6026/5 +f 6026/5 6025/5 6027/5 +f 6026/5 6027/5 6028/5 +f 6028/5 6027/5 6029/5 +f 6028/5 6029/5 6030/5 +f 6030/5 6029/5 6031/5 +f 6030/5 6031/5 6032/5 +f 6032/5 6031/5 6033/5 +f 6032/5 6033/5 6034/5 +f 6034/5 6033/5 5502/5 +f 6034/5 5502/5 5501/5 +f 6035/5 6036/5 6037/5 +f 6037/5 6036/5 6038/5 +f 6037/5 6038/5 6039/5 +f 6037/5 6039/5 6040/5 +f 6040/5 6039/5 6041/5 +f 6040/5 6041/5 6042/5 +f 6042/5 6041/5 6043/5 +f 6042/5 6043/5 6044/5 +f 6044/5 6043/5 6045/5 +f 6044/5 6045/5 6046/5 +f 6046/5 6045/5 6047/5 +f 6046/5 6047/5 6048/5 +f 6048/5 6047/5 6049/5 +f 6048/5 6049/5 6050/5 +f 6050/5 6049/5 6051/5 +f 6050/5 6051/5 6052/5 +f 6052/5 6051/5 6053/5 +f 6052/5 6053/5 6054/5 +f 6054/5 6053/5 6055/5 +f 6054/5 6055/5 6056/5 +f 6056/5 6055/5 6057/5 +f 6056/5 6057/5 6058/5 +f 6058/5 6057/5 6059/5 +f 6058/5 6059/5 6060/5 +f 6060/5 6059/5 6061/5 +f 6060/5 6061/5 6062/5 +f 6062/5 6061/5 6063/5 +f 6062/5 6063/5 6064/5 +f 6064/5 6063/5 6065/5 +f 6064/5 6065/5 6066/5 +f 6066/5 6065/5 6067/5 +f 6066/5 6067/5 6068/5 +f 6068/5 6067/5 6069/5 +f 6068/5 6069/5 6070/5 +f 6070/5 6069/5 6071/5 +f 6070/5 6071/5 6072/5 +f 6072/5 6071/5 6073/5 +f 6072/5 6073/5 6074/5 +f 6074/5 6073/5 6075/5 +f 6074/5 6075/5 6076/5 +f 6076/5 6075/5 6077/5 +f 6076/5 6077/5 6078/5 +f 6078/5 6077/5 6079/5 +f 6078/5 6079/5 6080/5 +f 6080/5 6079/5 6081/5 +f 6080/5 6081/5 6082/5 +f 6082/5 6081/5 6083/5 +f 6082/5 6083/5 6084/5 +f 6084/5 6083/5 6085/5 +f 6084/5 6085/5 6086/5 +f 6086/5 6085/5 6087/5 +f 6086/5 6087/5 6088/5 +f 6086/5 6088/5 6089/5 +f 6089/5 6088/5 6090/5 +f 6089/5 6090/5 6091/5 +f 6091/5 6090/5 6092/5 +f 6091/5 6092/5 6093/5 +f 6093/5 6092/5 6094/5 +f 6093/5 6094/5 6095/5 +f 6095/5 6094/5 6096/5 +f 6095/5 6096/5 6097/5 +f 6097/5 6096/5 6098/5 +f 6097/5 6098/5 6099/5 +f 6099/5 6098/5 6100/5 +f 6099/5 6100/5 6101/5 +f 6099/5 6101/5 6102/5 +f 6102/5 6101/5 6103/5 +f 6102/5 6103/5 6104/5 +f 6104/5 6103/5 6105/5 +f 6104/5 6105/5 6106/5 +f 6106/5 6105/5 6107/5 +f 6106/5 6107/5 6108/5 +f 6108/5 6107/5 6109/5 +f 6108/5 6109/5 6110/5 +f 6110/5 6109/5 6111/5 +f 6110/5 6111/5 6112/5 +f 6112/5 6111/5 6113/5 +f 6112/5 6113/5 6114/5 +f 6114/5 6113/5 6115/5 +f 6114/5 6115/5 6116/5 +f 6116/5 6115/5 6117/5 +f 6116/5 6117/5 6118/5 +f 6118/5 6117/5 6119/5 +f 6118/5 6119/5 6120/5 +f 6120/5 6119/5 6121/5 +f 6120/5 6121/5 6122/5 +f 6122/5 6121/5 6123/5 +f 6122/5 6123/5 6124/5 +f 6124/5 6123/5 6125/5 +f 6124/5 6125/5 6126/5 +f 6126/5 6125/5 6127/5 +f 6126/5 6127/5 6128/5 +f 6128/5 6127/5 6129/5 +f 6128/5 6129/5 6130/5 +f 6130/5 6129/5 6131/5 +f 6130/5 6131/5 6132/5 +f 6132/5 6131/5 5794/5 +f 6132/5 5794/5 5795/5 +f 6133/5 6134/5 6089/5 +f 6089/5 6134/5 6086/5 +f 5934/5 5933/5 6135/5 +f 6135/5 5933/5 6136/5 +f 6135/5 6136/5 6137/5 +f 6135/5 6137/5 6138/5 +f 6138/5 6137/5 6139/5 +f 6138/5 6139/5 6140/5 +f 6140/5 6139/5 6141/5 +f 6140/5 6141/5 6142/5 +f 6142/5 6141/5 6143/5 +f 6142/5 6143/5 6144/5 +f 6144/5 6143/5 6145/5 +f 6144/5 6145/5 6146/5 +f 6146/5 6145/5 6147/5 +f 6146/5 6147/5 6148/5 +f 6148/5 6147/5 6149/5 +f 6148/5 6149/5 6150/5 +f 6150/5 6149/5 6151/5 +f 6150/5 6151/5 6152/5 +f 6152/5 6151/5 6153/5 +f 6152/5 6153/5 6154/5 +f 6154/5 6153/5 6155/5 +f 6154/5 6155/5 6156/5 +f 6156/5 6155/5 6157/5 +f 6156/5 6157/5 6158/5 +f 6158/5 6157/5 6159/5 +f 6158/5 6159/5 6160/5 +f 6160/5 6159/5 6161/5 +f 6160/5 6161/5 6162/5 +f 6162/5 6161/5 6163/5 +f 6162/5 6163/5 6164/5 +f 6164/5 6163/5 6165/5 +f 6164/5 6165/5 6166/5 +f 6166/5 6165/5 6167/5 +f 6166/5 6167/5 6168/5 +f 6168/5 6167/5 6169/5 +f 6168/5 6169/5 6170/5 +f 6170/5 6169/5 6171/5 +f 6170/5 6171/5 6172/5 +f 6172/5 6171/5 6173/5 +f 6172/5 6173/5 6174/5 +f 6174/5 6173/5 6175/5 +f 6174/5 6175/5 6176/5 +f 6176/5 6175/5 6177/5 +f 6176/5 6177/5 6178/5 +f 6178/5 6177/5 6179/5 +f 6178/5 6179/5 6180/5 +f 6180/5 6179/5 6181/5 +f 6180/5 6181/5 6182/5 +f 6182/5 6181/5 6183/5 +f 6182/5 6183/5 6184/5 +f 6184/5 6183/5 6185/5 +f 6184/5 6185/5 6186/5 +f 6186/5 6185/5 6187/5 +f 6186/5 6187/5 6188/5 +f 6188/5 6187/5 6189/5 +f 6188/5 6189/5 6190/5 +f 6190/5 6189/5 6191/5 +f 6190/5 6191/5 6192/5 +f 6192/5 6191/5 6193/5 +f 6192/5 6193/5 6194/5 +f 6194/5 6193/5 6195/5 +f 6194/5 6195/5 6196/5 +f 6196/5 6195/5 5242/5 +f 6195/5 5230/5 5242/5 \ No newline at end of file diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 458d7fcaae..7acf39ecb2 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -35,8 +35,11 @@ Item property alias mergeObjects: mergeObjectsAction //property alias unMergeObjects: unMergeObjectsAction - property alias multiplyObject: multiplyObjectAction + property alias printObjectBeforePrevious: printObjectBeforePreviousAction + property alias printObjectAfterNext: printObjectAfterNextAction + property alias multiplyObject: multiplyObjectAction + property alias dropAll: dropAllAction property alias selectAll: selectAllAction property alias deleteAll: deleteAllAction property alias reloadAll: reloadAllAction @@ -109,7 +112,6 @@ Item Action { id: exitFullScreenAction - shortcut: StandardKey.Cancel text: catalog.i18nc("@action:inmenu", "Exit Full Screen") icon.name: "view-fullscreen" } @@ -120,8 +122,8 @@ Item text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo") icon.name: "edit-undo" shortcut: StandardKey.Undo - onTriggered: UM.OperationStack.undo() - enabled: UM.OperationStack.canUndo + onTriggered: CuraActions.undo() + enabled: CuraActions.canUndo } Action @@ -130,8 +132,8 @@ Item text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo") icon.name: "edit-redo" shortcut: StandardKey.Redo - onTriggered: UM.OperationStack.redo() - enabled: UM.OperationStack.canRedo + onTriggered: CuraActions.redo() + enabled: CuraActions.canRedo } Action @@ -406,6 +408,26 @@ Item onTriggered: CuraApplication.ungroupSelected() } + Action + { + id: printObjectBeforePreviousAction + text: catalog.i18nc("@action:inmenu menubar:edit","Print Before") + " " + PrintOrderManager.previousNodeName + enabled: PrintOrderManager.shouldEnablePrintBeforeAction + icon.name: "print-before" + shortcut: "PgUp" + onTriggered: PrintOrderManager.swapSelectedAndPreviousNodes() + } + + Action + { + id: printObjectAfterNextAction + text: catalog.i18nc("@action:inmenu menubar:edit","Print After") + " " + PrintOrderManager.nextNodeName + enabled: PrintOrderManager.shouldEnablePrintAfterAction + icon.name: "print-after" + shortcut: "PgDown" + onTriggered: PrintOrderManager.swapSelectedAndNextNodes() + } + Action { id: mergeObjectsAction @@ -468,6 +490,14 @@ Item shortcut: "Shift+Ctrl+R" } + Action + { + id: dropAllAction + text: catalog.i18nc("@action:inmenu menubar:edit","Drop All Models to buildplate") + shortcut: "Ctrl+B" + onTriggered: CuraApplication.setWorkplaceDropToBuildplate() + } + Action { id: resetAllTranslationAction diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 4983363946..77efc45fe8 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -701,8 +701,7 @@ UM.MainWindow if (hasProjectFile) { - var projectFile = projectFileUrlList[0]; - + var projectFile = projectFileUrlList[0] // check preference var choice = UM.Preferences.getValue("cura/choice_on_open_project"); if (choice == "open_as_project") @@ -716,6 +715,7 @@ UM.MainWindow else // always ask { // ask whether to open as project or as models + askOpenAsProjectOrModelsDialog.is_ucp = CuraApplication.isProjectUcp(projectFile); askOpenAsProjectOrModelsDialog.fileUrl = projectFile; askOpenAsProjectOrModelsDialog.addToRecent = true; askOpenAsProjectOrModelsDialog.show(); @@ -774,6 +774,7 @@ UM.MainWindow target: CuraApplication function onOpenProjectFile(project_file, add_to_recent_files) { + askOpenAsProjectOrModelsDialog.is_ucp = CuraApplication.isProjectUcp(project_file); askOpenAsProjectOrModelsDialog.fileUrl = project_file; askOpenAsProjectOrModelsDialog.addToRecent = add_to_recent_files; askOpenAsProjectOrModelsDialog.show(); @@ -839,6 +840,7 @@ UM.MainWindow if(!visible) { wizardDialog = null + Cura.API.account.startSyncing() } } } @@ -866,6 +868,7 @@ UM.MainWindow target: Cura.Actions.addMachine function onTriggered() { + Cura.API.account.stopSyncing() wizardDialog = addMachineDialogLoader.createObject() wizardDialog.show() } diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index b0cd9d2ad3..5c80964e38 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -1,19 +1,24 @@ -// Copyright (c) 2022 UltiMaker +// Copyright (c) 2023 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 import QtQuick.Controls 2.9 +import QtQuick.Layouts 1.3 import UM 1.6 as UM -import Cura 1.5 as Cura +import Cura 1.6 as Cura UM.Dialog { + readonly property UM.I18nCatalog catalog: UM.I18nCatalog { name: "cura" } + id: base - //: About dialog title title: catalog.i18nc("@title:window The argument is the application name.", "About %1").arg(CuraApplication.applicationDisplayName) + // Flag to toggle between main dependencies information and extensive dependencies information + property bool showDefaultDependencies: true + minimumWidth: 500 * screenScaleFactor minimumHeight: 700 * screenScaleFactor width: minimumWidth @@ -21,191 +26,268 @@ UM.Dialog backgroundColor: UM.Theme.getColor("main_background") - - Rectangle + headerComponent: Rectangle { - id: header - width: parent.width + 2 * margin // margin from Dialog.qml - height: childrenRect.height + topPadding - - anchors.top: parent.top - anchors.topMargin: -margin - anchors.horizontalCenter: parent.horizontalCenter - - property real topPadding: UM.Theme.getSize("wide_margin").height - + width: parent.width + height: logo.height + 2 * UM.Theme.getSize("wide_margin").height color: UM.Theme.getColor("main_window_header_background") Image { id: logo - width: (base.minimumWidth * 0.85) | 0 - height: (width * (UM.Theme.getSize("logo").height / UM.Theme.getSize("logo").width)) | 0 + width: Math.floor(base.width * 0.85) + height: Math.floor(width * UM.Theme.getSize("logo").height / UM.Theme.getSize("logo").width) source: UM.Theme.getImage("logo") sourceSize.width: width sourceSize.height: height fillMode: Image.PreserveAspectFit - anchors.top: parent.top - anchors.topMargin: parent.topPadding - anchors.horizontalCenter: parent.horizontalCenter + anchors.centerIn: parent + } - UM.I18nCatalog{id: catalog; name: "cura"} - MouseArea - { - anchors.fill: parent - onClicked: - { - projectsList.visible = !projectsList.visible; - projectBuildInfoList.visible = !projectBuildInfoList.visible; - } - } + Image + { + id: enterpriseLogo + visible: CuraApplication.isEnterprise + source: UM.Theme.getImage("enterprise") + fillMode: Image.PreserveAspectFit + + anchors.bottom: parent.bottom } UM.Label { id: version - - text: catalog.i18nc("@label","version: %1").arg(UM.Application.version) + text: catalog.i18nc("@label","version: %1").arg(CuraApplication.version()) font: UM.Theme.getFont("large_bold") color: UM.Theme.getColor("button_text") anchors.right : logo.right anchors.top: logo.bottom - anchors.topMargin: (UM.Theme.getSize("default_margin").height / 2) | 0 + } + + MouseArea + { + anchors.fill: parent + onDoubleClicked: showDefaultDependencies = !showDefaultDependencies } } - UM.Label + // Reusable component to display a dependency + readonly property Component dependency_row: RowLayout { - id: description - width: parent.width + spacing: UM.Theme.getSize("default_margin").width - //: About dialog application description - text: catalog.i18nc("@label","End-to-end solution for fused filament 3D printing.") - font: UM.Theme.getFont("system") - wrapMode: Text.WordWrap - anchors.top: header.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - } - - UM.Label - { - id: creditsNotes - width: parent.width - - //: About dialog application author note - text: catalog.i18nc("@info:credit","Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:") - font: UM.Theme.getFont("system") - wrapMode: Text.WordWrap - anchors.top: description.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - } - - ListView - { - id: projectsList - anchors.top: creditsNotes.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - width: parent.width - height: base.height - y - (2 * UM.Theme.getSize("default_margin").height + closeButton.height) - - ScrollBar.vertical: UM.ScrollBar + UM.Label { - id: projectsListScrollBar + text: { + if (url !== "") { + return `${name}`; + } else { + return name; + } + } + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 1 + onLinkActivated: Qt.openUrlExternally(url) } - delegate: Row + UM.Label { - spacing: UM.Theme.getSize("narrow_margin").width + text: description + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 2 + } + + UM.Label + { + text: license + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 1 + } + + UM.Label + { + text: version + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 1 + } + } + + Flickable + { + id: scroll + anchors.fill: parent + ScrollBar.vertical: UM.ScrollBar { + visible: scroll.contentHeight > height + } + contentHeight: content.height + clip: true + + Column + { + id: content + spacing: UM.Theme.getSize("default_margin").height + width: parent.width + UM.Label { - text: "%2".arg(model.url).arg(model.name) - width: (projectsList.width * 0.25) | 0 - elide: Text.ElideRight - onLinkActivated: Qt.openUrlExternally(link) + text: catalog.i18nc("@label", "End-to-end solution for fused filament 3D printing.") + font: UM.Theme.getFont("system") + wrapMode: Text.WordWrap } + UM.Label { - text: model.description - elide: Text.ElideRight - width: ((projectsList.width * 0.6) | 0) - parent.spacing * 2 - projectsListScrollBar.width + text: catalog.i18nc("@info:credit", "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:") + font: UM.Theme.getFont("system") + wrapMode: Text.WordWrap } + + Column + { + visible: showDefaultDependencies + width: parent.width + + Repeater + { + width: parent.width + + delegate: Loader + { + sourceComponent: dependency_row + width: parent.width + property string name: model.name + property string description: model.description + property string license: model.license + property string url: model.url + property string version: "" + } + + model: ListModel + { + id: projectsModel + } + Component.onCompleted: + { + //Do NOT add dependencies of our dependencies here, nor CI-dependencies! + //UltiMaker's own projects and forks. + projectsModel.append({ name: "Cura", description: catalog.i18nc("@label Description for application component", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); + projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label Description for application component", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); + projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label Description for application component", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); + projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label Description for application component", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); + projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label Description for application component", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); + projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label Description for application component", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); + projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label Description for application component", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); + projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label Description for application component", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); + + //Direct dependencies of the front-end. + projectsModel.append({ name: "Python", description: catalog.i18nc("@label Description for application dependency", "Programming language"), license: "Python", url: "http://python.org/" }); + projectsModel.append({ name: "Qt6", description: catalog.i18nc("@label Description for application dependency", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); + projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label Description for application dependency", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); + projectsModel.append({ name: "SIP", description: catalog.i18nc("@label Description for application dependency", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); + projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label Description for application dependency", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); + projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); + + //CuraEngine's dependencies. + projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label Description for application dependency", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); + projectsModel.append({ name: "RapidJSON", description: catalog.i18nc("@label Description for application dependency", "JSON parser"), license: "MIT", url: "https://rapidjson.org/" }); + projectsModel.append({ name: "STB", description: catalog.i18nc("@label Description for application dependency", "Utility functions, including an image loader"), license: "Public Domain", url: "https://github.com/nothings/stb" }); + projectsModel.append({ name: "Boost", description: catalog.i18nc("@label Description for application dependency", "Utility library, including Voronoi generation"), license: "Boost", url: "https://www.boost.org/" }); + + //Python modules. + projectsModel.append({ name: "Certifi", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); + projectsModel.append({ name: "Cryptography", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); + projectsModel.append({ name: "Future", description: catalog.i18nc("@label Description for application dependency", "Compatibility between Python 2 and 3"), license: "MIT", url: "https://python-future.org/" }); + projectsModel.append({ name: "keyring", description: catalog.i18nc("@label Description for application dependency", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); + projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label Description for application dependency", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); + projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label Description for application dependency", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); + projectsModel.append({ name: "PyClipper", description: catalog.i18nc("@label Description for application dependency", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); + projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label Description for application dependency", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); + projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label Description for application dependency", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); + projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label Description for application dependency", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); + projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label Description for application dependency", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); + projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label Description for application dependency", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); + + //Building/packaging. + projectsModel.append({ name: "CMake", description: catalog.i18nc("@label Description for development tool", "Universal build system configuration"), license: "BSD 3-Clause", url: "https://cmake.org/" }); + projectsModel.append({ name: "Conan", description: catalog.i18nc("@label Description for development tool", "Dependency and package manager"), license: "MIT", url: "https://conan.io/" }); + projectsModel.append({ name: "Pyinstaller", description: catalog.i18nc("@label Description for development tool", "Packaging Python-applications"), license: "GPLv2", url: "https://pyinstaller.org/" }); + projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label Description for development tool", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); + projectsModel.append({ name: "NSIS", description: catalog.i18nc("@label Description for development tool", "Generating Windows installers"), license: "Zlib", url: "https://nsis.sourceforge.io/" }); + } + } + } + UM.Label { - text: model.license - elide: Text.ElideRight - width: (projectsList.width * 0.15) | 0 + visible: !showDefaultDependencies + text: "Conan Installs" + font: UM.Theme.getFont("large_bold") + } + + Column + { + visible: !showDefaultDependencies + width: parent.width + + Repeater + { + width: parent.width + model: Object + .entries(CuraApplication.conanInstalls) + .map(([name, { version }]) => ({ name, version })) + delegate: Loader + { + sourceComponent: dependency_row + width: parent.width + property string name: modelData.name + property string version: modelData.version + property string license: "" + property string url: "" + property string description: "" + } + } + } + + UM.Label + { + visible: !showDefaultDependencies + text: "Python Installs" + font: UM.Theme.getFont("large_bold") + } + + Column + { + width: parent.width + visible: !showDefaultDependencies + + Repeater + { + delegate: Loader + { + sourceComponent: dependency_row + width: parent.width + property string name: modelData.name + property string version: modelData.version + property string license: "" + property string url: "" + property string description: "" + } + width: parent.width + model: Object + .entries(CuraApplication.pythonInstalls) + .map(([name, { version }]) => ({ name, version })) + } } } - model: ListModel - { - id: projectsModel - } - Component.onCompleted: - { - //Do NOT add dependencies of our dependencies here, nor CI-dependencies! - //UltiMaker's own projects and forks. - projectsModel.append({ name: "Cura", description: catalog.i18nc("@label Description for application component", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); - projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label Description for application component", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); - projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label Description for application component", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); - projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label Description for application component", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); - projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label Description for application component", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); - projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label Description for application component", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); - projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label Description for application component", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); - projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label Description for application component", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); - - //Direct dependencies of the front-end. - projectsModel.append({ name: "Python", description: catalog.i18nc("@label Description for application dependency", "Programming language"), license: "Python", url: "http://python.org/" }); - projectsModel.append({ name: "Qt6", description: catalog.i18nc("@label Description for application dependency", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); - projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label Description for application dependency", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); - projectsModel.append({ name: "SIP", description: catalog.i18nc("@label Description for application dependency", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); - projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label Description for application dependency", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); - projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); - - //CuraEngine's dependencies. - projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label Description for application dependency", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); - projectsModel.append({ name: "RapidJSON", description: catalog.i18nc("@label Description for application dependency", "JSON parser"), license: "MIT", url: "https://rapidjson.org/" }); - projectsModel.append({ name: "STB", description: catalog.i18nc("@label Description for application dependency", "Utility functions, including an image loader"), license: "Public Domain", url: "https://github.com/nothings/stb" }); - projectsModel.append({ name: "Boost", description: catalog.i18nc("@label Description for application dependency", "Utility library, including Voronoi generation"), license: "Boost", url: "https://www.boost.org/" }); - - //Python modules. - projectsModel.append({ name: "Certifi", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); - projectsModel.append({ name: "Cryptography", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); - projectsModel.append({ name: "Future", description: catalog.i18nc("@label Description for application dependency", "Compatibility between Python 2 and 3"), license: "MIT", url: "https://python-future.org/" }); - projectsModel.append({ name: "keyring", description: catalog.i18nc("@label Description for application dependency", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); - projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label Description for application dependency", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); - projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label Description for application dependency", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); - projectsModel.append({ name: "PyClipper", description: catalog.i18nc("@label Description for application dependency", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); - projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label Description for application dependency", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); - projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label Description for application dependency", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); - projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label Description for application dependency", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); - projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label Description for application dependency", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); - projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label Description for application dependency", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); - - //Building/packaging. - projectsModel.append({ name: "CMake", description: catalog.i18nc("@label Description for development tool", "Universal build system configuration"), license: "BSD 3-Clause", url: "https://cmake.org/" }); - projectsModel.append({ name: "Conan", description: catalog.i18nc("@label Description for development tool", "Dependency and package manager"), license: "MIT", url: "https://conan.io/" }); - projectsModel.append({ name: "Pyinstaller", description: catalog.i18nc("@label Description for development tool", "Packaging Python-applications"), license: "GPLv2", url: "https://pyinstaller.org/" }); - projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label Description for development tool", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); - projectsModel.append({ name: "NSIS", description: catalog.i18nc("@label Description for development tool", "Generating Windows installers"), license: "Zlib", url: "https://nsis.sourceforge.io/" }); - } - } - - AboutDialogVersionsList{ - id: projectBuildInfoList - - } - - - onVisibleChanged: - { - projectsList.visible = true; - projectBuildInfoList.visible = false; } rightButtons: Cura.TertiaryButton { - //: Close about dialog button id: closeButton text: catalog.i18nc("@action:button", "Close") onClicked: reject() diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml index cac23d34c1..9ed5e5346e 100644 --- a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml +++ b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml @@ -14,7 +14,9 @@ UM.Dialog // This dialog asks the user whether he/she wants to open a project file as a project or import models. id: base - title: catalog.i18nc("@title:window", "Open project file") + title: base.is_ucp + ? catalog.i18nc("@title:window Don't translate 'Universal Cura Project'", "Open Universal Cura Project (UCP) file") + : catalog.i18nc("@title:window", "Open project file") width: UM.Theme.getSize("small_popup_dialog").width height: UM.Theme.getSize("small_popup_dialog").height backgroundColor: UM.Theme.getColor("main_background") @@ -24,10 +26,11 @@ UM.Dialog minimumHeight: maximumHeight minimumWidth: maximumWidth - modality: Qt.WindowModal + modality: Qt.ApplicationModal property var fileUrl property var addToRecent: true //Whether to add this file to the recent files list after reading it. + property bool is_ucp: false // load the entire project function loadProjectFile() { @@ -81,7 +84,9 @@ UM.Dialog { id: questionText width: parent.width - text: catalog.i18nc("@text:window", "This is a Cura project file. Would you like to open it as a project or import the models from it?") + text: base.is_ucp + ? catalog.i18nc("@text:window", "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?") + : catalog.i18nc("@text:window", "This is a Cura project file. Would you like to open it as a project or import the models from it?") wrapMode: Text.WordWrap } @@ -100,10 +105,18 @@ UM.Dialog rightButtons: [ + Cura.PrimaryButton + { + text: catalog.i18nc("@action:button", "Open as UCP") + iconSource: UM.Theme.getIcon("CuraShareIcon") + onClicked: loadProjectFile() + visible: base.is_ucp + }, Cura.PrimaryButton { text: catalog.i18nc("@action:button", "Open as project") onClicked: loadProjectFile() + visible: !base.is_ucp }, Cura.SecondaryButton { diff --git a/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml b/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml index 18891cebee..3639122280 100644 --- a/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml +++ b/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml @@ -22,7 +22,7 @@ UM.Dialog minimumHeight: height minimumWidth: width - modality: Qt.WindowModal + modality: Qt.ApplicationModal property var fileUrls: [] property var addToRecent: true diff --git a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml index a174959807..1eca2f395c 100644 --- a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml +++ b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml @@ -25,7 +25,7 @@ UM.Dialog function storeDontShowAgain() { UM.Preferences.setValue("cura/dialog_on_project_save", !dontShowAgainCheckbox.checked) - UM.Preferences.setValue("asked_dialog_on_project_save", true) + UM.Preferences.setValue("cura/asked_dialog_on_project_save", true) } onClosing: storeDontShowAgain() diff --git a/resources/qml/ExtruderIcon.qml b/resources/qml/ExtruderIcon.qml index 3231d924ee..bd15df7848 100644 --- a/resources/qml/ExtruderIcon.qml +++ b/resources/qml/ExtruderIcon.qml @@ -15,6 +15,7 @@ Item property int iconSize: UM.Theme.getSize("extruder_icon").width property string iconVariant: "medium" property alias font: extruderNumberText.font + property alias text: extruderNumberText.text implicitWidth: iconSize implicitHeight: iconSize diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index d1bf323e7d..7acba1e103 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -311,10 +311,11 @@ Item { id: warnings height: visible ? childrenRect.height : 0 - visible: buildplateCompatibilityError || buildplateCompatibilityWarning + visible: buildplateCompatibilityError || buildplateCompatibilityWarning || coreCompatibilityWarning property bool buildplateCompatibilityError: !Cura.MachineManager.variantBuildplateCompatible && !Cura.MachineManager.variantBuildplateUsable property bool buildplateCompatibilityWarning: Cura.MachineManager.variantBuildplateUsable + property bool coreCompatibilityWarning: !Cura.MachineManager.variantCoreUsableForFactor4 // This is a space holder aligning the warning messages. UM.Label @@ -336,7 +337,7 @@ Item width: UM.Theme.getSize("section_icon").width height: UM.Theme.getSize("section_icon").height color: UM.Theme.getColor("material_compatibility_warning") - visible: !Cura.MachineManager.isCurrentSetupSupported || warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning + visible: !Cura.MachineManager.isCurrentSetupSupported || warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning || warnings.coreCompatibilityWarning } UM.Label @@ -349,6 +350,17 @@ Item visible: CuraSDKVersion == "dev" ? false : warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning wrapMode: Text.WordWrap } + + UM.Label + { + id: coreCompatibilityLabel + anchors.left: warningImage.right + anchors.leftMargin: UM.Theme.getSize("default_margin").width + width: selectors.controlWidth - warningImage.width - UM.Theme.getSize("default_margin").width + text: catalog.i18nc("@label", "Combination not recommended. Load BB core to slot 1 (left) for better reliability.") + visible: warnings.coreCompatibilityWarning + wrapMode: Text.WordWrap + } } } } diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index 2de2795a74..1ab0a1332e 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -71,6 +71,7 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.reloadAll } Cura.MenuItem { action: Cura.Actions.resetAllTranslation } Cura.MenuItem { action: Cura.Actions.resetAll } + Cura.MenuItem { action: Cura.Actions.dropAll } // Group actions Cura.MenuSeparator {} @@ -78,6 +79,19 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.mergeObjects } Cura.MenuItem { action: Cura.Actions.unGroupObjects } + // Edit print sequence actions + Cura.MenuSeparator { visible: PrintOrderManager.shouldShowEditPrintOrderActions } + Cura.MenuItem + { + action: Cura.Actions.printObjectBeforePrevious + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } + Cura.MenuItem + { + action: Cura.Actions.printObjectAfterNext + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } + Connections { target: UM.Controller diff --git a/resources/qml/Menus/EditMenu.qml b/resources/qml/Menus/EditMenu.qml index 522c6b27d1..fdab70360e 100644 --- a/resources/qml/Menus/EditMenu.qml +++ b/resources/qml/Menus/EditMenu.qml @@ -21,8 +21,22 @@ Cura.Menu Cura.MenuItem { action: Cura.Actions.deleteAll } Cura.MenuItem { action: Cura.Actions.resetAllTranslation } Cura.MenuItem { action: Cura.Actions.resetAll } + Cura.MenuItem { action: Cura.Actions.dropAll } Cura.MenuSeparator { } Cura.MenuItem { action: Cura.Actions.groupObjects } Cura.MenuItem { action: Cura.Actions.mergeObjects } Cura.MenuItem { action: Cura.Actions.unGroupObjects } + + // Edit print sequence actions + Cura.MenuSeparator { visible: PrintOrderManager.shouldShowEditPrintOrderActions } + Cura.MenuItem + { + action: Cura.Actions.printObjectBeforePrevious + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } + Cura.MenuItem + { + action: Cura.Actions.printObjectAfterNext + visible: PrintOrderManager.shouldShowEditPrintOrderActions + } } \ No newline at end of file diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 0884053ef3..9589a9da34 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -47,8 +47,13 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled && saveProjectMenu.model.count == 1 onTriggered: { - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; - if(UM.Preferences.getValue("cura/dialog_on_project_save")) + const args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes":["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + }; + if (UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.args = args saveWorkspaceDialog.open() @@ -70,6 +75,14 @@ Cura.Menu enabled: UM.WorkspaceFileHandler.enabled } + Cura.MenuItem + { + id: saveUCPMenu + text: catalog.i18nc("@title:menu menubar:file Don't translate 'Universal Cura Project'", "&Save Universal Cura Project...") + enabled: UM.WorkspaceFileHandler.enabled && CuraApplication.getPackageManager().allEnabledPackages.includes("3MFWriter") + onTriggered: CuraApplication.exportUcp() + } + Cura.MenuSeparator { } Cura.MenuItem @@ -78,8 +91,11 @@ Cura.Menu text: catalog.i18nc("@title:menu menubar:file", "&Export...") onTriggered: { - var localDeviceId = "local_file" - UM.OutputDeviceManager.requestWriteToDevice(localDeviceId, PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) + const args = { + "filter_by_machine": false, + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + }; + UM.OutputDeviceManager.requestWriteToDevice("local_file", PrintInformation.jobName, args); } } @@ -89,7 +105,13 @@ Cura.Menu text: catalog.i18nc("@action:inmenu menubar:file", "Export Selection...") enabled: UM.Selection.hasSelection icon.name: "document-save-as" - onTriggered: UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, { "filter_by_machine": false, "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml"}) + onTriggered: { + const args = { + "filter_by_machine": false, + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + }; + UM.OutputDeviceManager.requestWriteSelectionToDevice("local_file", PrintInformation.jobName, args); + } } Cura.MenuSeparator { } diff --git a/resources/qml/Menus/MaterialMenu.qml b/resources/qml/Menus/MaterialMenu.qml index cee28cee6a..e4d4c37efe 100644 --- a/resources/qml/Menus/MaterialMenu.qml +++ b/resources/qml/Menus/MaterialMenu.qml @@ -76,6 +76,7 @@ Cura.Menu { id: genericMenu title: catalog.i18nc("@label:category menu label", "Generic") + enabled: genericMaterialsModel.items.length > 0 Instantiator { diff --git a/resources/qml/Menus/NozzleMenu.qml b/resources/qml/Menus/NozzleMenu.qml index f286410a11..a91f32a190 100644 --- a/resources/qml/Menus/NozzleMenu.qml +++ b/resources/qml/Menus/NozzleMenu.qml @@ -27,24 +27,17 @@ Cura.Menu { text: model.hotend_name checkable: true - property var activeMachine: Cura.MachineManager.activeMachine checked: { - if (activeMachine === null) - { - return false - } - var extruder = activeMachine.extruderList[extruderIndex] - return (extruder === undefined) ? false : (extruder.variant.name == model.hotend_name) + const extruder = Cura.MachineManager.activeMachineExtruders[extruderIndex]; + if (!extruder) return false; + return extruder.variant.name == model.hotend_name; } enabled: { - if (activeMachine === null) - { - return false - } - var extruder = activeMachine.extruderList[extruderIndex] - return (extruder === undefined) ? false : extruder.isEnabled + const extruder = Cura.MachineManager.activeMachineExtruders[extruderIndex]; + if (!extruder) return false; + return extruder.isEnabled; } onTriggered: Cura.MachineManager.setVariant(nozzleMenu.extruderIndex, model.container_node) } @@ -52,5 +45,4 @@ Cura.Menu onObjectAdded: function(index, object) { nozzleMenu.insertItem(index, object) } onObjectRemoved: function(index, object) {nozzleMenu.removeItem(object)} } - } diff --git a/resources/qml/Menus/SaveProjectMenu.qml b/resources/qml/Menus/SaveProjectMenu.qml index 2140d5e0ef..cd2b82daeb 100644 --- a/resources/qml/Menus/SaveProjectMenu.qml +++ b/resources/qml/Menus/SaveProjectMenu.qml @@ -28,7 +28,12 @@ Cura.Menu // Prevent shortcut triggering if the item is disabled! return } - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; + var args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + }; if (UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.deviceId = model.id diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 32bbcd5053..4cc87e9644 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -101,6 +101,7 @@ UM.PreferencesPage centerOnSelectCheckbox.checked = boolCheck(UM.Preferences.getValue("view/center_on_select")) UM.Preferences.resetPreference("view/invert_zoom"); invertZoomCheckbox.checked = boolCheck(UM.Preferences.getValue("view/invert_zoom")) + UM.Preferences.resetPreference("view/navigation_style"); UM.Preferences.resetPreference("view/zoom_to_mouse"); zoomToMouseCheckbox.checked = boolCheck(UM.Preferences.getValue("view/zoom_to_mouse")) //UM.Preferences.resetPreference("view/top_layer_count"); @@ -120,6 +121,13 @@ UM.PreferencesPage UM.Preferences.resetPreference("info/send_slice_info") sendDataCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_slice_info")) + + UM.Preferences.resetPreference("info/send_engine_crash") + sendEngineCrashCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_engine_crash")) + + UM.Preferences.resetPreference("info/anonymous_engine_crash_report") + sendEngineCrashCheckboxAnonymous.checked = boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) + UM.Preferences.resetPreference("info/automatic_update_check") checkUpdatesCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_update_check")) @@ -502,11 +510,13 @@ UM.PreferencesPage id: dropDownCheckbox text: catalog.i18nc("@option:check", "Automatically drop models to the build plate") checked: boolCheck(UM.Preferences.getValue("physics/automatic_drop_down")) - onCheckedChanged: UM.Preferences.setValue("physics/automatic_drop_down", checked) + onCheckedChanged: + { + UM.Preferences.setValue("physics/automatic_drop_down", checked) + } } } - UM.TooltipArea { width: childrenRect.width; @@ -604,6 +614,55 @@ UM.PreferencesPage } } + UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: catalog.i18nc("@info:tooltip", "What type of camera navigation should be used?") + Column + { + spacing: UM.Theme.getSize("narrow_margin").height + + UM.Label + { + text: catalog.i18nc("@window:text", "Camera navigation:") + } + ListModel + { + id: navigationStylesList + Component.onCompleted: + { + append({ text: "Cura", code: "cura" }) + append({ text: catalog.i18n("FreeCAD trackpad"), code: "freecad_trackpad" }) + } + } + + Cura.ComboBox + { + id: cameraNavigationComboBox + + model: navigationStylesList + textRole: "text" + width: UM.Theme.getSize("combobox").width + height: UM.Theme.getSize("combobox").height + + currentIndex: + { + var code = UM.Preferences.getValue("view/navigation_style"); + for(var i = 0; i < comboBoxList.count; ++i) + { + if(model.get(i).code == code) + { + return i + } + } + return 0 + } + onActivated: UM.Preferences.setValue("view/navigation_style", model.get(index).code) + } + } + } + Item { //: Spacer @@ -620,6 +679,8 @@ UM.PreferencesPage UM.TooltipArea { width: childrenRect.width + // Mac only allows applications to run as a single instance, so providing the option for this os doesn't make much sense + visible: Qt.platform.os !== "osx" height: childrenRect.height text: catalog.i18nc("@info:tooltip","Should opening files from the desktop or external applications open in the same instance of Cura?") @@ -855,6 +916,63 @@ UM.PreferencesPage font: UM.Theme.getFont("medium_bold") text: catalog.i18nc("@label", "Privacy") } + + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission.") + + UM.CheckBox + { + id: sendEngineCrashCheckbox + text: catalog.i18nc("@option:check","Send engine crash reports") + checked: boolCheck(UM.Preferences.getValue("info/send_engine_crash")) + onCheckedChanged: UM.Preferences.setValue("info/send_engine_crash", checked) + } + } + + ButtonGroup + { + id: curaCrashGroup + buttons: [sendEngineCrashCheckboxAnonymous, sendEngineCrashCheckboxUser] + } + + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "Send crash reports without any personally identifiable information or models data to UltiMaker.") + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + Cura.RadioButton + { + id: sendEngineCrashCheckboxAnonymous + text: catalog.i18nc("@option:radio", "Anonymous crash reports") + enabled: sendEngineCrashCheckbox.checked && Cura.API.account.isLoggedIn + checked: boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) + onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", true) + } + } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: Cura.API.account.isLoggedIn ? + catalog.i18nc("@info:tooltip", "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send.") : + catalog.i18nc("@info:tooltip", "Please sign in to your UltiMaker account to allow sending non-anonymous data.") + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + Cura.RadioButton + { + id: sendEngineCrashCheckboxUser + text: catalog.i18nc("@option:radio", "Include UltiMaker account name") + enabled: sendEngineCrashCheckbox.checked && Cura.API.account.isLoggedIn + checked: !boolCheck(UM.Preferences.getValue("info/anonymous_engine_crash_report")) && Cura.API.account.isLoggedIn + onClicked: UM.Preferences.setValue("info/anonymous_engine_crash_report", false) + } + } + UM.TooltipArea { width: childrenRect.width diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index fb98cb59c5..1e287e74a0 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -58,10 +58,11 @@ UM.ManagementPage anchors.fill: parent spacing: UM.Theme.getSize("default_margin").height + Repeater { id: machineActionRepeater - model: base.currentItem ? Cura.MachineActionManager.getSupportedActions(Cura.MachineManager.getDefinitionByMachineId(base.currentItem.id)) : null + model: base.currentItem ? CuraApplication.getSupportedActionMachineList(base.currentItem.id) : null Item { diff --git a/resources/qml/Preferences/SettingVisibilityPage.qml b/resources/qml/Preferences/SettingVisibilityPage.qml index 476ba999cf..8743999fe2 100644 --- a/resources/qml/Preferences/SettingVisibilityPage.qml +++ b/resources/qml/Preferences/SettingVisibilityPage.qml @@ -123,7 +123,7 @@ UM.PreferencesPage var idx = -1; for(var i = 0; i < settingVisibilityPresetsModel.items.length; ++i) { - if(settingVisibilityPresetsModel.items[i].presetId == settingVisibilityPresetsModel.activePreset) + if(settingVisibilityPresetsModel.items[i].presetId === settingVisibilityPresetsModel.activePreset) { idx = i; break; @@ -159,7 +159,7 @@ UM.PreferencesPage id: definitionsModel containerId: Cura.MachineManager.activeMachine != null ? Cura.MachineManager.activeMachine.definition.id: "" showAll: true - exclude: ["machine_settings", "command_line_settings"] + exclude: ["machine_settings", "command_line_settings", "ppr"] showAncestors: true expanded: ["*"] visibilityHandler: UM.SettingPreferenceVisibilityHandler {} @@ -173,13 +173,13 @@ UM.PreferencesPage id: loader width: settingsListView.width - scrollBar.width - height: model.type != undefined ? UM.Theme.getSize("section").height : 0 + height: model.type !== undefined ? UM.Theme.getSize("section").height : 0 property var definition: model property var settingDefinitionsModel: definitionsModel asynchronous: true - active: model.type != undefined + active: model.type !== undefined sourceComponent: { switch (model.type) diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index adb004298d..cda7bb743b 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -129,11 +129,9 @@ ScrollView { id: bedTemperature containerStack: Cura.MachineManager.activeMachine - key: "material_bed_temperature" + key: "material_bed_temperature_layer_0" watchedProperties: ["value", "minimum_value", "maximum_value", "resolve"] storeIndex: 0 - - property var resolve: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine ? properties.resolve : "None" } UM.SettingPropertyProvider diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index 41ab40eb31..94e7a93442 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -160,7 +160,6 @@ Item ProfileWarningReset { id: profileWarningReset - width: childrenRect.width anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter fullWarning: false diff --git a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml index 646e835cb2..9facc5095e 100644 --- a/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml +++ b/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml @@ -187,7 +187,7 @@ Popup //Add all the custom profiles. Repeater { - model: Cura.CustomQualityProfilesDropDownMenuModel + model: CuraApplication.getCustomQualityProfilesDropDownMenuModel() MenuButton { onClicked: Cura.MachineManager.setQualityChangesGroup(model.quality_changes_group) diff --git a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml index c44fcc8cc2..bf4385446d 100644 --- a/resources/qml/PrintSetupSelector/ProfileWarningReset.qml +++ b/resources/qml/PrintSetupSelector/ProfileWarningReset.qml @@ -11,7 +11,7 @@ import "../Dialogs" Item { property bool fullWarning: true // <- Can you see the warning icon and the text, or is it just the buttons? - + property var simpleModeSettingsManager :CuraApplication.getSimpleModeSettingsManager() height: visible ? UM.Theme.getSize("action_button_icon").height : 0 width: visible ? childrenRect.width: 0 visible: Cura.MachineManager.hasUserSettings || (fullWarning && Cura.MachineManager.hasCustomQuality) @@ -96,7 +96,7 @@ Item State { name: "custom settings changed" - when: Cura.SimpleModeSettingsManager.isProfileCustomized + when: simpleModeSettingsManager.isProfileCustomized PropertyChanges { target: warning diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml index 37478781ca..1bbc726b9d 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml @@ -84,6 +84,7 @@ Rectangle visible: icon === "" && custom_icon === "" border.width: UM.Theme.getSize("thick_lining").width border.color: UM.Theme.getColor("text") + color: "transparent" UM.Label { diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 16f1e7cccd..254ba477bf 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -34,6 +34,15 @@ RecommendedSettingSection storeIndex: 0 } + UM.SettingPropertyProvider + { + id: supportExtruderProvider + key: "support_extruder_nr" + containerStack: Cura.MachineManager.activeMachine + watchedProperties: [ "value" ] + storeIndex: 0 + } + contents: [ RecommendedSettingItem { @@ -47,6 +56,8 @@ RecommendedSettingSection width: parent.width settingName: "support_structure" propertyRemoveUnusedValue: false + updateAllExtruders: false + defaultExtruderIndex: supportExtruderProvider.properties.value } }, RecommendedSettingItem @@ -62,7 +73,12 @@ RecommendedSettingSection settingControl: Cura.SingleSettingExtruderSelectorBar { extruderSettingName: "support_extruder_nr" - onSelectedIndexChanged: support.forceUpdateSettings() + onSelectedIndexChanged: + { + support.updateAllExtruders = true + support.forceUpdateSettings() + support.updateAllExtruders = false + } } }, RecommendedSettingItem @@ -75,6 +91,8 @@ RecommendedSettingSection { width: parent.width settingName: "support_type" + updateAllExtruders: true + defaultExtruderIndex: supportExtruderProvider.properties.value } } ] diff --git a/resources/qml/PrinterOutput/ExtruderBox.qml b/resources/qml/PrinterOutput/ExtruderBox.qml index e567d5d4cb..d6ce75a15a 100644 --- a/resources/qml/PrinterOutput/ExtruderBox.qml +++ b/resources/qml/PrinterOutput/ExtruderBox.qml @@ -22,11 +22,9 @@ Item { id: extruderTemperature containerStackId: Cura.ExtruderManager.extruderIds[position] - key: "material_print_temperature" + key: "material_print_temperature_layer_0" watchedProperties: ["value", "minimum_value", "maximum_value", "resolve"] storeIndex: 0 - - property var resolve: Cura.MachineManager.activeStack != Cura.MachineManager.activeMachine ? properties.resolve : "None" } Rectangle diff --git a/resources/qml/PrinterOutput/HeatedBedBox.qml b/resources/qml/PrinterOutput/HeatedBedBox.qml index 172606c56d..5323072567 100644 --- a/resources/qml/PrinterOutput/HeatedBedBox.qml +++ b/resources/qml/PrinterOutput/HeatedBedBox.qml @@ -199,17 +199,7 @@ Item { return ""; } - if ((bedTemperature.resolve != "None" && bedTemperature.resolve) && (bedTemperature.stackLevels[0] != 0) && (bedTemperature.stackLevels[0] != 1)) - { - // We have a resolve function. Indicates that the setting is not settable per extruder and that - // we have to choose between the resolved value (default) and the global value - // (if user has explicitly set this). - return bedTemperature.resolve; - } - else - { - return bedTemperature.properties.value; - } + return bedTemperature.properties.value; } } } diff --git a/resources/qml/PrinterSelector/MachineSelector.qml b/resources/qml/PrinterSelector/MachineSelector.qml index b8b27049f6..1bad1d70bc 100644 --- a/resources/qml/PrinterSelector/MachineSelector.qml +++ b/resources/qml/PrinterSelector/MachineSelector.qml @@ -11,7 +11,7 @@ Cura.ExpandablePopup { id: machineSelector - property Cura.MachineManager machineManager + property var machineManager: Cura.MachineManager property bool isNetworkPrinter: machineManager.activeMachineHasNetworkConnection property bool isConnectedCloudPrinter: machineManager.activeMachineHasCloudConnection property bool isCloudRegistered: machineManager.activeMachineHasCloudRegistration @@ -107,6 +107,7 @@ Cura.ExpandablePopup { return UM.Theme.getIcon("Printer", "medium") } + else { return "" diff --git a/resources/qml/PrinterSelector/PrintSelectorCard.qml b/resources/qml/PrinterSelector/PrintSelectorCard.qml index efcbe07c87..1c3e78adbf 100644 --- a/resources/qml/PrinterSelector/PrintSelectorCard.qml +++ b/resources/qml/PrinterSelector/PrintSelectorCard.qml @@ -79,7 +79,7 @@ Rectangle anchors.verticalCenter: extruderIcon.verticalCenter anchors.left: extruderIcon.right anchors.leftMargin: UM.Theme.getSize("default_margin").width - text: modelData.core + text: modelData ? (modelData.core ? modelData.core : "" ) : "" font: UM.Theme.getFont("default_bold") } diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index d8e90e4951..f49b688c18 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -223,7 +223,7 @@ SettingItem cursorShape: Qt.IBeamCursor - onPressed: { + onPressed:(mouse)=> { if (!input.activeFocus) { base.focusGainedByClick = true diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index fd48ef7448..81f6c5d682 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -203,7 +203,7 @@ Item x: UM.Theme.getSize("default_margin").width y: UM.Theme.getSize("default_margin").height - source: UM.ActiveTool.valid ? UM.ActiveTool.activeToolPanel : "" + source: UM.Controller.valid ? UM.Controller.activeToolPanel : "" enabled: UM.Controller.toolsEnabled } } @@ -222,7 +222,7 @@ Item UM.Label { id: toolHint - text: UM.ActiveTool.properties.getValue("ToolHint") != undefined ? UM.ActiveTool.properties.getValue("ToolHint") : "" + text: UM.Controller.properties.getValue("ToolHint") != undefined ? UM.Controller.properties.getValue("ToolHint") : "" color: UM.Theme.getColor("tooltip_text") anchors.horizontalCenter: parent.horizontalCenter } diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index eb19e5234e..7f311b7187 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -15,7 +15,7 @@ import Cura 1.1 as Cura Item { id: base - + property bool hasSearchFilter: false // The currently selected machine item in the local machine list. property var currentItem: machineList.currentIndex >= 0 ? machineList.model.getItem(machineList.currentIndex) : null // The currently active (expanded) section/category, where section/category is the grouping of local machine items. @@ -32,7 +32,7 @@ Item onCurrentItemChanged: { - printerName = currentItem == null ? "" : currentItem.name + printerName = currentItem && currentItem.name? currentItem.name: "" } function updateCurrentItemUponSectionChange(section) @@ -43,25 +43,28 @@ Item const item = machineList.model.getItem(i); if (item.section == section) { - machineList.currentIndex = i; + updateCurrentItem(i) break; } } } - function getMachineName() + function updateCurrentItem(index) { - return machineList.model.getItem(machineList.currentIndex) != undefined ? machineList.model.getItem(machineList.currentIndex).name : ""; - } - - function getMachineMetaDataEntry(key) - { - var metadata = machineList.model.getItem(machineList.currentIndex) != undefined ? machineList.model.getItem(machineList.currentIndex).metadata : undefined; - if (metadata) + machineList.currentIndex = index; + currentItem = machineList.model.getItem(index); + if (currentItem && currentItem.name) { - return metadata[key]; + machineName.text = currentItem.name + manufacturer.text = currentItem.metadata["manufacturer"] + author.text = currentItem.metadata["author"] + } + else + { + machineName.text = "No printers Found" + manufacturer.text = "" + author.text = "" } - return undefined; } Component.onCompleted: @@ -78,98 +81,204 @@ Item id: localPrinterSelectionItem anchors.fill: parent - //Selecting a local printer to add from this list. - ListView + Column { - id: machineList + id: root width: Math.floor(parent.width * 0.48) height: parent.height - - clip: true - ScrollBar.vertical: UM.ScrollBar {} - - model: UM.DefinitionContainersModel + Item { - id: machineDefinitionsModel - filter: { "visible": true } - sectionProperty: "manufacturer" - preferredSections: preferredCategories - } - - section.property: "section" - section.delegate: Button - { - id: button - width: machineList.width - height: UM.Theme.getSize("action_button").height - text: section - - property bool isActive: base.currentSections.has(section) - - background: Rectangle + width: root.width + height: filter.height + Cura.TextField { - anchors.fill: parent - color: isActive ? UM.Theme.getColor("setting_control_highlight") : "transparent" - } - - contentItem: Item - { - width: childrenRect.width - height: UM.Theme.getSize("action_button").height + id: filter + width: parent.width + implicitHeight: parent.height + background: Rectangle { + id: background + color: UM.Theme.getColor("main_background") + radius: UM.Theme.getSize("default_radius").width + border.color: UM.Theme.getColor("primary_button") + } + height: UM.Theme.getSize("small_button_icon").height * 2 + placeholderText: catalog.i18nc("@label:textbox", "Search Printer") + placeholderTextColor: UM.Theme.getColor("primary_button") + font: UM.Theme.getFont("medium_italic") + leftPadding: searchIcon.width + UM.Theme.getSize("default_margin").width * 2 UM.ColorImage { - id: arrow - anchors.left: parent.left - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height + id: searchIcon + source: UM.Theme.getIcon("Magnifier") + anchors + { + verticalCenter: parent.verticalCenter + left: parent.left + leftMargin: UM.Theme.getSize("default_margin").width + } + height: UM.Theme.getSize("small_button_icon").height + width: height color: UM.Theme.getColor("text") - source: isActive ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") } - UM.Label + onTextChanged: editingFinished() + onEditingFinished: { - id: label - anchors.left: arrow.right - anchors.leftMargin: UM.Theme.getSize("default_margin").width - text: button.text - font: UM.Theme.getFont("default_bold") + machineDefinitionsModel.filter = {"name" : "*" + text.toLowerCase() + "*", "visible": true} + base.hasSearchFilter = (text.length > 0) + updateDefinitionModel() + } + + Keys.onEscapePressed: filter.text = "" + function updateDefinitionModel() + { + if (base.hasSearchFilter) + { + base.currentSections.clear() + for (var i = 0; i < machineDefinitionsModel.count; i++) + { + var sectionexpanded = machineDefinitionsModel.getItem(i)["section"] + if (!base.currentSections.has(sectionexpanded)) + { + base.currentSections.add(sectionexpanded); + } + } + base.updateCurrentItem(0) + + // Trigger update on base.currentSections + base.currentSections = base.currentSections; + } + else + { + const initialSection = "Ultimaker B.V."; + base.currentSections.clear(); + base.currentSections.add(initialSection); + updateCurrentItemUponSectionChange(initialSection); + updateCurrentItem(0) + // Trigger update on base.currentSections + base.currentSections = base.currentSections; + } + } } - onClicked: + UM.SimpleButton { - if (base.currentSections.has(section)) + id: clearFilterButton + iconSource: UM.Theme.getIcon("Cancel") + visible: base.hasSearchFilter + + height: Math.round(filter.height * 0.5) + width: visible ? height : 0 + + anchors.verticalCenter: filter.verticalCenter + anchors.right: filter.right + anchors.rightMargin: UM.Theme.getSize("default_margin").width + + color: UM.Theme.getColor("setting_control_button") + hoverColor: UM.Theme.getColor("setting_control_button_hover") + + onClicked: { - base.currentSections.delete(section); + filter.text = "" + filter.forceActiveFocus() } - else - { - base.currentSections.add(section); - base.updateCurrentItemUponSectionChange(section); - } - // Trigger update on base.currentSections - base.currentSections = base.currentSections; } } - delegate: Cura.RadioButton + //Selecting a local printer to add from this list. + ListView { - id: radioButton - anchors + id: machineList + width: root.width + height: root.height - filter.height + clip: true + ScrollBar.vertical: UM.ScrollBar {} + + model: UM.DefinitionContainersModel { - left: parent !== null ? parent.left : undefined - leftMargin: UM.Theme.getSize("standard_list_lineheight").width - - right: parent !== null ? parent.right : undefined - rightMargin: UM.Theme.getSize("default_margin").width + id: machineDefinitionsModel + filter: { "visible": true } + sectionProperty: "manufacturer" + preferredSections: preferredCategories } - height: visible ? UM.Theme.getSize("standard_list_lineheight").height : 0 //This causes the scrollbar to vary in length due to QTBUG-76830. - checked: machineList.currentIndex == index - text: name - visible: base.currentSections.has(section) - onClicked: machineList.currentIndex = index + section.property: "section" + section.delegate: Button + { + id: button + width: machineList.width + height: UM.Theme.getSize("action_button").height + text: section + + property bool isActive: base.currentSections.has(section) + + background: Rectangle + { + anchors.fill: parent + color: isActive ? UM.Theme.getColor("setting_control_highlight") : "transparent" + } + + contentItem: Item + { + width: childrenRect.width + height: UM.Theme.getSize("action_button").height + + UM.ColorImage + { + id: arrow + anchors.left: parent.left + width: UM.Theme.getSize("standard_arrow").width + height: UM.Theme.getSize("standard_arrow").height + color: UM.Theme.getColor("text") + source: isActive ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight") + } + + UM.Label + { + id: label + anchors.left: arrow.right + anchors.leftMargin: UM.Theme.getSize("default_margin").width + text: button.text + font: UM.Theme.getFont("default_bold") + } + } + + onClicked: + { + if (base.currentSections.has(section)) + { + base.currentSections.delete(section); + } + else + { + base.currentSections.add(section); + base.updateCurrentItemUponSectionChange(section); + } + // Trigger update on base.currentSections + base.currentSections = base.currentSections; + } + } + + delegate: Cura.RadioButton + { + id: radioButton + anchors + { + left: parent !== null ? parent.left : undefined + leftMargin: UM.Theme.getSize("standard_list_lineheight").width + + right: parent !== null ? parent.right : undefined + rightMargin: UM.Theme.getSize("default_margin").width + } + height: visible ? UM.Theme.getSize("standard_list_lineheight").height : 0 //This causes the scrollbar to vary in length due to QTBUG-76830. + + checked: machineList.currentIndex == index + text: name + visible: base.currentSections.has(section) + onClicked: base.updateCurrentItem(index) + } } } @@ -193,8 +302,8 @@ Item UM.Label { + id: machineName width: parent.width - (2 * UM.Theme.getSize("default_margin").width) - text: base.getMachineName() color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") elide: Text.ElideRight @@ -215,7 +324,7 @@ Item } UM.Label { - text: base.getMachineMetaDataEntry("manufacturer") + id: manufacturer width: parent.width - manufacturerLabel.width wrapMode: Text.WordWrap } @@ -226,7 +335,7 @@ Item } UM.Label { - text: base.getMachineMetaDataEntry("author") + id: author width: parent.width - profileAuthorLabel.width wrapMode: Text.WordWrap } diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml index ff87a72330..0c9b7d4f7f 100644 --- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml +++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml @@ -133,7 +133,7 @@ Control text = catalog.i18nc("@button", "Waiting for new printers") busy = true; enabled = false; - Cura.API.account.login(); + Cura.API.account.isLoggedIn? Cura.API.account.sync():Cura.API.account.login(); } } } diff --git a/resources/qml/Widgets/SingleSettingComboBox.qml b/resources/qml/Widgets/SingleSettingComboBox.qml index fa150894f8..d917dc2753 100644 --- a/resources/qml/Widgets/SingleSettingComboBox.qml +++ b/resources/qml/Widgets/SingleSettingComboBox.qml @@ -28,7 +28,7 @@ Cura.ComboBox { id: comboboxModel // The propertyProvider has not loaded the setting when this components onComplete triggers. Populating the model - // is defered until propertyProvider signals "onIsValueUsedChanged". The defered upate is triggered with this function. + // is deferred until propertyProvider signals "onIsValueUsedChanged". The deferred update is triggered with this function. function updateModel() { clear() @@ -68,7 +68,8 @@ Cura.ComboBox { { id: propertyProvider containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id - watchedProperties: ["value" , "options"] + removeUnusedValue: false + watchedProperties: ["value", "validationState", "resolve", "options"] } Connections diff --git a/resources/qml/Widgets/SingleSettingSlider.qml b/resources/qml/Widgets/SingleSettingSlider.qml index aac204970e..638688186a 100644 --- a/resources/qml/Widgets/SingleSettingSlider.qml +++ b/resources/qml/Widgets/SingleSettingSlider.qml @@ -34,7 +34,8 @@ UM.Slider { id: propertyProvider containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id - watchedProperties: ["value"] + watchedProperties: ["value", "validationState", "resolve"] + removeUnusedValue: false storeIndex: 0 } diff --git a/resources/qml/Widgets/SingleSettingTextField.qml b/resources/qml/Widgets/SingleSettingTextField.qml index 22c080ebf4..35bd6d1064 100644 --- a/resources/qml/Widgets/SingleSettingTextField.qml +++ b/resources/qml/Widgets/SingleSettingTextField.qml @@ -53,6 +53,7 @@ UM.TextField { id: propertyProvider watchedProperties: ["value", "validationState", "resolve"] + removeUnusedValue: false containerStackId: updateAllExtruders ? Cura.ExtruderManager.extruderIds[defaultExtruderIndex] : Cura.MachineManager.activeMachine.id } diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index 0f079c315f..b81f16ec61 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index f4da80ded9..d0c7219857 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 @@ -14,7 +14,7 @@ weight = 0 [values] adhesion_type = brim brim_line_count = 14 -brim_outside_only = True +brim_location = outside brim_width = 8 connect_infill_polygons = True cool_fan_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index a052562cd3..1e9a2e43f5 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 @@ -14,7 +14,7 @@ weight = 0 [values] adhesion_type = brim brim_line_count = 14 -brim_outside_only = True +brim_location = outside brim_width = 8 connect_infill_polygons = True cool_fan_enabled = True diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 145cd34ead..a6640512a3 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index e6e2cb78a0..5be2675226 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index 56587fe883..cf8577fdd9 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index 10353f6110..ef2a78edca 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 910acc73e5..9acf14f593 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index aea37fb13f..f293b9f43a 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 8f5ac4aa33..3af1a557a5 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index 032d1b817e..8264717b80 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index 6380dc18ef..d210d49036 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index c357652157..e1ce9538fb 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index c235e36996..09cebca9c2 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index b3b5295366..af29995363 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index aab42f4f4c..2bc6d4ef85 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg index 0570c1cd40..653fe51985 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg index 2aac68b60c..b51b9ab357 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg index 5c2193dacf..144d56eca6 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg new file mode 100644 index 0000000000..eb8725bc6d --- /dev/null +++ b/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg @@ -0,0 +1,76 @@ +[general] +definition = ankermake_m5c +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 23 +type = quality +weight = -2 + +[values] +acceleration_enabled = true +acceleration_infill = 5000 +acceleration_layer_0 = 2500 +acceleration_prime_tower = 5000 +acceleration_print = 5000 +acceleration_print_layer_0 = 2500 +acceleration_roofing = 2500 +acceleration_skirt_brim = 2500 +acceleration_support = 5000 +acceleration_support_bottom = 5000 +acceleration_support_infill = 5000 +acceleration_support_interface = 5000 +acceleration_support_roof = 5000 +acceleration_topbottom = 2500 +acceleration_travel = 5000 +acceleration_travel_layer_0 = 2500 +acceleration_wall = 5000 +acceleration_wall_0 = 3000 +acceleration_wall_x = 5000 +jerk_enabled = true +jerk_infill = 15 +jerk_layer_0 = 15 +jerk_prime_tower = 15 +jerk_print = 15 +jerk_print_layer_0 = 15 +jerk_roofing = 15 +jerk_skirt_brim = 15 +jerk_support = 15 +jerk_support_bottom = 15 +jerk_support_infill = 15 +jerk_support_interface = 15 +jerk_support_roof = 15 +jerk_topbottom = 15 +jerk_travel = 15 +jerk_travel_layer_0 = 15 +jerk_wall = 15 +jerk_wall_0 = 15 +jerk_wall_x = 15 +layer_height = 0.25 +layer_height_0 = 0.14 +skirt_brim_speed = 50 +speed_equalize_flow_enabled = false +speed_equalize_flow_max = 300 +speed_infill = 270 +speed_layer_0 = 50 +speed_prime_tower = 500 +speed_print = 500 +speed_print_layer_0 = 50 +speed_roofing = 150 +speed_slowdown_layers = 2 +speed_support = 250 +speed_support_bottom = 166.667 +speed_support_infill = 250 +speed_support_interface = 166.667 +speed_support_roof = 166.667 +speed_topbottom = 150 +speed_travel = 500 +speed_travel_layer_0 = 150 +speed_wall = 250 +speed_wall_0 = 150 +speed_wall_x = 250 +speed_z_hop = 10 + diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg new file mode 100644 index 0000000000..d3e14088bd --- /dev/null +++ b/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg @@ -0,0 +1,94 @@ +[general] +definition = ankermake_m5c +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 23 +type = quality +weight = 0 + +[values] +acceleration_infill = 2500 +acceleration_layer_0 = 2500 +acceleration_prime_tower = 2500 +acceleration_print = 2500 +acceleration_print_layer_0 = 2500 +acceleration_roofing = 2500 +acceleration_skirt_brim = 2500 +acceleration_support = 2500 +acceleration_support_bottom = 2500 +acceleration_support_infill = 2500 +acceleration_support_interface = 2500 +acceleration_support_roof = 2500 +acceleration_topbottom = 2500 +acceleration_travel = 2500 +acceleration_travel_layer_0 = 2500 +acceleration_wall = 2500 +acceleration_wall_0 = 2500 +acceleration_wall_x = 2500 +bottom_layers = 4 +infill_line_width = 0.40 +initial_layer_line_width_factor = 100 +jerk_enabled = true +jerk_infill = 10 +jerk_layer_0 = 10 +jerk_prime_tower = 10 +jerk_print = 10 +jerk_print_layer_0 = 10 +jerk_roofing = 10 +jerk_skirt_brim = 10 +jerk_support = 10 +jerk_support_bottom = 10 +jerk_support_infill = 10 +jerk_support_interface = 10 +jerk_support_roof = 10 +jerk_topbottom = 10 +jerk_travel = 10 +jerk_travel_layer_0 = 10 +jerk_wall = 10 +jerk_wall_0 = 8 +jerk_wall_x = 8 +layer_height = 0.2 +layer_height_0 = 0.14 +line_width = 0.40 +min_wall_line_width = 0.10 +prime_tower_line_width = 0.40 +skin_line_width = 0.40 +skirt_brim_line_width = 0.40 +skirt_brim_speed = 50 +speed_infill = 250 +speed_layer_0 = 50 +speed_prime_tower = 250 +speed_print = 250 +speed_print_layer_0 = 50 +speed_roofing = 150 +speed_support = 150 +speed_support_bottom = 100 +speed_support_infill = 150 +speed_support_interface = 100 +speed_support_roof = 100 +speed_topbottom = 150 +speed_travel = 250 +speed_travel_layer_0 = 50 +speed_wall = 150 +speed_wall_0 = 150 +speed_wall_x = 250 +support_bottom_line_width = 0.40 +support_interface_line_width = 0.40 +support_line_width = 0.40 +support_roof_line_width = 0.40 +top_layers = 4 +wall_0_extruder_nr = -1 +wall_0_inset = 0 +wall_0_wipe_dist = 0.20 +wall_extruder_nr = -1 +wall_line_count = 3 +wall_line_width = 0.40 +wall_line_width_0 = 0.44 +wall_line_width_x = 0.40 +wall_thickness = 1.24 +wall_x_extruder_nr = -1 + diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg new file mode 100644 index 0000000000..f615a7aaa4 --- /dev/null +++ b/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg @@ -0,0 +1,98 @@ +[general] +definition = ankermake_m5c +name = Precision +version = 4 + +[metadata] +global_quality = True +quality_type = precision +setting_version = 23 +type = quality +weight = 1 + +[values] +acceleration_enabled = true +acceleration_infill = 4000 +acceleration_layer_0 = 2500 +acceleration_prime_tower = 4000 +acceleration_print = 4000 +acceleration_print_layer_0 = 2500 +acceleration_roofing = 1000 +acceleration_skirt_brim = 2500 +acceleration_support = 4000 +acceleration_support_bottom = 4000 +acceleration_support_infill = 4000 +acceleration_support_interface = 4000 +acceleration_support_roof = 4000 +acceleration_topbottom = 2500 +acceleration_travel = 4000 +acceleration_travel_layer_0 = 2500 +acceleration_wall = 4000 +acceleration_wall_0 = 3000 +acceleration_wall_x = 3000 +bottom_layers = 3 +infill_line_width = 0.30 +initial_layer_line_width_factor = 100 +jerk_enabled = true +jerk_infill = 8 +jerk_layer_0 = 8 +jerk_prime_tower = 8 +jerk_print = 8 +jerk_print_layer_0 = 8 +jerk_roofing = 8 +jerk_skirt_brim = 8 +jerk_support = 8 +jerk_support_bottom = 8 +jerk_support_infill = 8 +jerk_support_interface = 8 +jerk_support_roof = 8 +jerk_topbottom = 8 +jerk_travel = 8 +jerk_travel_layer_0 = 8 +jerk_wall = 8 +jerk_wall_0 = 8 +jerk_wall_x = 8 +layer_height = 0.16 +layer_height_0 = 0.14 +line_width = 0.40 +prime_tower_line_width = 0.40 +skin_line_width = 0.40 +skirt_brim_line_width = 0.40 +skirt_brim_speed = 50 +speed_equalize_flow_enabled = false +speed_equalize_flow_max = 300 +speed_infill = 250 +speed_layer_0 = 150 +speed_prime_tower = 250 +speed_print = 500 +speed_print_layer_0 = 50 +speed_roofing = 50 +speed_slowdown_layers = 2 +speed_support = 150 +speed_support_bottom = 100 +speed_support_infill = 150 +speed_support_interface = 100 +speed_support_roof = 100 +speed_topbottom = 150 +speed_travel = 500 +speed_travel_layer_0 = 150 +speed_wall = 250 +speed_wall_0 = 150 +speed_wall_x = 200 +speed_z_hop = 10 +support_bottom_line_width = 0.40 +support_interface_line_width = 0.40 +support_line_width = 0.40 +support_roof_line_width = 0.40 +top_layers = 5 +wall_0_extruder_nr = -1 +wall_0_inset = 0 +wall_0_wipe_dist = 0.20 +wall_extruder_nr = -1 +wall_line_count = 2 +wall_line_width = 0.40 +wall_line_width_0 = 0.40 +wall_line_width_x = 0.40 +wall_thickness = 0.84 +wall_x_extruder_nr = -1 + diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index 7100f73522..10e78081b9 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 07acba4e3d..9e4aee0e44 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index 53f1785709..32d10397bc 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 42b5ce116d..1a1b8572bb 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index 0565f91e05..af3b74fc0c 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 003f787aac..18c0acaf01 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index c1e54314ba..a100908a53 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 0f0fa7e70d..41fc5c20ae 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 8ae13498b4..898c3e131a 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index 06ff5899b6..be43f63425 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 20890528ae..9d8b7c9919 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index f09dd654b8..b57341f9a2 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index 44c435f79a..e358bb9e17 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index 3e35582b03..8663045149 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index df146144ca..8e3d3abc54 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index 662e3cc7c4..c9de15f792 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index bcf355d7f4..1b8db2a1e0 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index bd8a9bae43..df989f6adc 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 2902ef4f53..3d372ceef1 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index 32ea52665a..d5d27481a0 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 320e39eaa2..73910af233 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index 1045f06adc..bb1ba76661 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index f400daeb35..6806a23c2b 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index 2ac1ab0dc7..4ce9996043 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg index 52a0365291..824d4e6fa5 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = abs -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg index a0222dcf7f..6a0462b35b 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg index e6a92a2f57..4be68e74e5 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg index da09c0d2c2..0b9632a9c9 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_abs quality_type = abs -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg index 01869b9db5..2d91d4c584 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg index 971664b123..93bfca84fe 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_tpu quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg index 34f0ef1268..e04940df10 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg index 36788383bb..ce518fc4e1 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg index 47983fe3b1..7ac90930a9 100644 --- a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg +++ b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index 6579e5f77b..ffdbb12038 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 01b6fa8039..69ea443736 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 16ec95bd61..23467c9bc3 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index d0b25f3d86..cecac7c417 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index 6817b49bf9..b675f04ca4 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 48c388b845..21b398c1bb 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 3d16285083..0b4735578c 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xfine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 704ddbecc5..0d3015814d 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index d2f46d49fb..a684d4d35b 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 2494ab41c8..11acec995d 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index 18471cfe93..c7666a95ec 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index b72fd9065d..a3f3a42ca6 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 467cc928c8..5128f6fe3f 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index ef8c7f8be9..f1931b93e9 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 81b2e8dce0..2fb224f03a 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index 58cb101bd1..117f78ff38 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index 8ac08cff99..add5e339d4 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index 79131e8e27..0eb908acf6 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index ff27e50cae..25983e79c2 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 30baac9a32..6980b4c848 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 1a96e7a128..549506a69a 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index 7a83721c7a..d6136c9f17 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index 18323af856..258a45ba89 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index a83f31e6ea..1c556e5564 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index 04b5256bd0..bad27f445d 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index c1ff99aa05..7fd0913c5e 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index 2c9681732d..c27c00e6d9 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 0d2b8f11eb..84099e707d 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index e97603e971..d8ab5b4708 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index af3c4ee040..859d7010b1 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index c30f59b5eb..121e957c30 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index 7a5eff86ff..92551aa821 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index d654b8faad..776636a8fd 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index 0baa04e044..daceab0a29 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index 3d9c96953e..50314b8361 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 81fa019be8..2f4b5206de 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 447b328688..207b81227e 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 70a4decabf..24cf0d5390 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index f738879eda..8b6b8a0599 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index 0fa123d7b3..48a329febc 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index 2ea0e2d35d..d9230a6398 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index fcd245f96d..2f92394892 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 6cdd2dd435..4c58a5698e 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index c63856afd5..8ec277000a 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index 91fb63af22..f020dd2225 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a7f8e38f12..a8ead0ef61 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 6bf0e70f96..201cc59e1d 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 217987265d..2bb875f22d 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index 312f20eb77..e6295131e6 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index 7f50db4936..71cef9cc68 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index e2fc24f53b..84905f95d9 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index b2f5fefdfe..83c159d91f 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 842a8833e6..118494b380 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index 946344995b..e2b8eb9d5c 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index 0c1f57dced..ecd8357307 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 19c810fad0..46487edb08 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index b04f766a55..6d31588cf0 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index 7bae27f143..ea6dfa3f9e 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index b03d45d3ad..2b281b57f7 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index 32e11e0e66..d349693711 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 504ce9c63a..08a00715be 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index 35bbb0a3b5..bd3c512710 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 889d97872a..964c5c1a82 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index 41b43ad93a..c8df48da97 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index 32ae52bd35..c91abe6f60 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index 188f053506..4f609193b9 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index e9f095caa4..643d3f802c 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index 0d88514cc8..fd9770ad13 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index a9ea17fa94..7e20a4e444 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index e831ef8c1c..b172c720a6 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index fcacad6c24..8488194de3 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index ae01f298f0..f19464ad8c 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index 2ce5883f07..f49e7541ac 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 98be4f1776..7d21369ee5 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index 4b9222e74e..c38437a2b0 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index 0a615d65a8..f2623b07ca 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index da9ca07ad0..b68bb9cad0 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index a30f5a3596..3c4b7e3f3f 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index 87ca064f92..e70190eb90 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 00f75e3681..850cc73f83 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg index df48b1e465..9244ae9335 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg index 442680d4d5..9523866c1d 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg index e23792a6fc..f59bf7aaf9 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg index 4a27e7e3b2..7ca002b987 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg index d8c593629f..ba93b1d995 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg index c5b1f43676..1ba4d7b89f 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg index ec9fbc5d51..3a738b966f 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg index 1865da0454..10ea2fe33f 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg index beddca58ae..7b40781160 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg index 9806fe1110..1bfa6501b8 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg index 608f1288a7..68e9d25231 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg index 0667e04e5b..055614c812 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg index 212526e52c..37f8e3ca18 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg index 7c9931026c..ea87807340 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg index 67fab7e129..a4d8b5cf89 100644 --- a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg index 477864dd2f..450ff10e65 100644 --- a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg index 3247349db6..651b7b91ce 100644 --- a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index 4a20a7b9c8..c618f22ec6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 805bd9ac2e..9045688eb5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index a0bad4bd6f..c20770e7eb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 454d4bd066..21a9b4977d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index a51bb0e40a..5783d4035e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index 3285ac2f7f..ebf2240981 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index 7c6bbd8717..45ac5f30e1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index 8fc83c12f1..abea65986d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 8aece3d5e6..9211291503 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index e1faf41888..0037dc8e3b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index 02ff6d5e63..7814f10d5a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index 0d0a89e4cf..f4f52b4f64 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 3e79486620..7e0700c912 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index 9aaadf6456..f31ac3b763 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index 1d9e208e7e..da88ed8e0a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index 72e8ad4951..b5f6a23b1a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index 0e1f420c0a..cfe6423311 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index badfe12fee..f12e118679 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index 1940b724b4..cfd4c48e3c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index d62cced041..e2267a15be 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index 95e4eda1cc..4895e1bad9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 4cab5ed392..594c8cc340 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index 9cc4a1c86f..f98243c870 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index ab3be954b3..9a392d3fe7 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index a3c927e449..204bc3c6ce 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 01df85d5e5..8b70a44c01 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 6bf277081a..8674f58cd1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index 674ff8d746..f9e1c1575a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index c60aecae73..b6bd759337 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 1bd6efc998..1aa556f189 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index 799d777087..cd021a0cbc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 1d609a9b5b..6b4a617394 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index 99a80a7f04..c40580028a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 9d5e84588c..03f80e8e84 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index f418bb75ac..820c8b74ac 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 5b2d7d8244..6ad627d3e1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index a7f1d0b0e5..e9b0b4fd9c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index 4ff61c22b5..d5e5334a22 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 620225e814..962d4dcce6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index d581f86800..89cfdadfd5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index d0a7f429b6..17323226f9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index 1269e55fc0..d81d212335 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 9d9b88f342..98ef74f7d2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 227c8b174b..40c8023fb6 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index ad6061154d..b1de8aaba1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index a5fb56480a..ae01192293 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index c4be47cafd..65582f5b0d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index e6afaf235b..a156e49b78 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 2edad0b477..28aa90f61a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index 9074add48c..b1d9efc34a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index 43db60ad35..672c65f51c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index ae91df6c8f..b29b85b8f2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index cb2d7d8adc..bf044f9541 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 94a2cb199f..99aa800fd3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index a1e9de0c4b..6109281345 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index 070706df53..d5e6e8f61d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index 2161bbfe5e..e558d3c272 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index d9a8ddcaed..034dd29681 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index aae1778e7b..8bffcdd8c5 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index 5fae9d17f4..e64eee6119 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index a33aa63546..fa25a246fb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index 88f895a788..a68aded6ce 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index cb43069309..908298d6c4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index dd81906dd0..db69b0d710 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index e298d659f7..0c492f7651 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.60 support_interface_pattern = zigzag -support_interface_skip_height = 0.30 support_offset = 0.8 support_z_distance = 0.4 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index 16f8536a02..8f3fb7ce5d 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.60 support_interface_pattern = zigzag -support_interface_skip_height = 0.20 support_offset = 0.8 support_z_distance = 0.3 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index cacf5289e7..203f8da165 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.06 support_offset = 0.8 support_z_distance = 0.12 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index f977de059b..e62534025d 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.10 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 1.6 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index cc78f01198..86d73af1ef 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.45 support_interface_pattern = zigzag -support_interface_skip_height = 0.15 support_offset = 0.8 support_z_distance = 0.25 wall_thickness = 1.6 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index d4d8b3551b..d7b636cbc7 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.60 support_interface_pattern = zigzag -support_interface_skip_height = 0.30 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index 14dc4ad964..50a8d2fe50 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.40 support_interface_pattern = zigzag -support_interface_skip_height = 0.20 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index fe490f5dd4..eaa39d9cf7 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.06 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index ea86894268..726d48be20 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.30 support_interface_pattern = zigzag -support_interface_skip_height = 0.10 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index c034f9bfd4..eaafcc1164 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 @@ -33,7 +33,6 @@ support_infill_rate = 20 support_interface_enable = True support_interface_height = 0.45 support_interface_pattern = zigzag -support_interface_skip_height = 0.15 support_offset = 0.8 support_z_distance = 0.2 wall_thickness = 0.8 diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 036be998b8..6aa4fae488 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index 38dd0a39e9..a521feca63 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index 9de7b59deb..8811d1f837 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index 16b26530ee..d7a307f57a 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index d1f35d9b95..e672eb9316 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index a8469a4ea9..be00db90b3 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index 1e19464243..b565e8f74c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index 9fdab1172d..51dc9fbb76 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 1d8769491d..0738ff8ef8 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 41ad0484b6..07c7f0ded1 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index 58785c33ae..c014b267d0 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index 119ca0f89e..09f14d8c01 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index 2d5d033fd0..363762ac85 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index a8b77b9c42..fb21754f0f 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index 9fb5cb6d1b..ce554b2755 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index 1ee6fb803c..07b0d4d369 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 822a0635a7..06258db290 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 5b52d5a0d9..6815703726 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index b4c9741aa3..8d5cc94903 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index b890ee3ed6..84eaa67a29 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 0dd669dd91..000779dbba 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index b5ab386c53..ea02181e29 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index daff0575d4..1301d6b732 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index fa099cce34..005a64b24d 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index b84a7f8182..f9b4caf8fb 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 7c050006bf..4af0e371e8 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 6649f1541d..78825c5d8d 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index 28134387ec..aa96425455 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index 8b0cbd7a9e..c62eb06655 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index 5f20bf45a5..a507e2555e 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 23cbf503dc..588b3dacc1 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index cbf5114492..df61197924 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index e81de9145f..1dbcb62fb3 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index d12bd473f1..8bff839e45 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index 4ca89c2c0e..f0333fac75 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index a95fc1f16f..924dd669d1 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 7ebed839a9..05e3644675 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index e7265c5663..91466498c5 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index 0ed78dd5fb..68e774f205 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index f761120b8a..0f84569bad 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index f691230889..724d76d23b 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index f510370d29..b801e75cc3 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index cf99fbf92d..7340f539f2 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index 9a3b7c79f1..754c2a43ea 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index c451ac2372..f21e6e3b08 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 609304cd6b..157b8eb9e3 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index f08b2636fb..e116b7ec11 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 96284914bb..1ea39a2d1e 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index 34e8acaab7..7009c6d5fb 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 76214d104e..2f0f770507 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index ccf43bf03a..8a23e888c5 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index e77a774aab..9c5164287e 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index 0965a5a726..1ac3ee85a3 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 0d3444cebe..6b90e73483 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index a47f650cab..c4db9c1979 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index c1d9122246..23f06b83d7 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index 5aac2b8121..a95181b907 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 160372ef04..5df16e09a6 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index 063dfef2c2..bcbf4eb1e6 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index 89706e6c0b..ef2c484653 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index c4b20eaa9e..d3a92884d1 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index 0892112dc7..c5d553b9d9 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 491307ecd4..8c999eb161 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index f37a42f08f..f509a3b572 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index cdd5ee3b7e..d712d097b2 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index 5d3ab9951c..1096d25f8c 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index c8be622c9b..bfe1b9a4b1 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index 32c8498457..f302300232 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 15a6c39158..7361f29fa0 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 9180d9e17f..8c6c8d0919 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index 4c100e7665..fbea0a9ed8 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg index b232427d3c..bd1da0170a 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low 0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg index a022de74e8..08fc738619 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg index 11c59d44c2..0993d1e938 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg index 4a058d050a..60df32c561 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.3 -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg index 50176898a6..c54ce24ba4 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg index 9efd41ac62..dbbd5b3788 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg index dd86c5d2cd..6fa18591f6 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg index eafdafdda9..1c630a6e14 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg index 99272b1686..7b5af6f41b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg index 5e7b27e25c..92deb8ba49 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg index 06b62ea74a..e09730ba94 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg index 496773ae3c..d04036f8d8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg index f8bcbd83c5..9713c85ede 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg index 6f5560e103..f9597d54b5 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg index e0ec3a106b..2e26c89cd2 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg index 39139e2f53..0706d57844 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg index 6050a15f3a..ca494c3777 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg index ffff45ea6c..97eb190769 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg index d8512d6427..7eb8ddd920 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg index 2d59bcae6f..7b80e3ba89 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg index 112e469f3e..22389c7f59 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg index 0d7228ac5a..bfe070b2ef 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg index 79cd34d805..5420a1f6b8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg index d68fea886d..33071d96b4 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg index c8432e4720..241a81753e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg index 33bb04910c..17033f013d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg index e3c16ff674..0b6985238b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg index 179b68a480..abdf0409f0 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg index b077c5e302..d83be54131 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg index 5984ebc0a7..f97453339b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg index c0ab994e6f..66ef59fac8 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg index 6f8cc1cb79..45549791bf 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg index fa51646a96..0f95a2c5f3 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg index d06ca68878..4b777fb89d 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg index 06bd9a5e2c..b1d01bfc87 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg index ddc1f73edc..61c875e617 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 1.2mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg index b9e01c054d..dd9168741c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg index 120840adac..7ac14cd8f3 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg index 655fe020a1..7c7f10fe64 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg index dfe3464190..a74ca975ff 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg index b4dfc2cc14..815027d6ef 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg index a8c9f6712e..c3c4a03bd6 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg index 28f7b8bf6f..66790c739a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg index 930057a7d6..a3f8ed15b9 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg index 5ad66257e0..99432f51c0 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg index a24adbeaec..e789d4ae4b 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg index 62c319c029..d54e44fff1 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg index f1a804636b..a97de1a9a3 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg index 057e2ba26e..92ca89fa6f 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg index 9ca72154a3..6727b950c8 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg index aacf1e2491..2dbee187a8 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg index ed3f6ceb52..ef6e16e3f3 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg index cd67b1b5e8..2d85d53f4e 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg index 0e44809ac0..109c79608f 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg index c7128bef55..b87d68962e 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg index d2c122fb0c..10806f53c4 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg index a08caaa26c..8f747c08e9 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg index f8c7e9d447..b0d9447b82 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg index fdf046454c..2c8444df01 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg index fc8d16ea0d..8410e56e1d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.3mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg index 2012d231ef..0dee28da76 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg index 73f4028d6f..86be97d7ef 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg index 9e92c83170..b3b20834ec 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg index 3711657b55..ea1c5269f4 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg index a8675b9374..d95326a2cd 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg index 772d62c38b..6139f477a9 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg index 0535ee955d..d6b10ead40 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg index 4261f7f5d5..501fd43305 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg index 592df1449b..9210920b17 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg index 9ff016accf..37071e37ec 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg index 9b99f66808..4d7a139ee4 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg index e39eea4e85..0f4fb4da2a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg index 67c4bea2af..c0d98feb50 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg index b6169d0713..f3b66ecd9f 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg index 52c7644d5a..075bc33bdf 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg index e3dec5014a..bfe0c1efb3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg index 81e8d45a47..cdeffbce07 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg index 67ea92825c..6aa9142446 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg index 9ab6e32378..4f196bd070 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg index 4abe78cce6..8df63decc4 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg index c5ce3a5968..cc34498a54 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg index 2dfac120d3..5dcd5eca8c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg index 414d9199f1..12c5e568ab 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg index a8fdd08b26..910efb6244 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg index a11570f62e..a9d00ea40d 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg index d2eb89bc5b..3acda8b9dc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg index 19fac2508f..ced39e298b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg index f97ac6ac09..068ed81057 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg index c72b9b5f05..f094968a1a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg index 6488766287..2f34faba86 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg index c52b1f7791..416ed6cce1 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index 6e50139749..0c86d1922b 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index 0d47c689d4..f2f475d324 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index 582c7f8d4d..f96020401d 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index 16ba696586..fbd2b1b648 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index a9684cd507..18b43d1fce 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index ba1c10d19b..c25fe48eee 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index 6bc4ae64da..a662fd199a 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index 4eb383fa3e..5be817574f 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 2d93838574..955c533ee0 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 04b51ffdc3..81c3bac17a 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index a24d877812..0270042c6d 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 1c80bd5a74..10cd3774a1 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index a491cd2633..55b35c33a1 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 396e082ec2..5c744cde48 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index f9fd78beb5..da56e1c7d0 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index f5f235c0b0..74ac09ab1f 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index cad3d0f17f..4185c32c2d 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index c3826e1b23..6ffc2dc31a 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index ceb247023e..747d7c0bbe 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index 0cc705b9c8..8d9db6ef9d 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 442c341254..756f8f2917 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index e58a5440b3..2b50d823db 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index d028044fdf..e20ed3a4a5 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index c39bb7ea21..89c3c5ddf1 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 73d7207c72..98ec1d290c 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 9df4675747..1102445d73 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index 921fdd7ae5..fdebf33114 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index 5b2edc11bd..dc583398e3 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index e0cbb77608..275f1afb76 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index e1c754d30a..0db9ae1a24 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 0bf8080ea3..30633b369d 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index d455551b3b..3037c3aaad 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 2899281b33..59d3cde27f 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index cdf0b5a69c..237b9c9997 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index 4f4b84c527..d045650dd1 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 3f3be29dac..9edbe0795b 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 61e422cd01..07cb20a6a3 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index 2f7616d3c0..f83ece82c9 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index 7ae39664db..432bdb5181 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 74cc5e1a8c..56767df588 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index a0fcba66c9..cd90509f5f 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 91c26bb39f..8b67e6343f 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index 5458875049..c2602f9f9b 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index a5a99f8ba3..c20a955d02 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index 40a394d020..0aa49b222d 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index 560388f549..a31c713bde 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index c57a810e96..ba853061da 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 038ee37b2a..3907f5ceca 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index c9d10a366a..59e92e733f 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index ea78515888..4e408ceef7 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index 8d66f49534..f01fae14b4 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index 7b5a3560df..b70d03a341 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index da79a1e7d7..3dfa6bbc07 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 511da60d54..48851fed3e 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index 9967dc12c4..feed09fb66 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index 5810601f77..e510fc1453 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index fb7ceb891a..b6422335ff 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index 13a7b1d413..79c4b15ea8 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index 81f56b432c..fd94e73fd1 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index ef092ab09f..e648a5bb24 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 594c277948..2a824cbd42 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index 12c049c4ca..efd1f9a6d7 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index e8a2a46be8..7a294b9532 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 14e9cbec6b..1fb094b684 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index 75f0784656..f4c45020ea 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index ae4139bca9..88a4cbaf4b 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index 504e8292b2..d68392a58e 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index 3869918c08..52d9cbefa0 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index b91c8e1f2e..1664e93b37 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = -3 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index 7ea8197b87..e269557ea5 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = -4 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index e3f5e40fee..e8af9745d7 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index 7929c6d9f4..d2a7e8d673 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index 63c487a4b9..c077347a27 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 8c36a3f9db..7689cb7296 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index fa9118e5b3..a764523419 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index e8c8c53c45..5d96b324b8 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index 212c3cc2d1..c97c5e0d11 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index 67ab181dc4..b9ccbec940 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index 861401346e..7be3729c54 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index fd062c8a10..c5575d58fc 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index 85af3b88d2..28df0a1c18 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg index 8e659e9aa0..510e7f1c3d 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg index f55649264c..2901a92b34 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg index 2c708faa07..37390c4f2c 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg index 6a2535f8e6..e631278a12 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg index 22c0be933a..0cc925e81c 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg index a83db8a5b8..42a05036bf 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg index f676d805f5..be04111ffc 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg index ca4c6e02bf..0a89b548af 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg index 2e4a9e541e..a215b77102 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg index 7ffbfc983b..f8bd706b13 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg index 1f2536dd6b..59769cff2c 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg index 1d2323c230..07e3bdfc33 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 2e80729b96..17f02a5341 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 1921452cd4..249d81eda4 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index 3462ba60b1..f202bc039f 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index 5732177e41..f014c4d817 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index eb69f993c2..9069c6217d 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index 101b4b4f93..e7549eb0cd 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index 44b2371f2b..c459673c03 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index ed9bb131c8..3ac36051ef 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 8b034ebbac..0747c9470e 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index b0b7a71b2d..32520aa212 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index 876d8bec26..c131707e19 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index 45bc46ce57..b20f448ba0 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index 0eba756cec..b8e5ad16c2 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index 44c78d9841..e5c59aade7 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index 672be97d5e..a1b31cbb36 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index bce81ed8aa..4958661ff4 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index b203c49a5d..f5319c95ac 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 205cb74fcf..91518c75fc 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index aef986f74a..24b32bccdb 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index 2509d7888e..cc15f42fb1 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index b0f60d3498..6e9a67af5c 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index 5f3d8c911f..cb84911e81 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index 3c9690fafe..38b057a744 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index 998c4ef915..400bc2a190 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index 29faf9d49d..4501bb5227 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index e0f46c3564..09122ad76b 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 38a5829e60..316291ca09 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index ac606c3431..b279711da0 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index a7c88bc67f..cf31ad62b5 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index d048641758..7ba40dcd48 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 91e96c6714..356a9390b0 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 5e92b31a7c..2ca57936c3 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index 378ebe4d8a..873563a5ab 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 33b0725bad..3e33d4d280 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 4b5d9e4aec..39244b0cc6 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index 2086bc635a..3e3e8ac50e 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index 792af41ee9..7f1bb0bc66 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index ce4fd9f356..878286e616 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index 1cb9e49703..7724c1001a 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index 8ebedcf006..c33d5a48b7 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index e9074441d3..675794832b 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index 36b727d11c..d55b54dc8b 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index ae04d305a6..b8b08fba46 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index 5b59905ac7..dd64434c06 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index d03f8d5d1c..bea3579678 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index 61ebda8660..85809f8aaf 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index 969f350199..f4a885cd2c 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index c1b2571eae..d4caac8486 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index a01fd327bd..4c8f24db64 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index aaeba0c6f6..f437fc220c 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 4fc70ac0bd..7c4a2dc2d7 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 216efb7feb..0faaf8e45d 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 7d6238e018..040da082a4 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index 0bdd756125..9ce2b0454b 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 99ca1726a8..463b652b05 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 3cd403610f..377b68b0d8 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index 9441027751..1057a431a6 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 75faf8511d..3f4026061c 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index 9c715fcec5..587724a118 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index 5f57198c49..1e86537713 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index 4861a38b1d..d660e3b15b 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index 1431ab8530..13a66ff494 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index 07ccf302ec..b2e58f2975 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index b00db63324..76de410101 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index bc81bc0371..fd999f6b0d 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index b6b8b52349..9a9841afbe 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index de99319e53..dd5078d648 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index bddb8ae653..fd0a08e352 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index 91140677bf..a3fd5f5956 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index 6f21593188..a4bbfed83d 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index 383024037f..85c78d7b8d 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index a5a9879d72..b75eb896a4 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index 3d5ec38d35..9ce1333999 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index f698da2d69..cf231a7631 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 622a93a087..4487d7314a 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 98eb36c144..18c2c9e8c2 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 5de5ad8dca..18b92d7b8b 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index c35fe262b4..2964bd8424 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index cfdff1319f..db5d49de7b 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 0030e89bbb..99940ba8e4 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 4a08d33616..7873309c26 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index bc27028922..194a9d2ecc 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index 734edc3920..2bc213d8ba 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 5c7ccc5b9f..815d889a1b 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 1778c34160..17493da3ac 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index d6f86947c4..83988387dd 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index bcc4603584..1ab336b3bd 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index dd428dc3cc..6095afc7a9 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 52c7d86ae0..14cb361ba5 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg index 96ea38ade9..7299109537 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg index 1e6d59df5b..e1cbebad59 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg index 96af2f714c..8f52deed73 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg index c3cdc7d9af..c66b230b3f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg index 1165fc2ee8..5ca0aff282 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg index f6200a7fd7..e4e9a63b3b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg index abfcfebc28..50af708e6d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg index 079fe5831c..2c07478c3b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg index f34520fa2b..652346f10b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg index ebe50da2cd..2bbf4ca548 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg index 16d047f188..cc458da8d1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg index e13eb0566d..abf58a72a4 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg index 5be7d6f067..129ea34c39 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg index 1969d8dd97..10dcfad171 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg index 26d1bb6b49..39d12f2573 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg index 20f44d7343..5c79e53906 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg index f02540ffe3..6ba205b42e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg index d2ecfa7c12..3f8e4d098f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg index 3bfdd6350e..41ceb4e795 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg index e7c4078d25..5604950ca3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg index 3f2d903175..f0462b9356 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg index 43244be05f..2d175ae2fa 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg index f4f3277db5..606a733664 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg index f4699dd42d..6fc1ba3286 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg index 973fca320e..74a331f160 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg index fbc78a9b01..cacb37c73d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg index 2fdbc7549d..671147552c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg index feb709164f..e41b33ce6e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg index 79e2d90b77..42875c40dd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg index 498ff3750c..fb4d097abb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg index 0f9baad3ff..6223ddba96 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg index 355ef66112..bff7731278 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg index c160324f03..7dadd7ef79 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg index eb642e6e48..8c90a1f304 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg index 59933f6f69..cb2ad61411 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg index ccaa29a0d8..36e59de2e3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg index 7dba894368..9c87a86afc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg index eecd00f154..7d01768643 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg index 074fcab081..1a372f2689 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg index 40caac85b7..03735e73c9 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg index a54d67164f..fd0e2092fe 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg index 877c714bd2..764fae3340 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg index d1e846d8ef..105457d8dd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg index 587816e51d..418750d4bf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg index aaf0443bf3..3d823e2b15 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg index 19744cb04a..bc56d30d7c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg index b77985d74a..aa03342cb2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg index f33ed01e88..9c58bafbbc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg index f4dedc6698..736ac60dee 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg index 12924a1e88..60cd6a6835 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg index d4ba2e1f8a..cda0198ba2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg index a5e375ee62..5d48f19122 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg index 23af3a293d..d4c97e9387 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg index a1c971ab98..8e9ce5df5c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg index cab9e49b7a..706e493748 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg index 6397f44f7d..5fa87f6a3d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg index 66f620995a..1ec3a05ef3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg index 51315f0adc..c997636195 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg index b5c1b5a457..6866799752 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg index c25d184d81..a7b08617c6 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg index e277ae7d21..0aa380fcff 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg index 1bc5d20d89..487bac34b2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg index f9d453be32..bdf235bd29 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg index cc7fd06726..4ac4a2b798 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg index 8a12a51635..bdef20e4f8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg index a9b846ca8b..897f9fc63a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg index 03e6b0b6c5..1203ab3c8d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg index faa311ad57..9fd1c53811 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg index f219f6e880..70de54d92f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg index 68455d3453..faa45bd0d8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg index e6e3508722..eb8aec270f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg index a34676603e..75c4f287eb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg index 36d3e3351c..45f129d8b4 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg index 139fff75b0..5349318ce5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg index 44a7d23080..515114f3a2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg index e36d71db8e..9b81d1096a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg index 72c7db1513..d039abd7d7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg index 01d2f6e0e4..9a3f73e717 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg index cb03a9decc..f5c8e5c226 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg index 17164e0ab8..9e24a016db 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg index 4aee58e6f3..0457db771e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg index c3171fcb89..c27869d858 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg index 130b80c9bc..54a8cf3c59 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg index c058d2f937..5eecef0be1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg index e3e286cd31..e99408614c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg index 4da458f122..d89273d34b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg index 11120db31c..6e4e2441df 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg index 9ffc2f057c..2ee463e2f7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg index c5146b18c2..6e26fa8520 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg index 2c2a6140d5..621303c03f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg index f504d2df4a..37bcb1de38 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg index 25491d4836..9b3c420461 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg index 88559bb8dd..29dcfd687e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg index ec48205bd8..11fa0af120 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg index 1fa9953ada..a84246755c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg index a0f60cc1e8..2a35c53029 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg index 5f877759d7..87b536ce00 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg index 4457176cee..7caa4f19b3 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg index 014d2a0a6c..3d18ae5645 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg index fda7f5bef8..26c55325d3 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg index b338c04c60..f6f9bdcfd5 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = dagoma_sigma [metadata] -setting_version = 22 +setting_version = 23 type = quality quality_type = h0.6 weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg index a0346640b8..c0dd1bdc22 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg index f4854e3590..39d1311f88 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.1 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg index fe081fea2b..30bd0b88f4 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.2 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg index 5fc3621a60..6f5e1594a3 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.3 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg index 7fa09620a2..11627f7cc0 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.4 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg index fe91f95768..13f032f573 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.6 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg index ee029f1031..2d3a252eff 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.8 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg new file mode 100644 index 0000000000..2f4b38a21c --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = dagoma_sigma_pro +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 23 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +adhesion_type = brim +bridge_settings_enabled = True +brim_width = 2 +coasting_enable = True +coasting_volume = 0.06 +cool_fan_full_layer = 5 +cool_min_layer_time = 7 +cool_min_temperature = 195 +infill_material_flow = 105 +infill_sparse_density = 15 +material_final_print_temperature = 196 +material_flow_layer_0 = 100 +material_initial_print_temperature = 196 +material_print_temperature = 196 +material_print_temperature_layer_0 = 196 +material_standby_temperature = 195 +ooze_shield_enabled = False +prime_tower_brim_enable = True +prime_tower_enable = True +prime_tower_min_volume = 44 +prime_tower_size = 25 +prime_tower_wipe_enabled = False +retraction_amount = 3.0 +retraction_combing = infill +retraction_hop = 0.4 +retraction_hop_after_extruder_switch_height = 0 +retraction_hop_enabled = True +retraction_prime_speed = 45 +retraction_retract_speed = 60 +retraction_speed = 80 +smooth_spiralized_contours = False +speed_infill = 80 +speed_layer_0 = 22 +speed_prime_tower = 70 +speed_print = 35 +speed_slowdown_layers = 3 +speed_topbottom = 35 +speed_travel = 180 +speed_travel_layer_0 = 70 +speed_wall_0 = 25 +speed_wall_x = 35.0 +speed_z_hop = 120 +support_enable = False +support_structure = tree +support_tree_angle = 55 +support_tree_top_rate = =30 if support_roof_enable else 10 +switch_extruder_extra_prime_amount = 0 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 80 +switch_extruder_retraction_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_speeds = 80 +travel_avoid_distance = 2.0 +travel_avoid_other_parts = False +travel_avoid_supports = True +wall_0_material_flow = =wall_material_flow +wall_0_material_flow_layer_0 = 85 +wall_thickness = 0.8 +wall_transition_length = 0.4 +wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..6cf00327bc --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = dagoma_sigma_pro +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +adhesion_type = brim +bridge_settings_enabled = True +brim_width = 2 +coasting_enable = True +coasting_volume = 0.06 +cool_fan_full_layer = 5 +cool_min_layer_time = 7 +cool_min_temperature = 195 +infill_material_flow = 105 +infill_sparse_density = 15 +material_final_print_temperature = 200 +material_flow_layer_0 = 100 +material_initial_print_temperature = 200 +material_print_temperature = 200 +material_print_temperature_layer_0 = 200 +material_standby_temperature = 195 +ooze_shield_enabled = False +prime_tower_brim_enable = True +prime_tower_enable = True +prime_tower_min_volume = 44 +prime_tower_size = 25 +prime_tower_wipe_enabled = False +retraction_amount = 3.0 +retraction_combing = infill +retraction_hop = 0.4 +retraction_hop_after_extruder_switch_height = 0 +retraction_hop_enabled = True +retraction_prime_speed = 45 +retraction_retract_speed = 60 +retraction_speed = 80 +smooth_spiralized_contours = False +speed_infill = 80 +speed_layer_0 = 22 +speed_prime_tower = 70 +speed_print = 35 +speed_slowdown_layers = 3 +speed_topbottom = 35 +speed_travel = 180 +speed_travel_layer_0 = 70 +speed_wall_0 = 25 +speed_wall_x = 35.0 +speed_z_hop = 120 +support_enable = False +support_structure = tree +support_tree_angle = 55 +support_tree_top_rate = =30 if support_roof_enable else 10 +switch_extruder_extra_prime_amount = 0 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 80 +switch_extruder_retraction_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_speeds = 80 +travel_avoid_distance = 2.0 +travel_avoid_other_parts = False +travel_avoid_supports = True +wall_0_material_flow = =wall_material_flow +wall_0_material_flow_layer_0 = 85 +wall_thickness = 1.2 +wall_transition_length = 0.4 +wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg new file mode 100644 index 0000000000..89f3b80443 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 23 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..d4bfe2a43d --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg new file mode 100644 index 0000000000..d8e4c1c2e2 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 23 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg new file mode 100644 index 0000000000..a5e83f03be --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 23 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg new file mode 100644 index 0000000000..94261daf9e --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,75 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 23 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +adhesion_type = brim +bridge_settings_enabled = True +brim_width = 2 +coasting_enable = True +coasting_volume = 0.1 +cool_fan_full_layer = 5 +cool_min_layer_time = 7 +cool_min_temperature = 195 +infill_material_flow = 105 +infill_sparse_density = 15 +material_final_print_temperature = 196 +material_flow_layer_0 = 100 +material_initial_print_temperature = 196 +material_print_temperature = 196 +material_print_temperature_layer_0 = 196 +material_standby_temperature = 196 +ooze_shield_enabled = False +prime_tower_brim_enable = True +prime_tower_enable = True +prime_tower_min_volume = 24 +prime_tower_size = 25 +prime_tower_wipe_enabled = True +retraction_amount = 10 +retraction_combing = infill +retraction_extrusion_window = 10.0 +retraction_hop = 0.4 +retraction_hop_after_extruder_switch_height = 0 +retraction_hop_enabled = True +retraction_prime_speed = 60 +retraction_retract_speed = 90 +retraction_speed = 80 +smooth_spiralized_contours = False +speed_infill = 80 +speed_layer_0 = 22 +speed_prime_tower = 70 +speed_print = 35 +speed_slowdown_layers = 3 +speed_topbottom = 35 +speed_travel = 180 +speed_travel_layer_0 = 70 +speed_wall_0 = 25 +speed_wall_x = 35.0 +speed_z_hop = 120 +support_enable = False +support_structure = tree +support_tree_angle = 55 +support_tree_top_rate = =30 if support_roof_enable else 10 +switch_extruder_extra_prime_amount = 0 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 0 +switch_extruder_retraction_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_speeds = 75 +travel_avoid_distance = 2.0 +travel_avoid_other_parts = False +travel_avoid_supports = True +wall_0_material_flow = =wall_material_flow +wall_0_material_flow_layer_0 = 85 +wall_thickness = 1.2 +wall_transition_length = 0.4 +wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..16b40d8c6b --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,75 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] +adhesion_type = brim +bridge_settings_enabled = True +brim_width = 2 +coasting_enable = True +coasting_volume = 0.1 +cool_fan_full_layer = 5 +cool_min_layer_time = 7 +cool_min_temperature = 195 +infill_material_flow = 105 +infill_sparse_density = 15 +material_final_print_temperature = 200 +material_flow_layer_0 = 100 +material_initial_print_temperature = 200 +material_print_temperature = 200 +material_print_temperature_layer_0 = =material_print_temperature +material_standby_temperature = 200 +ooze_shield_enabled = False +prime_tower_brim_enable = True +prime_tower_enable = True +prime_tower_min_volume = 44 +prime_tower_size = 25 +prime_tower_wipe_enabled = True +retraction_amount = 10 +retraction_combing = infill +retraction_extrusion_window = 10.0 +retraction_hop = 0.4 +retraction_hop_after_extruder_switch_height = 0 +retraction_hop_enabled = True +retraction_prime_speed = 60 +retraction_retract_speed = 90 +retraction_speed = 80 +smooth_spiralized_contours = False +speed_infill = 80 +speed_layer_0 = 22 +speed_prime_tower = 70 +speed_print = 35 +speed_slowdown_layers = 3 +speed_topbottom = 35 +speed_travel = 180 +speed_travel_layer_0 = 70 +speed_wall_0 = 25 +speed_wall_x = 35.0 +speed_z_hop = 120 +support_enable = False +support_structure = tree +support_tree_angle = 55 +support_tree_top_rate = =30 if support_roof_enable else 10 +switch_extruder_extra_prime_amount = 0 +switch_extruder_prime_speed = 20 +switch_extruder_retraction_amount = 0 +switch_extruder_retraction_speed = =switch_extruder_retraction_speeds +switch_extruder_retraction_speeds = 75 +travel_avoid_distance = 2.0 +travel_avoid_other_parts = False +travel_avoid_supports = True +wall_0_material_flow = =wall_material_flow +wall_0_material_flow_layer_0 = 85 +wall_thickness = 1.2 +wall_transition_length = 0.4 +wall_x_material_flow_layer_0 = 90 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg new file mode 100644 index 0000000000..b6973e84ae --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 23 +type = quality +variant = Brass 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..d69a78f115 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg new file mode 100644 index 0000000000..3f1fbabc67 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 23 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg new file mode 100644 index 0000000000..8c0008450d --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 23 +type = quality +variant = Brass 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg new file mode 100644 index 0000000000..6d675bba9c --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fine +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.1 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.1 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg new file mode 100644 index 0000000000..254c651f8b --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg new file mode 100644 index 0000000000..055d0a803e --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Draft +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.3 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.3 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg new file mode 100644 index 0000000000..e64d545725 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.4 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.4 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg new file mode 100644 index 0000000000..a0d307ee22 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Very Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.6 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.6 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg new file mode 100644 index 0000000000..982b7761fa --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 23 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..235498bc96 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg new file mode 100644 index 0000000000..290910742d --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 23 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..58656290ee --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg new file mode 100644 index 0000000000..be38030f9f --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 23 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg new file mode 100644 index 0000000000..f313d739e2 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 23 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg new file mode 100644 index 0000000000..3b0c42ca93 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro +name = Fine +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.1 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.1 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg new file mode 100644 index 0000000000..5755713fe3 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro +name = Normal +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg new file mode 100644 index 0000000000..a055df78fb --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro +name = Draft +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.3 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.3 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg new file mode 100644 index 0000000000..0f39dc8803 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro +name = Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.4 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.4 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg new file mode 100644 index 0000000000..9640066226 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = dagoma_sigma_pro +name = Very Fast +version = 4 + +[metadata] +global_quality = True +material = generic_pla +quality_type = h0.6 +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.6 + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg new file mode 100644 index 0000000000..6156764dbf --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.1 +setting_version = 23 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..d0aad40ed3 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg new file mode 100644 index 0000000000..456c6ea798 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.3 +setting_version = 23 +type = quality +variant = Steel 0.4mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg new file mode 100644 index 0000000000..d365c172a4 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.2 +setting_version = 23 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg new file mode 100644 index 0000000000..7dee9e7317 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.4 +setting_version = 23 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg new file mode 100644 index 0000000000..d5e2a394a0 --- /dev/null +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = dagoma_sigma_pro +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = h0.6 +setting_version = 23 +type = quality +variant = Steel 0.8mm +weight = 1 + +[values] + diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg index 11aa6f6507..e42c085ea2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg index 2f83de4ed0..20f232643c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg index 8317881430..b62f57aab6 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg index 31a1896b58..e8e1200b57 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg index 5377ed0e30..78e3e52258 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg index acc20d4811..75321948b3 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg index a9eb22c049..43e7c86bba 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg index c3eb63c1cd..255e5e84ac 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg index 1e1104c7d5..94ff2c2f31 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg index af25db2d41..212aaf3863 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg index e7af80eea9..7d5b705561 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg index d75f2de82f..58c39a178d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg index 18c60ed91f..168d464453 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg index 2d98391804..aa26014230 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg index 8565f8b755..1bbd850357 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg index 9f0b4b686a..df0b816a22 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg index a00fb62edf..b8557252d5 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg index de41c51506..f9ecee8b9a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg index f44d704144..5129278efd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg index 47bec0fb2b..1e6378bbff 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg index 52f4cb6d18..ad052174fd 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg index 21d53035f9..8f04ff05be 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg index 916fe406c7..c6fd1a5b34 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg index 2ba586ef71..7a281473bf 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg index dc5351515b..dee783d9ef 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg index 2d0a92bdce..39cd500d38 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg index fc327140a8..5cd566790a 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg index f3bc78f2ca..bd2767eb92 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg index c53bb930fb..657f0acb13 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg index 7753924c31..ecd5808a63 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg index 78ff239fed..073abec7a4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg index 124a0663c9..cc893ee6dc 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index c17e03cca7..ddd1eb6d15 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index 351fe10bac..42681e7332 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 7142884b51..48620f80de 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 42b997af7a..814a31f541 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 60faed8b77..3e58d17c2b 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index c0fe8ef102..422fd262eb 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 93b85e78f8..7c09cea5e6 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 1d930aae1f..04fd4eb000 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index c5b90b0687..e69dbee1da 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 98f2580400..8fa17b68ae 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index fbfcb4447f..228f9ef2ea 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index 5f8c6766b4..f7759e4ac2 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 4e409923b8..40ab119290 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index 4c66839fbc..f12afe9f2f 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 8063002f95..28d9bd7a1e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index d1759d62d3..4926b470de 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 8101fbe35f..83bc04f13b 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index 56e1b5d313..de3b81ec1c 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg index b50557725d..84e69b2c51 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg index 0e8054dd27..e751ff9df6 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg index bd45965d4b..63fe58d5a7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg index f020d2f102..7feff9db8d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg index 295e777a2f..63f28107d5 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg index 7b39f2a7f9..a4ac0de94f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg index d2c3add06d..8e0a0f89f9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg index dfbf63f11c..a8d4d43e62 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg index 0d8b1dae2a..639b632459 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg index f6fffd5ba6..878eb66f4f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg index 9b1ba58800..9beead6171 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg index 16d09699dc..d443dd99fc 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg index 5e7be2d1fb..94a9161ac1 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg index bf01db2049..963b6330e3 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg index ecbfacae2b..813ef05b3e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg index 241686cb36..dd9f03094a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg index b9a32b3cb7..85c84cc075 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg index 448c3e5967..1963e7531f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg index 6ab71e2295..edb5b6a2b3 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg index 75844ac2dc..bfe360e0a0 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg index 2c3bfd17ec..1f9fe6362d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg index 64a49a9700..7c75a8f974 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg index 063dcf8aac..f054df6a1d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg index 9b4ef0761b..c54e26b6a3 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg index cf8780e0d3..63fc3efa35 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg index 4f9ad94b0e..b9d742bae3 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg index 4a0a27225b..892a526b0d 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg index 80bd1ed96e..25a4e96755 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg index 2943296891..00aacd6141 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg index 3b0f9b2892..91c16e5c67 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg index 1744414d27..3668246197 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg index e8d01f930d..519e1f5eaf 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 33b5c2c111..1149937c87 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 5be0dc9527..352d4de341 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index 76aa867f8f..e06a0a7322 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 20bb125cd9..7ac8c61715 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index cc0224cf23..b39b5d2e96 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index ec2ebdc647..7a3ef1b326 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 136ec93d16..373de4e4b4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 3a0a94782c..0b175880b9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 719a4bdcbd..508911edfd 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 4486a1d3bc..0ecb10b88b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index b938502e85..fcd493bc51 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 3b88ca6b67..208f17e7c3 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 4134717770..07bf612a39 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index e267e7c6eb..eb2e6a695e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 35e2e07b41..644cc467e4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index dd944cbfd1..219153ea6d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index 8aa462e206..a654a9c09d 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index 0691a01deb..fb793f17f6 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index a4d0582c3a..13026b5e40 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 831e17c018..21dc4e258e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index d9a57d6012..7bc4648976 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index 8408fbc014..b8e9e60a71 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 18c813a79a..99c9fbb302 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 660c536a5e..2d0575447b 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 5dbea58c49..6aaad33447 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 9bfd649e99..854c30e546 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index b0eafd229a..29601ca25e 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index dae89bcf98..136ddf125b 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 1df4e6596a..6e67b7bc50 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg index 710e0f5615..58f9f71b7d 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg index fd47c2736d..53b1fdebe1 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg index f55395526e..cb83ab0b66 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index 37253cf6a9..ead1fb1073 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D005 -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index f787587601..91d2b0c01d 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D010 -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index de606ef424..e2ed0c55ec 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D015 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index 0f2d7c8b70..c5a78b5fee 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D020 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index cdef82876d..c4db01ca7a 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D030 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index 2f7f2f15ed..d8015320e4 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D045 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index 412279110b..86e6afbd00 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D060 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index c403531471..b72d99e6b7 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 48cc3518ab..96cc12594c 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index 094879b56e..409b655fed 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index ee6b0b3ff4..c9d06fff3b 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index 50a7d5ddc6..b0510350d2 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg index fd5d0c54f8..6a5928fe39 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg index e522e06d33..94e0ff76db 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg index 149d17021e..8e0753df21 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg index 9c58ee7fc9..d15fe35565 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg index 3543bf211e..9c0d0b373f 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg index 588746ddc4..caae30a653 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg index ebb268aae2..821aad26e0 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg index e992206e6b..dda2efc18d 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg index 0175d5dbfa..80daf5e208 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg index d4fa921e7b..b8205a51e9 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg index 572a4a7c52..639416de9a 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg index ee4226a6a8..28df9f27f6 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg index dea809b063..1027aefde0 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg index cca7b701aa..abb411e9aa 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg index a7ff7a2610..60854868a7 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg index 9080be34e6..31f6f2eea5 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg index 59a628a2c5..4ceba7f60d 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg index 6ff38ad085..abaf0e45b0 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg index 707dac9c58..05ddbca9c9 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg index c5ed8f40f8..e7c17603c4 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg index fe92906bf3..56425ebc32 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index d5a2f73729..18057cbd23 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index e86f454664..5787dec9ab 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index db7e5a43c7..61f1200dc5 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index d84cc9e656..64e054eb60 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg index 043662209b..a3597c5cfe 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg index b47c51abeb..6f15cd12b0 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg index 38de41d075..326df93ddf 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg index efb1ababd0..daf028784f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index b6c63fad0f..64a766b544 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index 1e3eec080a..e2eecb087f 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index 09bc57ffea..ac50ba359c 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_060 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg index 32e2de589d..b3354fcc42 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg index d2cd594cb7..236f4546c7 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg index 1cd9f3d6ef..4bff2a9a5c 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg index e5cc440eba..fdace5abf3 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 0000000000..40ddd88c0d --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_010 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.72 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 0000000000..9a8a5ff0be --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_015 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.64 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 0000000000..4035d17d24 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_020 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 0000000000..f9dc125bba --- /dev/null +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = abs_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_abs +quality_type = Elegoo_layer_030 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.2 +raft_margin = 10 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.84 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 0000000000..615dc1ef52 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_010 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.72 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 0000000000..ced818bcec --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_015 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.64 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 0000000000..29877b0ff2 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_020 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.15 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 0000000000..d9efc99162 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = elegoo_neptune_4 +name = asa_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_asa_175 +quality_type = Elegoo_layer_030 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_gap = 0 +brim_width = 10 +cool_fan_enabled = False +cool_fan_speed = 0 +cool_fan_speed_0 = 0 +layer_0_z_overlap = =raft_airgap*0.8 +material_shrinkage_percentage_xy = 100.3 +raft_airgap = =0.2 +raft_margin = 15 +support_top_distance = =extruderValue(support_roof_extruder_nr if support_roof_enable else support_infill_extruder_nr, 'support_z_distance') + (0 if support_structure == 'tree' else 0) +support_xy_distance_overhang = =machine_nozzle_size*0.8 +support_z_distance = =layer_height/2 +top_bottom_thickness = 0.84 +wall_thickness = =line_width*2 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg new file mode 100644 index 0000000000..9abf9fd779 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Extra Fine +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_005 +setting_version = 23 +type = quality +weight = -1 + +[values] +layer_height = 0.05 +layer_height_0 = 0.12 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg new file mode 100644 index 0000000000..67163bd6a0 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_010 +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.10 +layer_height_0 = 0.12 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg new file mode 100644 index 0000000000..6cc3c34161 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_015 +setting_version = 23 +type = quality +weight = -3 + +[values] +layer_height = 0.15 +layer_height_0 = 0.15 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg new file mode 100644 index 0000000000..9016c13baf --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_020 +setting_version = 23 +type = quality +weight = -4 + +[values] +layer_height = 0.20 +layer_height_0 = 0.20 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg new file mode 100644 index 0000000000..3acd8e9c19 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Extra Fast +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_030 +setting_version = 23 +type = quality +weight = -6 + +[values] +layer_height = 0.30 +layer_height_0 = 0.30 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg new file mode 100644 index 0000000000..66a007ae30 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Turbo +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_040 +setting_version = 23 +type = quality +weight = -6 + +[values] +layer_height = 0.40 +layer_height_0 = 0.40 + diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg new file mode 100644 index 0000000000..c0f861ed11 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = elegoo_neptune_4 +name = Extra Turbo +version = 4 + +[metadata] +global_quality = True +quality_type = Elegoo_layer_060 +setting_version = 23 +type = quality +weight = -6 + +[values] +layer_height = 0.60 +layer_height_0 = 0.60 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 0000000000..fdbe91aecb --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_010 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 0000000000..12ab4871e6 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_015 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 0000000000..66841fad83 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_020 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 0000000000..6adae27f5d --- /dev/null +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = elegoo_neptune_4 +name = petg_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_petg +quality_type = Elegoo_layer_030 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 6 +cool_fan_speed_min = =cool_fan_speed*0.5 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 30 +layer_0_z_overlap = =raft_airgap*0.6 +material_shrinkage_percentage_xy = 100.2 +raft_airgap = =0.35 +raft_margin = 10 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 0000000000..7ec14659ba --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_layer_010 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +prime_tower_enable = False +raft_airgap = 0.25 +skin_overlap = 10 +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 45 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 70) +top_bottom_thickness = 1 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 0000000000..01f00569fe --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_layer_015 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +prime_tower_enable = False +raft_airgap = 0.25 +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 45 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 70) +top_bottom_thickness = 0.9 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 0000000000..963b61f697 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_layer_020 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_sparse_density = 15 +prime_tower_enable = False +raft_airgap = 0.25 +skin_overlap = 20 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 0000000000..256c231275 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = elegoo_neptune_4 +name = pla_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_pla +quality_type = Elegoo_layer_030 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' +infill_sparse_density = 15 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_enable = False +raft_airgap = 0.25 +skin_overlap = 20 +top_bottom_thickness = 0.9 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg new file mode 100644 index 0000000000..b9a1aa3dff --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.10 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_010 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg new file mode 100644 index 0000000000..ac71e65614 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.15 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_015 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg new file mode 100644 index 0000000000..95fc95df77 --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.20 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_020 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg new file mode 100644 index 0000000000..84b045be8b --- /dev/null +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = elegoo_neptune_4 +name = tpu_noz0.40_lay0.30 +version = 4 + +[metadata] +material = generic_tpu +quality_type = Elegoo_layer_030 +setting_version = 23 +type = quality +variant = 0.40mm_Elegoo_Nozzle + +[values] +brim_width = 5 +cool_min_layer_time = 10 +speed_print = 150 +speed_travel = 250 +support_angle = 35 + diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg index 4af6b802be..d527b02bca 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg index 11ee7992d3..267d5935a1 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg index 19742215b6..e2dc623cfc 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg index 74ecbb5c97..2a8f9f73de 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg index 4ac4c374a2..5945ec42df 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg index 9474f6a4eb..c747fb3b2d 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 6da0c1df02..27a692eda5 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index 02018afa92..582b0f6206 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 30387220c0..79ed3bf4e0 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg index cfaa2a9152..aa29fd73a0 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index aec233fc9f..6d02bfab86 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index d4a0e28def..98d77a8408 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 82e16a4d1e..559a547b75 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 1a27f0b991..1baad09869 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 2dabe4ae3e..2ef72cde59 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index d4f8d0fbfe..3e432ede96 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 9a0a77a2d0..28dd970db6 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index 571f41a226..e9b55c8635 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index e745ed6a7b..dcacb56d01 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index 20ca90e629..3858c9d91a 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 349d84c7f7..45bef0403c 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 11e69d6a7f..55532ceb2a 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index d6e0244941..92c4f0dfeb 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 635704ed98..5f5d9a87dc 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index e8bfa117da..b6f13d5efe 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 413578becb..3f206edb69 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index 96c9459e2b..e5758fd610 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index acbc66cd2f..dc86601a44 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 53b241e1e7..98022f1371 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 9cb37a009e..8b3864f9be 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index 0cbba43d8b..c36f61cb8d 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 16662f6dbb..61d33928a0 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index dff57e30dc..33af821e05 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index 439851223f..f6a03c6725 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index 1967e62c5c..ec39636406 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index d722ca9b7b..44870395ff 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 6c9faff53e..55d0cbdfe5 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index d9de619b07..ac01503afa 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index ad46a8a0f9..70cf6b75cf 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 8bf3d5f172..2afb912967 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index 536bc78817..c9668fec6a 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 5bdc47aa27..26ac9b1eef 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 507f1919dc..5596b8911d 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index e9f2da3220..4e0841b5fa 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index 85b3e983e4..faca76f359 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index 7f3d48bb13..db95936528 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index 60334ab70a..d992ad808f 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6754b148d1..6751fa489a 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index 37b421399a..be5bf2a03b 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 7fc6424250..2bd950fbf2 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index 2d8aefe9f9..ceeb33ebb0 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index d4593e2f2b..59f9dfc21b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index 61dbce2980..c0ca53f77e 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 792f5d6e28..214e8838d0 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index a37b7f6f13..840be24862 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 1222bdcdab..563fabb46a 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index 0931880f75..1644284954 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index cd6705a7eb..64deb8c257 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index 785d8001da..d70262d6e3 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index c29879a70f..dc92a36227 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index 7a2a5f1c53..a3540c2f2a 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index 8a7f545da3..2af3abe070 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index cbca7b4f4e..d1c103a95b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index d11945113f..8558a9af98 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index 8f9a0d1111..9d95220b24 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 25ab972517..34a0265bad 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index d9bb2bab9b..abe8341705 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index b4b744f033..27be971b69 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index f3e0e2b70d..ff14587278 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg new file mode 100644 index 0000000000..aae66cffb2 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg new file mode 100644 index 0000000000..3c0cefacdf --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg new file mode 100644 index 0000000000..0b679e648b --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 70 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg new file mode 100644 index 0000000000..19e2ba1fa2 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg new file mode 100644 index 0000000000..1e7d154fa1 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg new file mode 100644 index 0000000000..84e9388526 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..4454e4caa8 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg new file mode 100644 index 0000000000..89552b7d27 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 35 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg new file mode 100644 index 0000000000..5823fde21c --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg new file mode 100644 index 0000000000..4749e76a58 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..2e27fad0d1 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg new file mode 100644 index 0000000000..544850b5a1 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg new file mode 100644 index 0000000000..51be6df1ef --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg new file mode 100644 index 0000000000..92db3f7497 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 70 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg new file mode 100644 index 0000000000..44c5c7eb4b --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg new file mode 100644 index 0000000000..9385df4953 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 40 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg new file mode 100644 index 0000000000..0f7bb26ea3 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..eb77c444fc --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg new file mode 100644 index 0000000000..b3c8daf042 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 35 +speed_travel = 70 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg new file mode 100644 index 0000000000..9ca8cbbd12 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg new file mode 100644 index 0000000000..577b560d8b --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..d04e5f2713 --- /dev/null +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg new file mode 100644 index 0000000000..e58194790c --- /dev/null +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 4.5 +retraction_speed = 30 +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg new file mode 100644 index 0000000000..1cc6c7d5a6 --- /dev/null +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 4.5 +retraction_speed = 30 +speed_print = 35 +speed_travel = 100 + diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg new file mode 100644 index 0000000000..004c970641 --- /dev/null +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 4.5 +retraction_speed = 30 +speed_print = 40 +speed_travel = 100 + diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg new file mode 100644 index 0000000000..01722e32ea --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -3 + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg new file mode 100644 index 0000000000..ea2288f712 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 23 +type = quality +weight = -1 + +[values] +layer_height = 0.25 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg new file mode 100644 index 0000000000..57ea1716a0 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.15 +layer_height_0 = 0.23 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg new file mode 100644 index 0000000000..412236a0b4 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 23 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg new file mode 100644 index 0000000000..2393725b44 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = veryfast +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg new file mode 100644 index 0000000000..ef88b8f515 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +global_quality = True +quality_type = veryfine +setting_version = 23 +type = quality +weight = 2 + +[values] +layer_height = 0.1 +layer_height_0 = 0.18 +retraction_amount = 5 +retraction_speed = 25 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg new file mode 100644 index 0000000000..f0ea2efb26 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -3 + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg new file mode 100644 index 0000000000..1b1a290eca --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 23 +type = quality +weight = -1 + +[values] +layer_height = 0.25 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg new file mode 100644 index 0000000000..5045911c77 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 23 +type = quality +weight = 1 + +[values] +layer_height = 0.15 +layer_height_0 = 0.23 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg new file mode 100644 index 0000000000..fdfa82e182 --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 23 +type = quality +weight = 0 + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg new file mode 100644 index 0000000000..6049accf3c --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +global_quality = True +quality_type = veryfast +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg new file mode 100644 index 0000000000..9ad3086e4d --- /dev/null +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +global_quality = True +quality_type = veryfine +setting_version = 23 +type = quality +weight = 2 + +[values] +layer_height = 0.1 +layer_height_0 = 0.18 +speed_infill = =speed_print +speed_layer_0 = 10 +speed_support = =math.ceil(speed_print * 0.6) + diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index e88180b1f3..4d02730890 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 0da733d6f2..0569e335b9 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index bf19c702eb..ae3e8dbbf2 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 7b5c94aa37..057fd5c164 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index ed78aa2e6c..686394cfc3 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index c6506bf1df..df8c6440f1 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index 6e807e4ea7..8ca5ffe6d5 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index 4d25b6eae4..2daeadc9d8 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg new file mode 100644 index 0000000000..a0c8d9634c --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg new file mode 100644 index 0000000000..fc2a74f13f --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg new file mode 100644 index 0000000000..7287263674 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_pc +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..49a5747768 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg new file mode 100644 index 0000000000..f381d51404 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg new file mode 100644 index 0000000000..f56ef4cea5 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..140906c9bb --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg new file mode 100644 index 0000000000..8a0958494a --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg new file mode 100644 index 0000000000..2d1d442ae0 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg new file mode 100644 index 0000000000..12224722b4 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_pc +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..fe3cb31541 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg new file mode 100644 index 0000000000..987e14ec9c --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg new file mode 100644 index 0000000000..5de2fbac40 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..77f453fc03 --- /dev/null +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 485effea9c..3be4591fee 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 0c469988fe..28dc975374 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 77a7d13957..36f5894a95 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index d9e3355b36..328a8a1ef9 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 6289044cc7..05907e516c 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index 5bc3a40758..c7d703e787 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index 8cda9a4e98..ff367e7422 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index 4812cc1140..e0837d68e5 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index c047e0c165..b2c7b3ae15 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index e456f385ce..8254ecd952 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index af2991d185..1955a20517 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index 6acb269c0f..33450d9d86 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index b7c9b54668..b17e8c421f 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index 26ef92b68f..aa39173cb3 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index b630f3f7df..ba80b010f4 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index 71fcd17ff9..737bb68786 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index df2af8aab7..055eb43155 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index d926c4ffe8..aae8dae743 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg new file mode 100644 index 0000000000..f1dab1f88a --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg new file mode 100644 index 0000000000..940aa1b704 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg new file mode 100644 index 0000000000..2233823918 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg new file mode 100644 index 0000000000..94f819068d --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 55 +speed_travel = 85 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg new file mode 100644 index 0000000000..46fcf05f83 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg new file mode 100644 index 0000000000..edb4b63932 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..3873c089a5 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg new file mode 100644 index 0000000000..68caeb589a --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg new file mode 100644 index 0000000000..e360f94600 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg new file mode 100644 index 0000000000..07e9565243 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..279130f4dc --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg new file mode 100644 index 0000000000..68475b9a3f --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg new file mode 100644 index 0000000000..a64bce087f --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg new file mode 100644 index 0000000000..1ff8c93689 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg new file mode 100644 index 0000000000..8d6052529a --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 55 +speed_travel = 85 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg new file mode 100644 index 0000000000..fde77f6c68 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg new file mode 100644 index 0000000000..bac296cdd9 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..a603d564d1 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 60 +speed_travel = 90 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg new file mode 100644 index 0000000000..253ed947c1 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 25 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg new file mode 100644 index 0000000000..41eeff7317 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +retraction_amount = 5 +retraction_speed = 20 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg new file mode 100644 index 0000000000..bbdfb71452 --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +retraction_amount = 5 +retraction_speed = 20 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..bf68f7518c --- /dev/null +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 5 +retraction_speed = 20 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index 25bb5ab67d..d0f9b2605b 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index d139d9bade..4b67350081 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 1360aaf747..967c4906b0 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 895d454e3f..93671d76ed 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index 76a588d33c..d1becca566 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index b7f7109d9b..a43dec98ca 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index 1d8878cf9f..e93f061086 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index ee39f73df2..b699f3488d 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index 505ef42142..fc9bf8e60c 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 7da3471196..402abc4be9 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index a3b603704d..ba5b5d9cd7 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index 886c425d25..e908862f69 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index 4a48cadf09..1fc1c76255 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index deee147378..8a785cccec 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index b7ab32d1ae..dbfd3fe273 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 73b814d0e2..48d67a8657 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index 27cd8def7e..c14b3543a4 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Xcoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index 656e85dad2..893f575be8 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg new file mode 100644 index 0000000000..793fc6d10e --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg new file mode 100644 index 0000000000..c983c9fe5f --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg new file mode 100644 index 0000000000..a649f8c2bb --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +speed_print = 75 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg new file mode 100644 index 0000000000..84cdfaf7be --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg new file mode 100644 index 0000000000..4a6852033e --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +speed_print = 50 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg new file mode 100644 index 0000000000..d71dbd89c8 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +speed_print = 60 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..d4df69f5f0 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +speed_print = 70 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg new file mode 100644 index 0000000000..e379ed2035 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +speed_print = 40 +speed_travel = 70 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg new file mode 100644 index 0000000000..4520b7cb87 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg new file mode 100644 index 0000000000..b4084177b4 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..2b23a1699d --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = flashforge_adventurer3 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg new file mode 100644 index 0000000000..de66e4f871 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 1 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg new file mode 100644 index 0000000000..4f45dd9a3b --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.3mm Nozzle +weight = 2 + +[values] +retraction_amount = 5 +retraction_speed = 30 +speed_print = 45 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg new file mode 100644 index 0000000000..de3ed6f4f1 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg new file mode 100644 index 0000000000..ab3f1260e7 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -1 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 55 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg new file mode 100644 index 0000000000..3b6bd6fa03 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 1 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 45 +speed_travel = 90 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg new file mode 100644 index 0000000000..cf9a7d73a5 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 50 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg new file mode 100644 index 0000000000..628dc43a99 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg new file mode 100644 index 0000000000..ce2a91ad6e --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfine +setting_version = 23 +type = quality +variant = 0.4mm Nozzle +weight = 2 + +[values] +retraction_amount = 5.5 +retraction_speed = 25 +speed_print = 40 +speed_travel = 80 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg new file mode 100644 index 0000000000..d91ec1c84d --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Draft +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 65 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg new file mode 100644 index 0000000000..1dcbb15714 --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -1 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg new file mode 100644 index 0000000000..21139a85fd --- /dev/null +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = flashforge_adventurer4 +name = Very Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = veryfast +setting_version = 23 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +retraction_amount = 6 +retraction_speed = 30 +speed_print = 60 +speed_travel = 100 + diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index be0422e6a8..aff1ba5017 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index 17ae6fad79..a79887ca13 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index f254fd3c0a..49335a5773 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index 9414642a42..c648bd5bf3 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index c550dabdf2..874afda091 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index 7be34ff5e0..91eafec12c 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index 1a6aab076b..61e83554ed 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index 9a2466df8c..dc0da4c92d 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index 7f789e0c20..8ca5c89a31 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index 2567733c06..b7c3bbf127 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index 3c4c0ed5cc..a638f56d61 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index 8f50464740..bbb162048c 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index 7ba7f82e9a..6c598e033d 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 @@ -65,7 +65,6 @@ support_interface_density = 60 support_interface_enable = True support_interface_height = 0.96 support_interface_pattern = grid -support_interface_skip_height = 0.12 support_roof_density = 60 support_type = everywhere support_wall_count = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index 5091ec6d97..f74057ed5e 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 @@ -65,7 +65,6 @@ support_interface_density = 60 support_interface_enable = True support_interface_height = 0.6 support_interface_pattern = grid -support_interface_skip_height = 0.2 support_roof_density = 60 support_type = everywhere support_wall_count = 1 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index 321f44a8bd..e0a1712310 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 @@ -100,7 +100,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 0.6 support_interface_pattern = lines -support_interface_skip_height = 0.2 support_pattern = zigzag support_roof_density = 70 support_type = everywhere diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 930466e23c..5ae7ce783f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index 3fc33bbaf6..3b97fbbec3 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 61ba30270c..9067ae4f18 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index 9fa0bb768e..ba555c9b20 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 79697198c8..712ffc8076 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index aa49d937ad..7ec3745a34 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index f66ea96064..6d90f7d958 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index 8ca14e5f6b..d6909bc982 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index 66bdc09d2f..e7fcde28b5 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 71a29de5f0..5137f14e39 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 82b314fec0..05ccbc742f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 648c3f9765..4d87172310 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index adaa26b406..e645dc6064 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index bef5e104e8..325f189ce5 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 4c613f89f6..64c4740121 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index 6c32265807..af09323a3a 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 8e0cff9a71..2fe02ed7f0 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index e37f690bc1..b551a10c00 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 65ccdb5215..1ab5c72914 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 0a4a714bc6..7fa1bd9489 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index d2098fbb4e..e46142baea 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index 505cb0463e..14e7112594 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 3f12e491b5..90777f4f27 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index 231f0fd01c..bdffacbf93 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index 8b6dd5bddb..5f83d78564 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index df78a0c3f4..ee4503a01d 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 16c455bb06..1051c04f35 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 24d9ece765..39b0cd3a95 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index f2a45a4c33..992218c567 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index 4035a9a59c..a9e55e4965 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 5ec95868ed..639276336a 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index 666e72803a..176f54fe31 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index de6ad15bb9..dbde45c7ae 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index bf247f15c6..b962c50da2 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index 7f00389fa0..7f61cc4893 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index 151e412914..4ad6474263 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 730abc2c95..9f9229d901 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index cdef28723f..23c0c98525 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 60024c0720..5ff44cc28b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index f6bd94749e..1bfae457ce 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 682b069da8..7a5c4dff28 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index 51459ab888..b7deccddd0 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index fa4b6f0ea5..30dd959964 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index 71acf92c30..a6c59756d1 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 1436e850e6..5d03677094 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 83852fdf48..80b7ce3632 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index 1a089cfebc..ed022ff1a7 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index 0554999dce..fb08d90281 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index 2b2b6e8e67..bee035c633 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index d4f3706cf2..f7e51f3ccf 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index ff3604ad2e..408bbccf1c 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index 83b9afde7f..fed9d3d3ac 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index f7ea5866e0..a6c52520c3 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index 28575d7b40..6e8556c649 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index 4ee5424f67..18b5c61b2b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index a0395edf27..92e2b2d84b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 80e0f04c76..2990745ee5 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 031efab026..6ae9d86cc3 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index aa619cfd1e..bef2f08658 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index 0b60eac171..dccc9296de 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index 1886e60500..00ea087078 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index e519b6d142..5949d2337c 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index b97aef5a39..c7fca8f17d 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index 20bbf3858f..b38c4dc5a1 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index 49b158e03f..c69fb2a58f 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 2ad07694fc..6936c9506e 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index f34b3b1bb9..e1c669ac7f 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index 6706cbabc6..c2e502ea92 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index da766f5d1b..56f9be67c3 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index 8b5001e62c..8af6273550 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 19d31e9c93..575a89d77d 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index ef47603395..4988d8fcfd 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index b3371769d0..203d6f9002 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index b2ddb8eabe..d46789d1e3 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index 0ec35e6dad..7fa9b57c3d 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 55498bde2e..01da9606ed 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 4c10851db8..1a9d835227 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index 735cdf2f91..eea62d9901 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index 0964ebcfe6..f672730f2a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 1dde8db898..2878b3c270 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index 78b295e64e..acfd12f444 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index bf7d7fa7bb..430e88b36a 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 9e282d5aec..02965b938e 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index c2faee28a8..4627852ad2 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index 7200eef8fa..a5d4c71cb5 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index b842231fac..bce6a871cf 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index a5cb57090e..f4506c04ec 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index 28ec247de1..42700664c2 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 2724300ad6..5002536077 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index c9c66e581c..414afc7d4b 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index d2cee4ce30..125d504830 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index 69bfa6d6e1..2128cebe40 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 0af138b7fc..844fb8697f 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 0dc4f2c24b..853b1b80d8 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 04841b6e40..00fbabdd23 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index 02628c7d3e..f0e0332111 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index 0050c4542f..068b59ac7c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index 8aa43affc1..023d73a5e7 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index 28ad82bc82..ae22d9d0f0 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index 8d6924e70a..fba61c57cd 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index 2a432b6135..f33ef9889b 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index 18882f74d7..68dd1abf08 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index 3f751ac6c3..4c6a7e6bf0 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index 54be001ebd..9bf8763a8d 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index d8d4148de1..a7ac0d2a0b 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index becd616174..950b9a87b0 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index 1925f4d5d2..cf7aea8e4f 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index f34a24e1f1..80db600843 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index c5e1663441..56a06a3261 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index 4ede40b6f9..baf68727fa 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index 3c1797b40e..f2d1f7d6f2 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index c3bd73bb8f..352494579c 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 28ae6d3a51..04154bf4b3 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index 129e0ae301..a5c297eca4 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index 37c9670b98..a4f9fa613a 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 9721d62afb..4c62b0cc6c 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index 33807b2f08..d007a855a1 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index e334ba4b67..8a6910cd1a 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index 4b97e4ed24..ba3a62ef36 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index cd12341ec8..a247d6f6bf 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 5b99678522..06c28b5c7a 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index da71c1bd1c..e02c07f97f 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index d10e9eee55..e015f56f53 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index b2d4401f66..416747436c 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 0dabd20ee8..462791472c 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 03cac40a62..549dea9145 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 53bac6523d..8abb293bf0 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index 9b333eff1f..c9dcdf2af4 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index c20f2ea5a3..861a877d65 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 754a2023b6..12000acf62 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index f0ceeaadba..576e790dd2 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 40fe6961d7..2548ddc851 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index d0489b1d97..7ff4389b71 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index d3e2c502bb..26fd52efa8 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index 5dd85fbcc7..e95ac62277 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index bb376bcbc9..fecf4bafcb 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 3bca5f50bb..853565b80b 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg index c9602588fe..b8fb0fc084 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg index b48555902e..170487b7a8 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg index 70f126a30d..314d61894a 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg index 34e9d8d056..edbf7c4d7c 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg index 534ce0e782..408fd5b062 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg index c7cb7ddb90..e4e8ecd157 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg index 09c0a08749..3700253dad 100644 --- a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg index 9f68524bb7..923e252770 100644 --- a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg index bd453749a6..a716730eed 100644 --- a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg index c622ef891d..9a414b2f15 100644 --- a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg index af74ae635e..5b343453d0 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg index b4b9de8b88..c57e47950d 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg index ab4f8a1239..04bb078949 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg index 3f68a2cfac..289646eec4 100644 --- a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg index dc19e88cd1..560fcf2c35 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg index a85bbac743..20fb1056bb 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg index 4176a6720f..13885dda24 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg index d30ef99770..6e1708c534 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg index f912e562cd..2e41da31be 100644 --- a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg index 70549b4b59..c15be13de6 100644 --- a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg index 928bc4cff9..45380a16d4 100644 --- a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg index 8203979de3..1a304a07ed 100644 --- a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg index b464d9fb14..49567c3ebd 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg index 8f2353cb15..e8e13fa7f2 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg index a40d1d0687..8a9d975219 100644 --- a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg index 9730a818b4..29adfb091b 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg index a4a75cc815..fbee684ce2 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg index cc916177e5..a268baf68b 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg index a71256c3aa..0c918f88ac 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg index d4f4738309..73d199f6ce 100644 --- a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg index 058691fa79..e2beebc76a 100644 --- a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg index 94921dc336..16894ed8da 100644 --- a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg index 27effc7be8..d3551c51bd 100644 --- a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg index 1bc905dea8..86b8596128 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg index 59cb70389e..0e9de77d8f 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg index e6f7bf74d6..ffbc74268d 100644 --- a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg index 550269bb72..4af1cc5535 100644 --- a/resources/quality/fusion3/fusion3_global_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg index d1a46528a3..5f36f60d73 100644 --- a/resources/quality/fusion3/fusion3_global_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg index 7a0d9903f9..84bc1e0a27 100644 --- a/resources/quality/fusion3/fusion3_global_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg index 7f96dfd125..ab2cbf7de0 100644 --- a/resources/quality/fusion3/fusion3_global_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg index 2b008a34bc..91b851f576 100644 --- a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg index b35f187e4f..e3ad70b5c1 100644 --- a/resources/quality/fusion3/fusion3_global_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg index 56949ee359..59475969b8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg index 521c02c0d4..9fda1b2e51 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg index bbf17e47a8..0f3057fe82 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg index e2e561fcb1..e459a9d096 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg index 02050a3ddf..6e4f55fcba 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg index 9ce8fc3942..3e84045674 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg index 4b65a92d95..b5b72a1d6a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg index 8d23c0dc6b..d1497b1d4b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg index 50cdedebe0..9fef4f56d2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg index 126bd092a5..3150c7bf1b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg index 8587dc7962..321f584169 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg index c296921d46..79203249f8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg index 0a75d800c7..23ad0fa136 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg index b4bdd0a93b..bd77f7a194 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg index 95fe7f7d8a..f6e74f21de 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg index d1ade85d18..6a0ace1634 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg index d08208603c..be9207dfe5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg index 46228e4d7d..f0087a0135 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg index 16373eb8ef..08174d60e3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg index fb007f9a89..5db816a83a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg index 8177d8966c..45179cb24c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg index 4853c2e5e1..db97cac4f4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg index 19647ca550..5036b82e30 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg index fff6581a5b..8a9cdf11c8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg index 4100240278..e3a026eb54 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg index ac8a268c16..c510219770 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg index ed70b58430..6ca89507a9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg index 4bcc9c1d86..f9c427f3da 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg index 95ac3b3131..00afeb3d7b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg index 6d79a235c5..013a9a81c2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg index 920f577503..5cfefecfad 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg index 3ff4c8265b..64662fdfe2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg index b53467ee0e..14797b146b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg index e332e2dd0a..5b47dd59da 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg index 59ab8728fd..ebd00a13aa 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg index b5f47c0cab..6abd2e66b6 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg index 70a4bdaf53..9b1deace62 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg index 5220a0b9d0..a5415cc14e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg index 9d21f11fbb..16fd183692 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg index 861a42b02b..6473b02231 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg index 3a24d0434e..696f4ef947 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg index 31f314f746..362ee45ceb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg index 5f0c62b87c..6a68da9a6b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg index f4c58e13f4..3647e19894 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg index 8099a6d9ab..1e4e05e520 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg index 7cb4b4a403..a86131a041 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg index c5fca47a05..298569b4e4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg index 6eef17f39b..cb34fe279d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg index 99d35c0aa1..d650752d4c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg index 56a835b8b9..4bf0718a0b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg index 611d41e945..a8c395e18c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg index 9fcc9134b8..238d5721a2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg index 1387a15850..d4aea0867f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg index 949889dfeb..6ab31aac4a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg index 4cacb4446c..4bcdf7c5ae 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg index a59ad5cb2f..16a6a8866a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg index 813e0e23f8..2d17a5669a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg index a739a21985..c23ce9e590 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg index b3a3737105..19542d65bd 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg index a8eeab044a..e963451053 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg index f03daad1c1..5a71879909 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg index b4e4512748..704342ad44 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg index 420564deb5..a8c9fbdfea 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg index 8d3780d66e..f166dcd8e0 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg index 86d18c3ae4..a9370c5674 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg index 7099f6599b..829c96a27a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg index 38e93d5c17..eb9747c47d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg index 3d31995b84..5a4ca40612 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg index 7aac640434..29f950977d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg index 8d12668db0..41fa491055 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg index 0a3b3bb737..d8036a5885 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index d9f0a0aaea..120b8e9cb3 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 620622e555..6718a49e29 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index 05eeb68305..f42f350d69 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index b63ef09a6b..2a65300e35 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index a476f1d287..4ff40b9db2 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index fe59d12cd3..2aa06147d8 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 7c6c9c5e38..1ad1a76b9b 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index b1cdcc129a..3b0b433ee4 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg index 6f66349551..44aeccf545 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg index 3056dc187d..635575d990 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index 9cf290ce73..2c0df2f7ac 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index cfbc840dee..4b7e34524e 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg index 35a0b83d81..40370dcd41 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg index f7deb1bd43..9ea1e92e5f 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg index 89a5ebe403..4f899585ec 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg index d8aaa46c56..2c9710a487 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg index 48a467369c..b0c8caef65 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg index c210d234b1..b30bd33e3c 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg index 881a3768d4..9e6f652f87 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg index a8e2cd8475..7ca5a1939d 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index 1cc4b04206..d382453320 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 23c7207715..617bee3083 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg index af0c913efc..bff7afc626 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg index 16a19e22c2..c6949b5820 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg index 3916a8683f..ee28d12a05 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg index c4fd612bce..981aed3726 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg index 3ad812b25f..a752b4ce18 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg index fe8a911220..602551cd69 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg index 4a255eed13..07cc2fcdae 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg index ecd3ec02e5..cf030a6f8d 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index d19830d7e2..55e01a8ba1 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index ddcfa7cfb0..e42993080f 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg index 143a1374e2..1a73f46b85 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg index 094bb29505..dbf082da40 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg index c2f16c9d70..65321d4fec 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg index f9076384c1..75d8941434 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg index 47b25e5b37..eb09eda464 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg index fec406103b..6f7d653798 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg index 793afcca70..7f37899966 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg index 2f0d73b67b..d1c6e6bead 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 14874b5610..2daa1107a6 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index f5fc3026dc..9948b00c8d 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg index a53b02ac90..9e060de7cf 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg index b6834ea9bf..4bdd3ef015 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg index dc316d182f..9f1afa96f6 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg index b29899f505..ebd0e10908 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg index d554ed8996..01b7889d9b 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg index edac2f3727..099097d723 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index 88bf7603ed..cd9beaf5a7 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 01e80cae13..93c7bc6d49 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index de8881ab86..0011ca9d41 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index 628015037b..d219cad79c 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index 0644d56d7f..f57797456b 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 8176f32de7..3fce59afe3 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index aab544c9ae..fbd171efa2 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index 27733517f3..d2bb27659f 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index 90fc50a985..99d27a7f56 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index 714d26687b..b0a4334327 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index 6dd2f5f2c9..6bef72abfc 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index 31dd2d8d9d..5d0c696b34 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index e2e1890e50..8e755fb23d 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index a9a5cb78bf..7527db4b4b 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index af85661375..921cc3c0ce 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index 75973f7611..9c5b3a901f 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg index 382b5b7b61..bcecf64b08 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg index 68949c1d6f..6704636080 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg index 9054c9489d..89014792ab 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg index 4e128688b1..7cc9f07223 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index 8e3853a082..ff991d2e92 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index 7af166b6ef..387bc2803f 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index aa3f930961..4749e80886 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index ea3069b9ed..e2cc8ebc5e 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg index cde0ddc48b..636cb46324 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg index 9bf54a37fb..94f7035de6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg index 5a7a645b52..046c224eee 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg index 7e404b7b90..c82d1e59d5 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg index d3c2294534..ba1f025416 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg index 7ba6c2a6f7..7c13e9a36c 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg index 7fefcbba15..3de4182895 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg index ce588169fb..ea23db0653 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg index fe1739a06a..0d0d14a536 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg index aada93345e..3bb109d6c9 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg index 02687e6e26..5edf0b9bd8 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg index 222330b5cb..ae16cbc3b8 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg index 0861c92358..182a5eb557 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg index 70c1ba0756..1bea3a0353 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg index 38beebc234..8fc710811b 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg index 9206ce61f1..8c5e9ebcce 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 68b74a82c0..2a905fb6a7 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index 701cd1545d..c07fd746d1 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index d3d259258c..6f647df03f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index 69bdbab195..a908ae58c9 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg index f67b726f8e..503947b259 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg index b93f42ffc7..e68a678370 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg index ea4106110c..2c8ae1a79f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg index e2330ad8af..dd79f1ffa6 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg index b61e7ef3cb..a7f82c656d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg index 41dce05fc6..5f7de68aa0 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg index 47487c9e0a..7594f90b2c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg index 41528048ef..a26870a135 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg index 479c51c9b7..4728c71a2f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg index 733be0fd46..9c4c3d1b17 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg index 4d324f8a7b..93b15b522a 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg index a5c3b8f34d..7ca4ae0e0c 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg index 20861e56cc..7c6018bf2c 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg index f9b17d8fa4..4b88ea8654 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg index 54a3390e5e..9894d7449a 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg index 2817c49e1b..6ae4291645 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index 378b6bd04c..5deaafd570 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index bb63251d3e..1640a2df7b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 63ba70aae5..907140849a 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index e5bbe53eaf..575a91c50b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg index 4aa8ebc640..e336fdd056 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg index ab2d4f7214..1dadaad261 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg index a6fab274b7..427fac9af3 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg index 4eff58cc50..723879fbe7 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg index 9e50a5cf80..b5bb1979f6 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg index 24de9df2e1..5501ac6902 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg index dc15adb0cd..9866bd5114 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg index 1115cf5e0a..4aa0b53205 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg index e1e666538b..5cbec44964 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg index 84d9f7e94c..a6d91a1007 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg index 59a2b76168..8c640dfb5c 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg index eb1a9273d6..53222d2273 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg index 0b789d09a6..348a785acc 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg index 8226e0ca89..46567e5724 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index bb7ae4327c..4390447146 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index 75f3570b98..2d28320a98 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg index 681d84301f..17b8df3dbd 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg index ab2609e099..e832ecfd9f 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg index 5217639a6f..3d1af0cfde 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg index 6e99c89bc6..e2bf82bbaf 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg index 759dd180de..f7dc4ed76e 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg index eb4d8f8c69..6c1d838564 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg index fbeebdff0f..896c4734d8 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg index 14402ffb41..2ef08555de 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index fdc7cb697c..674a74b59a 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index a242253f4d..060f1b2078 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg index dfbe334e38..af1847498e 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg index c6bffb0caf..774904af4e 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg index 3945747b1b..beb2bce12d 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg index c4d0928d9d..19e0532dc4 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg index e3410dc193..da00944e6e 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg index 1a7d1343e1..e59c08ce03 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg index eea1633018..121b088b85 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg index e3b5210a10..6bba94e2be 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index 9301e400d0..e0f595bde6 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index 33c548ab33..9ede72af1b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg index 3e0b6583c8..0be8604ae4 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg index 59ae5b69b5..7ba70b1d35 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg index db75bc2c67..356904c310 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg index 259440b6a6..43f9621a4e 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg index 72c3baa2a1..30365cd67a 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg index a8adf0b443..7cda0fac5f 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg index ab949f6a6a..527bf85048 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg index 0eb5a9bc61..2080deeacf 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index 6d9549bd62..da0a593f95 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index a2d72c1a69..d8d1a7ca87 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg index c6a0204071..c22215a97e 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg index b8e976b1fc..361687e2ee 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg index 1b153efe8d..0b40b616f0 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg index ea80a02e30..a6352e8542 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg index bc46f2dfa0..217577960d 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg index 3315f0d248..5224461e41 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg index ec03597e07..d80a21dd47 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg index 086d782b4f..6e77446e48 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg index fa9eee18b0..5b23f59e2e 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg index 32f99a349c..0c8a2e9d47 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index d8baf0aabe..9170a6ccd3 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index 2e51112f23..b7165ca165 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index cb3ddd7e7a..c9e9e48f4d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index d935d4c1b1..c4a2ae6ee6 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg index 4f5cc865a9..03c98d3620 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg index ce8abce4ac..0651e514be 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg index a7d3f6b27a..ef9c935596 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg index 6c5ab971ef..dcd50bc969 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg index ec0ac7ad63..e536456bc9 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg index 37f541bd8f..9deab3245f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg index be2af8377b..ecf42151cb 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg index 208e815039..02c02bc3e6 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg index 9c6c8d5eba..245bae2a99 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg index 7e78e26ff8..fb58a85c07 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg index 04dcc09c2c..4d97e9e32d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg index dd60d832ae..065fc1731c 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg index 78c695cece..9ea26f12e8 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg index bf53a8e25c..5128f225a4 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg index 804cd0e68c..bdcf429b4b 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg index 2d539d0b57..2f2985b521 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index c0d56f38ec..c31e8c3165 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 61b977a1db..77e928ecde 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 758f32d008..4f300b8df5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index 43b128a8a1..cf42e403b0 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg index 477da6f14d..bdfc2bc6ac 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg index 71fb033e2b..781e1a49ca 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg index f8cd0df597..a01576b86c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg index 300b611dad..d6e876a7d5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg index 3c252ed862..bb2f366c99 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg index 3854c6d138..aa93b4aa81 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg index 8fd500f125..05ba27ebe5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg index ac055896ea..bf53f2de7a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg index a17a103662..d6c47ed9f1 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg index bc2340c2f2..d7238ad4e5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg index 60e710cf49..6ec648b3d5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg index a74c970491..623995b206 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg index 4397bed5bb..44c249c816 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg index ef364d7dc5..9be8e0a81b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg index 8123c177b2..55946c3114 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg index 336015d159..905359674c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 2ee07b5ee0..924af69d3e 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index 84409b8560..2397cfaa83 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index 2f6ecf9b3e..38a70388ed 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index 9997e79ff6..62c13964a0 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg index 3856ee3921..390be62de2 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg index 5ce9cd2643..30931645ad 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg index 9471178bc1..33b80dd579 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg index d7929e5ae1..250cb060bc 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg index dd3a2cc592..a69b7dcc37 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg index 605838791f..9b822a58c9 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg index 5e9fff7262..59283a5e34 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg index 6f7bfaf0a4..c55e3ad761 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg index 6d05e8ce3e..f0f668ab32 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg index 2a365bbdd8..2688901e07 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg index 18b2535fc8..47045c91b8 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg index 25c4d06093..7b1b50ad63 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg index 83a44b24fd..6cf5819318 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg index cfb5cd1b7e..156a652a8f 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg index f1e02ab23f..1a5215be93 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg index fc37e37d3d..8c16dc8cb2 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index b10b339231..aa74e974f8 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index eccc713d38..dcbe3f44fa 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index 30c0d7b028..a69c6e51bc 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index d4249dd736..5cf34da5b3 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg index 52bb7224b1..ab90f22afd 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg index 937440d1db..eb511de63f 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg index 8c3443e5f5..9a84bc7a23 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg index a125ec8817..af8d148076 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg index 100aba53bb..4ab82b5dfd 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg index 74e44c5249..83dc2864d9 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg index 967ed0a1a5..43e36bb640 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg index 5f9443f94f..deedf0bf1d 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg index c02f3de320..142cb15786 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg index 31210dd237..9b770447bd 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg index 7103f6f518..b80eabd35c 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg index a6cc6efe66..44730ff9d3 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg index 6f05c25a56..1cdf589a09 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg index d52397d199..a4e470199a 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index 59031fa764..20d6b7d38b 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index 5886287af0..d71b7310b4 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg index da4c292506..75bea2fc24 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg index c6620e11ea..1d054195e1 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg index da4f814433..d82203c2e7 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg index 2806286c73..cfeab2566c 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg index 4090dbf86e..2448c605f0 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg index 64b49409dc..9a817f0e39 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg index d786159358..380f4e2dd5 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg index 9e9f0e8ce6..439bd15e25 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index f51712a0e3..2fa405b164 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index 0aa5380ef0..5c7cf701fe 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg index 7f3ef09e5d..8c59997a60 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg index 1042e7b351..00eca070f8 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg index db4e0037ea..33cb7b1a87 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg index f1505283ee..5f54ebf647 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg index 0cfc788460..9eaac26a42 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg index 2f1d6f8a3c..041302c244 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg index b0924d5ead..e80ab9d9ee 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg index 5da003b6cd..ad81d57fb7 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index 7bfc28b0fe..0443634dc4 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index 08f7171220..b5275e5c2e 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg index b8fd1635c2..353632253d 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg index 9bbd2ad7d4..274cbc354e 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg index 5f98ee9cfb..6a85e0c7ed 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg index 58c8b1159c..08aca6b910 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg index 6f97ce76be..1a1e074028 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg index 53e207635c..f9f8010d49 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg index 0e316b5c4a..9defbeb911 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg index 717b598447..983c32e725 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index e70c1b67a9..baa5bcae96 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index a13ea62fd2..4f94d09d63 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg index 9ca061bec6..2fee6bc6ad 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg index 9c3552f6b1..6f205a97a2 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg index 61c4222003..fa705a5520 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg index 1bd2aeefb3..0baea30908 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg index 75e485b560..15c3ea0e2a 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg index 1fa396f1e7..8b56269c2d 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg index a24167ad8e..ea804f05f4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg index 59faa1d11b..274838e728 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg index 485c18956f..0e78ad6acf 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg index dbeca61566..c340d22e6f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index a34b591de9..92050f0dc8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index c0f03fc7d7..7976f5db53 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index c6854faaec..44b404c6a1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 91cd4fe42f..9f71bdd306 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg index 943647c002..d9b2378055 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg index b83988fb94..74ab85f6b9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg index a49d3ca4b6..54753bcd6a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg index 52e0c9ef2f..53742da7ba 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg index f15fde22ec..1b830d2bb4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg index a56bd4d9c6..e6b6248c65 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg index 835022875a..ca03daad0e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg index a9c9cde3f8..eda258e7de 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg index 23083c1a04..7d1fdddb59 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg index 1a2d3063a4..474ec20184 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg index 3ba2de10d7..c19ce0e996 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg index a21f8ad647..524229cfcd 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg index fb219067cd..b4c78531a4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg index fc6502628e..b6f9ae029e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg index f14b42e672..d681300f02 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg index 9ab81d4ab6..de5b575061 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index f96fcc751f..86536b0e01 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index cb908e5089..12df7e9cc9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 46aea18e0c..576c85cdfe 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index b00456d97a..2d739906bf 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg index 48fd247c17..77e61240d4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg index b4ced41c47..27ff3f26f8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg index b05f7fc31b..85b73e4b6d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg index fb393edd18..21ca35b524 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg index 8dbca6af01..9ef89bb7c8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg index ac7fccc482..a85340ad4d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg index d1b58ffed5..e2ddb16800 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg index 53b131ad0b..c820a301e7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg index dc1b3f52cd..c0cff5cc4b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg index bcbb301661..9931f64de2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg index 8f6fdaa339..c954561593 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg index cf1d7d5b22..cee16a757d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg index 4188aebce9..76215536e6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg index a511d11351..02e0c41bb5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg index 59e90a3bb3..5a1e3c456a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg index 9c85e6c6bc..1f36479435 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index e03114db76..b8c86af345 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index 8a5094291e..d12504ba95 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index a30cbd0483..e5031178ca 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index 647eb3dae4..2e60dcdcc3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg index c5f5804074..39dee8a34a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg index 8d61ff22d0..7b2eaa4d07 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg index 75198a3df8..81378a00fe 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg index 0bba5cf295..2079e1f0c8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg index aa7b5d0b24..f2380c7cfe 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg index a83b0e3ad2..e3f6c13bea 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg index d64032362a..2dce8f735e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg index bda9411fb9..3f60c32563 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg index 6c2d4f0e00..53f23e6eb3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg index 20cf16c1d4..46e26a0626 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg index 7007418194..bff51d98fd 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg index 5759d5678e..1201a30d5d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg index fd3fd0a200..e9645c7f0f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg index 4c811504c1..7e7fea7877 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg index afc99b665f..a4ee3f3bf5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg index 1bc5484174..125f0e9beb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 9213ee4150..8a46d6cbd1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index 8bce4ab525..ea6cbec13b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index f9521a4014..f7a613a20b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 705153c9ac..44ac6c91b7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg index a7ff3efcdb..7f93f92adf 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg index 0103f6ddc8..61a251e220 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg index 3bdb5f9759..7db0bfd557 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg index 77141c38db..2f8a3bdb57 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg index f3b67d20fa..d78c1b2bf7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg index 816ce00367..0513491e11 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg index f2efc7ef98..3f92cc307b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg index 4df8c1e46d..4c4fcd3605 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg index 1f39390e1e..e36d6cc922 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg index ff27767a2f..16679787e5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg index 06dff2e66e..daadf2a25f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg index 094c11b8ff..220f3b38e7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg index f06b2abb44..72b6c17e6f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg index 8fb8978957..480a6d0d46 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg index 3de8dd51d8..4aed3391d2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg index 4b023b7c1a..a8b259e40e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 4f51919bad..4515d11786 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 0bd2e821a3..9332be7f50 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index cb27e45ea9..75cec5183e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 894268c3b7..875390ef4d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg index 7c2aab3219..40834d6db8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg index d96c20174b..23c59fb500 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg index 058655a1e6..e2ad9d6fd4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg index 1ff2b34068..c70bdfb20e 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg index dca5cf9f3c..9f860abd28 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg index e8375270b5..520f8fc8a5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg index c7dec1380f..8fd2bee068 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg index 19c660a4f6..561bde734c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg index cdb1911b9a..671b54bdf4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg index ded43d0969..ddd379be18 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg index de7c1f3620..b123bd5721 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg index 10580fbc2b..36875a4c57 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg index 79855f83e2..11fafe0809 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg index 91073385f7..0fe62096af 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg index 56afdac231..29f1abb2a7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg index ef32166d4a..00deef516c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index bd016036c4..94ae0743fe 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index 39a950249a..f9b94fc257 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index cdbf92d318..46a3a9fa61 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index f80b9c0f0d..56f92ab16b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg index b321728ed5..bd58e7adf5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg index 5931a2497a..cee9e4dccb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg index cd3ec9b4d5..9f02a5215e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg index 3374a8e2ab..6f53a862dc 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg index 2fe1a46d66..6046f738c5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg index 829c8fd491..c07b6dfad4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg index bf09b68564..bdda4ef8a1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg index 1d04870b05..fb0fc68a5c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg index c1b973352b..4c01ab631e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg index c8da6547bc..1a4c2426fb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg index 69f0e97e0a..968a7a9c67 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg index e8a065418f..6a216a25a1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg index 5f8af2b28d..457eefe206 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg index 8b8e206a78..5008a6a0ae 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg index bd93ca1c6a..2e9e44565b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg index e5c179ff45..bcd800c289 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index c6567c80f0..aac1990e10 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index 7fa272e40d..d8e6eceaa6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index ea04912106..0f3d79ceca 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index cdf2ec8d71..35d29dfef7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg index 84dbdc550a..c4bcca2059 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg index caf6cc6cb1..0332a2f238 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg index 84e1264d36..931a14e739 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg index 2f17885289..c613d41901 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg index ad526c1bab..9ca43bb40f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg index 0a7582fd7f..57332ca7b7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg index b417b80c86..a19e30459f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg index 838a440182..c6f687d186 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg index db4115a0b7..a8416f211e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg index 13dc3b1aeb..7e5063001f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg index 95b67c7b19..80e240c99e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg index 3c418caacf..30c88bcb71 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg index 946269e6e4..fb5ce48208 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg index b36d981df9..5e4135d37f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg index 3bb2a5c25a..2ca72b6478 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg index 318b863137..fb76a0b203 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index 19bbd2fee2..a604d591e7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index 1b0ac9a8ad..36aa675aa5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 35c69885d8..9f8ea69fb5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index 60652b1a40..30b78bc806 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg index 2e5539a0b6..440620c4f4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg index b00f0ce701..7d04f1fe66 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg index c6b885df4a..f31ca3a447 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg index fcbe4aa9ac..78337e4399 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg index 54349a9169..a522b67182 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg index c0e790de03..a5237fd688 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg index 1e66935368..0735eafe6b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg index 6d49dbd117..ac8f22dae5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg index b74e3acccd..2137bb44d6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg index 7501c72dde..8bf07b71bd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg index 3feb6df3a0..1b0303b4a0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg index 935f974003..12af81f8ff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg index 39e214fda0..5f23442d9e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg index 8a51924281..1e1954997d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg index 834d64152d..c2dccc4c29 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg index d6fff7acb8..29be08b135 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index 0979c5c314..d1cf9b5edf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index f92b859fd2..eeb45c2cca 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index 7893fa30e9..8205023bcd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 929c20e5b9..3495ff4d3b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg index aed7875226..208e9a81be 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg index bd21d6e301..2df649ca35 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg index f720646b8b..1e56bc12bf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg index 26fcc13cea..f1f8cc59ce 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg index 060a636082..ca0921304a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg index 736bd6ba52..e2fd6b87d3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg index 1af5ab5773..52d3659570 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg index 64752f37e0..8a005e13f4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg index 058eab3b51..35831312bb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg index 29dc4ea9c9..0ff8d89664 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg index dcda2fee8a..43859075e1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg index bde488d5bb..09e685a14d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg index 962ee7df64..99187ad5df 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg index 6fae0d7de3..81fdbdbafb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg index 045e0dd9a3..3ed41c0309 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg index 69adc588fe..b51daea66f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index a30c01dd54..1a054a1259 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index 629a750003..9ba820f877 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index 472c51f9ae..c89eedbf43 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index d745270314..39d4687305 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg index 25c69b0716..7bd3af8187 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg index 327f56569a..da4acd2f6f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg index 0bd8183eda..d3a322e465 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg index d86ac946c1..a63a8816e7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg index 6fa76cf269..de0137a4e6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg index 9b67dd691b..fa28f435c6 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg index fbcee52ef0..16534a9d4a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg index dc780ccce1..3025e1b77c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg index 7e57571e07..ebd9e68fe0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg index fb11dae28e..7f039d1a1c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg index fe89dfb09f..cf026efa1d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg index 1a8351b2ea..83700acaf2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg index 79ee9f35d6..9c912e786f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg index 01ea17738b..c38c5b2fb0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg index b227780b3f..44f3add9e2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg index 94b03d6653..573484ba80 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index ba8a374e6a..9aa7c8002e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index c526af5f69..46469f6f29 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index 9ad5e221ee..05eedcdbb9 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index aa480a3495..681f07472e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg index 2d4c6d3501..30ad404a8c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg index d81ddd486f..fbe87ef6c6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg index ccc463655e..9fe7f059cd 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg index 14acbc16f3..ba0d5867f0 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg index 6f3ebb98ed..e8848d36ed 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg index f07208c662..5a581ba104 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg index 2c436418cd..9999ad4926 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg index c341378f23..b99ed6619c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg index d8bae28f18..e69de84b62 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg index 3a8668d705..181121e481 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg index 63506d7c13..073a976f16 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg index 8babb65317..4a508a0a06 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg index e6403083d2..3c8b00f626 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg index bc8e85b663..3ce95f7a63 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg index 802e8c299b..3b41b07a06 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg index e2128f9758..3210f1da7b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index 0fce605922..46e75f3899 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index 955492c995..aa4f99fcb3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index bc91dd8771..679e88140f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index e508f330d2..1b3680cf73 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg index 6ac15e5f7c..dac40bc410 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg index c72b18b91d..80b5c6b650 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg index e143b95b71..17b366bf72 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg index 528052b6bd..cee54c2363 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg index d4740559ff..e4deeed9db 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg index 441cada5b9..adeb956660 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg index 816d60c36e..682d398b68 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg index 2b8626361a..e465530528 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg index d28480fa4d..d7a74a43fe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg index 455ba84ee9..50ecaf14ec 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg index b58b7b1d88..04334a9c55 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg index 3ee1caeca5..427ecf378d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg index ab5ec4e748..98fd96a26d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg index db0a844d97..f4dda4780a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg index 856335f5ad..6d9bfd898e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg index cf6165f701..83789925b6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index ea69168c9c..6807168f8a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index acd7670bb4..72f6883afd 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index 098ab00000..8070d0e64c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index 8049d029d8..4abf8d0c80 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg index 54dd0fb008..4367c59ba8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg index 5e288f02c2..7290662db6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg index c01fa7db09..28b3cbc3be 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg index 09c0853432..48f1358124 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg index 02513dab07..63395c97e2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg index 92b75c84e8..bb80d477d2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg index 8a1a9b7d33..234019da73 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg index 9ac586e25e..8106b3ef21 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg index 40a51f422f..7ff797252c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg index 924e6f6f53..2a667d6466 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg index 4c63c9486d..df35985225 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg index 2a21f43111..e2d4610158 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg index 910eae2f47..495ce5971c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg index 325f037957..7d13a8dadc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg index 811ff42d68..d895be517a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg index 827c3c43a7..e34dcbac6d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index 431c8020cc..86db2a4d45 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 4e204492c7..6b4d27dd4a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 90852fabc1..4886566493 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index 8a7f848d33..a38cf1fd2e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg index ac32149455..5a23fd57a2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg index 2e79e9b88e..8e4170d9d2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg index 10b33ca2c4..938461c5e7 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg index d2819a8f01..9e4a762812 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg index c8073b57a0..336196c2ca 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg index 3a7f1c54ab..16e9d629c1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg index 535b1da3c0..cedbff00bf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg index b96a76d79a..434da68f63 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg index c788c0d887..5e46e31d8f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg index e5c236d98c..a0b4939bf2 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg index 7723098574..4a39e1c8e1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg index cf1147a425..96b2f04cef 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg index 596c4b79c5..b3e32302ab 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg index 0d97b4ee37..c64a33386e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg index 82848057d4..a7959b6cc9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg index aaf25c03c9..2493925bfd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index e9a74178f6..1f98a763f8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index 7e2019db94..f464e71639 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index 9cdaf34562..279a08f94f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index 155219e40e..29a442d2f2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg index 68264892fc..806e5fd9fa 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg index c5678f48c7..cc43279098 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg index b43f566e08..b308cdd674 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg index cc8737355e..5ffd943827 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg index bf326069be..90011648e7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.7mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg index 156132c8a7..d4be1df646 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg index b640517870..c1d11ee1e5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg index 0763c0b969..06d6553302 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg index b8e72e2b85..713055db6d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg index 2fe0334d24..d537e2bce9 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg index f6aac1d38f..67e57f4a4f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg index e083b57522..4bbf391b45 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg index 72066ca6a3..01dc8f7675 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg index 5256fc3783..e2dc4fb2ba 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg index 5dabf9f38c..87062b3c99 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg index a55d9c304d..c6fddf4d72 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg index 1fe7644f2d..011559774d 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 60d0b6687e..7838ee5fee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index e626039e59..197d91b836 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index e9ebc84cf2..835f59c754 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index 8ad915955a..c5e129679a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg index 6864af98d5..2e70de1784 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg index b8d46420ac..0b690d4ea6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg index 3ca1390368..550659cd4e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg index 44c569cd81..db0e547e98 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg index b55e079336..3b34147009 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg index 5f4a94be7b..506475b0b5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg index cc19dd93ec..75f6251d43 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg index 56f7201381..0020c6afc2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg index 7005a15a08..1721758d21 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg index 4440229bfd..ae3a1f9195 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg index d7eb2fa3af..7ceb595c4b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg index b36955655d..436fef5536 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg index 75559b404f..ade3324090 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg index 98e1d91ab4..d84355a0dc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg index 17d04e9444..a8ac3c5a58 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg index 6cf3047e35..32d826930a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index 8a0c63554d..e0b1b83885 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index a163cc0958..8b2d5d8dab 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index dd3074ee47..a4e05f0b1b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index a1ac06a465..3dcf5d8cf2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg index 4d3ded603e..bebb81291a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg index 472bac1b49..fb219f2e16 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg index d9e9c6baac..9c23538b5f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg index 11a5bf11da..bd4e3851be 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg index 73c4381d77..6d788974ce 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg index 9ab5b47fc8..be1ad19db6 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg index 1d9a367606..133e168d63 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg index e8c6338461..2d895109ed 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg index 1b3a7fc630..d25c4c2793 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg index 6365705e9b..eef04ba0f0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg index c19e5744bf..bc6abd6fde 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg index 1f06092793..444258d3e7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg index 3a66f22968..aafee1609c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg index 030a1215a8..91dfb9945f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg index 526c675bf5..383b814804 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg index 7064d1dbf2..f15973a0e4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index a5c71b0f01..f1855c07d7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index c075dcb892..2cff52d0d7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index ed6df806f2..45b10074a0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 7acce33904..55c4a61eee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg index 436ee3fdae..243bdcfaea 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg index 6fcce27f3b..8913a0d710 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg index 2b2d770040..7e30359f03 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg index 70d0a9e1d2..6aabac6e5b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg index 8656ed85ad..61e3bc8944 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg index 909c82ace3..e24514e973 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg index 0bc7b9d98f..f2a18d1a0f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg index 746317e2e8..25f5eea228 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg index f0a74a8fb4..d6f8b70abb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg index e63033750f..78b6abfcce 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg index 893340e54c..4d2b12b952 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg index baf7204993..89863c4c31 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg index dbf4d02cba..9f9fef6d60 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg index 8cba0d5d70..f7e1050f20 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg index bea05b2d8d..c04809b64f 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg index 172c4bf9d7..1668ede94c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 53712efd2e..62933a4fbd 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index de5bd5d156..7bb06108a0 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index 806c5458b1..1c0691a7d6 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index 55caeae945..48f165411b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg index 7611fdf69a..a106cf2fd2 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg index 7ff408c45f..feccfe4d0c 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg index dadb1f716d..e7c73d65ec 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg index 675e64af20..072c9b3697 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg index 6b6b9c295f..0822ed9395 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg index 1abca53167..af138ec9ad 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg index 2ce84bd9c2..5f56b9858a 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg index 86f97a674a..f19c453c06 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg index 58cd0e49f2..f771663bc6 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg index 3291eed01d..88619447b8 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg index d6bb3a6fce..32d055d519 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg index 3f2ab06293..b387713b73 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg index 01c7398332..9ef41cae42 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg index c09a540a34..0f51bcd54a 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg index 1362015f13..6d2760a8b6 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg index 098c80b899..9024d3af2c 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index a44a19eb1f..6d65d34038 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 4aab660f0d..951d21a24a 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 9721a8e1d0..03902636ee 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index 3402c32cbe..b427f6ade8 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg index 9420fbd8d2..a818846db1 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg index 77982e1559..7156000c89 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg index ac75323db6..2bcce8c08f 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg index 173d78ce78..a89d332e92 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg index d8772778fb..7accd1dc5d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg index d9db15f5e8..eb55f19744 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg index fd78553b0d..d6cdef8f46 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg index 4e59e51b30..4c7386319d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg index 977a131066..cfb6048bfa 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg index dd3b88ed5b..7aa0d81680 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg index 6a4b8f6e3b..7cbc5d0d5a 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg index 419a5ad42b..a217770025 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg index 30323b2e71..b5e6cfd2da 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg index 56be469fda..3bd3ce920f 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg index e8ad02e14a..beb9b922a1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg index e12df152d5..e167dcac9f 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 4e23322b49..664f3e6ca1 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index bba461fb89..444da63072 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index 6199be2bd7..3f9ada087c 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index 4827fcec13..d00e73fabb 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg index 546aa829cf..4343317dfc 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg index b95d38dc3e..c286dc2485 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg index a4e727516e..e31017db6d 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg index 07d12aea7d..d05f817415 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg index b786fe42b3..9a47845871 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg index 16def5703d..49609c7121 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg index b3128f40e9..0647fcbeaa 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg index b1c8aadb1a..9e69c455dd 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg index 2d28fab21b..0b1278493c 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg index 2b6825515c..1d31469cc3 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg index 4775bfc5a5..7e9261a810 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg index 2f3dbe36ff..abc24c245c 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg index 647d309c18..9d90340c7d 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg index 338162a5f0..c3369b073b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg index cb1293ea9b..098e1b2733 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg index 5087d749a2..034b928933 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index e147f68496..47443f2158 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index c031d26445..aa2c30969b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index 9d23c7aeef..c032396476 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index fe90f6970c..99e48b52ca 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg index 58c0d71f30..960ea90df3 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg index 1ebf0bc71d..f6be30dffb 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg index 07cde244a5..01f7d71e9b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg index d17393a5f0..02adae91d8 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg index f9a2ee471e..5bbf15d831 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg index 522e7b6680..22109fa736 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg index 5f8b9645a9..d005f36294 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg index 7d11410f2a..51afba93ed 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg index e0d002c768..435b079942 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg index 8606bbe8ef..ee17b3b568 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg index dd964bdda5..9d3027b926 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg index 1fe0d04fa4..b76e7d1237 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg index 1c31950f41..306b13f499 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg index 77fadaf668..7fbfd04d18 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg index 281e4543cd..3829cd6681 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg index abe75e6061..ef53446b4c 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index 928eceef5c..c59f80887b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 34ab0e6195..55ffd2c0ca 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index e84eb91d7f..a00cca72fe 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index fedb231ee8..c0348c50a0 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg index e554c172c6..9dd50875e1 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg index 5a10719a81..5975aed497 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg index ed09bacb5b..3e2c862d7b 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg index 16b12b6b91..67f9a187c8 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg index 5729092fee..fd576bf979 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg index e6e39fd2ba..ca2db4cbc3 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg index 08e0d0eece..ba6b8e3bdd 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg index 37a01916dc..d30b9f23c7 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg index e7b68bf571..104e8167c3 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg index cb050a5f5b..28a10003f4 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg index 1a1029e559..4acd15ea0f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg index d6456988a8..a31b09d1e3 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg index 74855b6092..7de788b6cd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg index 534591138f..d07ac3d50e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg index 3c94b57d44..a9c8d61167 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg index c200e621db..9e11cd6a41 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg index c8f20b8335..e29af7fa79 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg index 60d228122d..a29e3ab72e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg index b7075093ff..bb0e6fe9ab 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index e307ab96e5..c810bf612f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 9ee8c7d0c9..268f749a4e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index 37d15f963b..4eb93f317e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index 2a69859868..7b584856be 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index 7a6e8dcfa1..d82bad2d38 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index cc8ecb6e56..3fbc6b312f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 1611d21ca5..4380089b59 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg index aa35ac47da..144a7913ce 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg index 3ca411484d..e844f9d899 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg index 7d9787b30b..38f9972768 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg index 6aeb97bcfc..ea465314fd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg index 96baa3c36b..4fedd884d2 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg index cbf8db5c18..10dac63a0a 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg index 444701f3ea..c196470d71 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg index 0ddf69995b..ad943c9b4c 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg index 00a42d0e38..b5829eadfa 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg index 7bd13060f4..c062f66dfd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg index b2b1eb43bb..13461b69ac 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg index caa94951a5..ab3386b24c 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg index 3eb74338fd..ec1e72432d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg index 4bea650f68..de5ddffaa8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg index 1140c0d664..92727c490a 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg index a3aa026c58..eb9edd824d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg index 22a777527c..13fced9fa9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg index a776fd974a..a54569e07b 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg index b46485d333..d21940b51e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg index 52f1d6e15f..9a0b95203e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg index 730333d1e3..6b7ee19e86 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg index 5dd52d68bb..6ae18a8b21 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg index 05ead8d6ef..9ac8127039 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg index 01cc928c5f..2c703191c8 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg index d7c9e84fbc..07a9538f65 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg index fd2fd649d4..f0fcc87112 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg index 7264429502..95bd1f3d8e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg index a03f83f31b..bf773f65c4 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 4635987508..59bd0b6edb 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index cf7330481a..a7df472cc2 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index b70bc4bfd4..0fda0370f2 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index 1a238231e7..9d1f7abe98 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index 560cff2f9b..c04888e54b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 40c0a74634..165a7be1df 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index e686cbd2f1..2487452a5c 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg index acfba61640..3992eb5636 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg index e551061035..4fbf336105 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg index a51f972000..c71962cb1e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg index 33f7343074..c444297122 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg index 5be61a07a7..f2448b4f1f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg index 70791c3145..bec02e01c0 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg index 4c9805c372..0b61c51846 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg index d459bfce0d..0d8d49da54 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg index 9e1c45c8ce..13bb7b8a48 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg index d63ff9cffe..900bbfd174 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg index 576c8bda75..ac47dccb19 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg index d678e7e1e6..18854e1f8b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg index a1e3afd88a..a3d82be732 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg index feacb669e7..734be5fbb5 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg index 959288634b..23b596fef9 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg index 5e1e53eda5..7fb524d988 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg index ee1a941e0e..fc703723a3 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg index fefbd40560..583ccc7233 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg index 10e02d9d16..82e8848521 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg index 95715b6cd1..93a3eeceea 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg index 79a9ee23ac..23665d699a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg index 205b709696..85f0bb9e0e 100644 --- a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg index b27aa17940..55b1637938 100644 --- a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg index f4910f5e06..a70b33ef30 100644 --- a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg index 55c3a69a16..12d536938c 100644 --- a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 0b8675085f..5b78cb99d1 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index 7826d97ee5..bf18f50f12 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index ef85f8fc94..c70f229a77 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index 3420b89acb..9b016128d3 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 22928aaf4b..7c6743494c 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm TP extruder weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index b38847c3a5..8edf92e6eb 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index d1e45c384c..60703ed4a0 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 4a6bef8a10..50f79ee486 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 58f20365c5..4382e3194b 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index a411099609..ff8acff08f 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 40c5abd25d..194740ca18 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 49015dd769..649d0aa573 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 4363815718..33f64bac61 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index ad1786e646..55ef0c54bf 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index 9d20162475..e9efa56b41 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index 9cf8367db5..79c5d00156 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality weight = 2 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 58087e1241..24975658e7 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index fbb1051fdc..92cc50fe64 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index 838318b6b2..ee758d4c06 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index 7bfac678ae..f400857822 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index a7059f8766..ce0a5d45f5 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index 6518e6e410..eddfaeb3ae 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index cba3af5b2b..4d498a7d4e 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index a445dc28be..1f0999bac1 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index df0a0bf3f0..4cfc017bff 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index be43962f72..952c67285c 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index b3b35aca97..a9f4ce4136 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 22 +setting_version = 23 type = quality weight = 2 @@ -65,7 +65,6 @@ support_interface_density = 70 support_interface_enable = True support_interface_height = 2 support_interface_pattern = concentric -support_interface_skip_height = 0.1 support_type = everywhere support_use_towers = False support_xy_distance = 0.8 diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index b8db094434..ddd332c199 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_advanced -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index b117afb385..e24e5cb684 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index b60f936a15..3274629305 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index 38b46b98e4..a7ff77f71c 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index 0a305179df..bb49238d33 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index 484defc534..c7985d704e 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_tree_supp -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 748bbc5b32..61f44fe2db 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = detail -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index 30bb6ab0c7..d29c72d391 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = optimal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 733ff7624f..1e07e55fff 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index f2a7c48e9b..4ee1bab58b 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 38978f7b0d..2df4e25328 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index acde117ae3..b9605426b8 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alya_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 4e1f5b9fe4..0cfa315170 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alya_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index 8e5946f5b9..4accd0ff52 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alyanx_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 8058cff6c0..809f08de22 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alyanx_normal -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index 2efc4fe1ae..cb6a330c8b 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index fbdfc42b77..63f63fe194 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index ee34e155a2..d363393593 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = kupido_normal -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index fe12445795..d809ae48ad 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index b9de5eb8af..fc8fd5c7a5 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index c2dbd5b30c..34651bc83b 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index 7a3d2cdf25..456784f7ca 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 1e20e9f01e..8a4bcd4968 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index b4cc00888b..e413d82cf5 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index 9a86174233..ffe75aeb45 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 6c0397ec54..099e5081b7 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 4aad3524b3..6b7c08d2bd 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index 873469a2cd..d8d485ab99 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index 2650cf98e8..d92fd6ca25 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index d090bb6c4e..297a0b9e85 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index fc52768f4e..5630fdefe0 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index 6de5c3e183..a74f9f83b0 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index 89f8594313..cb5baf62b7 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index c7a207387e..e5b68e36b8 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index 80c0f84c91..d988800c1a 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index 3c284849d7..a7d361bdac 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 5aff66437a..6e146e7b70 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 40a5e5b90a..1567cdd68d 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index 421e1aa1fa..267c47b676 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index bd1ec6bc53..68c797149e 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 0477f43fba..7b5ed95354 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 45fc4b2087..0f4d5f9132 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index b931a8aad5..201e6a7b27 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index f436ddcaeb..4ff7b3bcb5 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 36ae1acc9e..9732857f87 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index f0a128e58d..600158f328 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index 65944f8c3b..08ae5147ed 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 31a8c4bc30..6bd87de8b1 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index 22da321da0..a9ee4d58da 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index 96c378d280..f92db9d0d3 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index 9b63dde5a4..c13c12ff0e 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 74b867d5bb..9705ae65b4 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index a542a404db..4bf4616338 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index fda0354918..18743bfb14 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index e65797d2a0..90b68a4b2d 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index 3fa5e6acf0..f4e2967c60 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index b2f95db0f9..90161eeb14 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index c6aad09ce3..88b3f0fac3 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 21addedb5e..669ee1ba2d 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index 24e2da4f33..ecda7d46d9 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index 9615254fd0..c7c486a8b2 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 20fbcfb72c..96103eaeca 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index a483c928c1..3b9e707058 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index 9256aa219f..f65914591b 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index 47073a583d..dd9512693f 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 0a07077e0b..8ddbf80ae3 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index f9f5a29fb0..2d3e127421 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index cd11cf1341..712d39c19d 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 54c202b312..09210cdb3c 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index a9102ff5bc..70efb35bad 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index a191f9bcff..0d75516111 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index 23491e7efd..a8cf9eac90 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index 24a9e9b6b8..096a94fbbd 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index e95c9baddb..184fd09da7 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index fc4cdaa8e6..825f2a1ef3 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index add438ea60..a243276092 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index e790b8ed55..0683da11e5 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 33aae2c1f7..272fd0531f 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index 0189652c32..78116453e2 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index 175135546a..3b02bf9e14 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index 086dfa8ef3..08afefaa7c 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index 711f6224f7..c07aec9317 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index 20aa28f47c..6309f6637e 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index 62a1033ba7..58c6b73697 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 332f9c2803..8a7142b9c6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index 748b2515cc..bf4471ea15 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 5cf6bdcc9e..9e4c79f1a4 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 1cc706dd5c..43328ed7c2 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index 0403091e22..a22662c906 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index daa63883b7..f27334e5f4 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index 6e3240ae1f..cbc2f2688d 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index ffdf3375f7..cd78f0f22d 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 6be460ffcb..0ff82bd8f1 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index c3cc178ac7..7e15efbd9c 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 6d6bd9b556..91ff4fa64b 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index 13507c0291..335da8db18 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index d4ae296463..5d2f1f1b45 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index 3efa4b1126..48fa66b72b 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 29451a74b5..0b965f6a3d 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 99476d6483..6b7aa3fb02 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index f9965beced..8fa29c3e7f 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index 770cdbc5d2..fd3c7d48c6 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index c0ef094bf8..0e1282093d 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index 34ee7bfb8e..d0687eb4ba 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index b855418b35..7a6a1a0ff2 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index e1ba09843c..24651d6e30 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index 8f923b9d4c..ed8f7487ee 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 0743bebed8..068213f167 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index fd717fe24d..79ac2a8dd1 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index c14a9e65c9..fa7f77732d 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 77717ab2b0..529fb00e0c 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index c5b9fa0acb..2555cbf163 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index b8a7c1eb8d..bc4dd518f7 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index c520885947..50d4b9d85c 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 355165ec90..0b96cdc9f1 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index d47c09e89e..8ad236a3a5 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 038affd56f..7edc4475d1 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index 5091d36813..adbf76cf59 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 0420284fa8..8f02ace622 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 927bdbe7b9..481f928668 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index 998edaada1..793b141039 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index c78ee91b58..82d3afb3c3 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index 33163ca619..79a9ec7afe 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index b238e6ec0e..20e046ae9d 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index 8b18b13ee8..9ab6e00494 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index d6142952a3..bad45f35ff 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index cac80d655d..2c1b409a61 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 5385420a8a..92e7b6f1dc 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 02d1292c17..43dad6ef40 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index b1c540d01e..61e64bcdce 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 6aac1f4972..72279f861e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index e831dfb254..b0c5a190d2 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index 6e0ac10718..eb8bfd773d 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 5e84c3e1a1..64ab7b9b1a 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 8974dcbb03..3ed34d7d21 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index cbada0be18..6f2cace35e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 70817b06e3..9a99d3d243 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index b6991202b2..fc113b83c2 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 930f5cf3fd..3a2cb07bd1 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 6595446fee..3119dc6139 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index 1904758532..f873d577d7 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 2a0a5729ec..3eb242372e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 304c4f17f0..65e6e3b18e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 74f1ad39f3..796de0a70b 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index 33eb2e3043..fee2e03376 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index 9390870f89..bfbcb68eca 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index 6ebaa7e2b0..da52676e53 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index 697a61bcc4..e4b64bc6dd 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index fc301bb587..2d2411a178 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 9c97b39ab2..2b81e1bf5c 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index bc712bf999..b1191d4a49 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index c51c068ae2..b38068f681 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index 3b6749dfb9..ac516c9182 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 45418e5994..7141c80b65 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index f2065b827f..30dc909d48 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index b821b28fd9..2fad19c793 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index d7acfa7c16..29a059069b 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 90424ee65e..504681900f 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 7857ed00e7..9916790871 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 4194c6f3b7..9197ac19ea 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 87dd876588..650c292701 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index 891a20540d..e97ebb3a2b 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index e009094760..23d6bb0ee5 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index a0343c5173..e833d7f132 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index 5d1394e463..fe21da3107 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index e945519391..40970b649c 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index 947c042b8c..c889900b38 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index 08cb14cb26..bef9ca1bbe 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index 187ed1f212..bd78aaee1c 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index 10b6e8185a..cf03a5eef0 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index ed0fc7fd8a..279bf1b9cd 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index 9def9ecb97..bcb84f17d2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 4c3f60a240..846f1debc2 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index 1b7c05ac3c..ca74c20bbc 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 7cbb60c3aa..5397b2ffd6 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index 4994e3f9f4..e89de5246f 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index fd15d041b8..f14bf32f35 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 5c88fb165f..19b419068a 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index 260a3a81c8..909a8cebee 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index fda970be10..7ed1077b3e 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index ada9e0eb89..449deae2ad 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index c5440ccafa..5473b935f6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index d2916ea2f0..0a20b2fbf1 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index 290665a0ff..21a69ce7c2 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index bde91591be..d0f709d405 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index 2678b7e383..7bb2651f33 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index f38b46a764..bb773464c8 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index 4860f58cf1..e355bd25b4 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 4beedcef6b..617821370a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index 277e3af31a..84339d288a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index e130e03c10..69869e3fd6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index f1b29175a0..a51303702c 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index e8d45e0c40..6dda11cc51 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index 4f2bd1f74a..ad87dd1196 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index be6dcc5370..df5df7cf6a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index 38dcfbd232..d2a4c50817 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index a9dfd3aac4..097f8d4eca 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index 438e4b0229..d30b3f83c5 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index fa481c4e8e..613a72ae4a 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index aa497ec243..19c26a6cc3 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 9bec35aae7..6e81d2d1c6 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index 7a74241eaf..deabef32a8 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index d6d2eb6304..fa55dbe427 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index cb1f19fb95..3d4f20932a 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index 71f312f4f4..a5b2708995 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index 68a37d8f14..fb492bda7b 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index 7bad9bb211..e6f942ff5f 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index 8f1e23ca36..c0ad2d4f36 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index 3d9ae4b245..c617b11b87 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 3c409fecda..3707ac77ff 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index aa240b5986..64a55d3c0a 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 5043c5df61..940dddc62b 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index 3dbda87b8e..175bcd85d7 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index 31732494cb..e4fdecd332 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index 48418d8b77..c11539a7fe 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 425ac85661..47077570bf 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index bccdb2d8f5..49e6e755c5 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 619d279154..3b57ab093a 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index d9a9f1e113..84ce5bc92e 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index c3e16ffe4a..a9c094251b 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index e63a15a050..fccb8288ed 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index dc0896bfbe..ea294530e0 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index ee1aca1c40..fe9c855ded 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index 1605c4efc9..a93d4aa255 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 44e80b2668..3e38f97bef 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index 383249951d..c8ee6fdb8e 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index 1793f5c8a9..db208391a3 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index cb99daa490..7bf07f7c85 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 028c044d19..5afe35de2c 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index 9dd8250ed5..6313dcb6be 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index ecd8f1f040..37eb3c1762 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index f750b07849..dc2a3dd90f 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 93167419ba..35498f1237 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 888b08f59c..6ba4fa8e52 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 94cc19edfb..87bfea805d 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index bbad204f15..238f45df16 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 79c3b21eeb..44667c79e0 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index b321907fee..4593a16ed9 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index b339b685c1..0027871b23 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index e22f15952c..da25e42b6c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index 7d84227e1e..dd8b85c1ab 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index 74f1224e3c..bb9b810157 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index ba07a565e0..faa108a83c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index 35d5f5e992..528b877958 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 263e8fbb8d..7402b0f81b 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 100b52ba68..259b34ef55 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index e8e26cc6d2..caf8ecbff7 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 9b6e0a5510..7dbc1778d0 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index c73d0f76b3..9bdfb41533 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index 0a8595bc4c..6871e99b76 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index 6d08c78df2..a5f982f2be 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 2396e4025f..33f99e5fcb 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 3e0d002d14..46480c1bf7 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index aaa3d950cc..82787afe54 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index cc8738df69..642d0810e4 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index 211a735b72..0695f9fe57 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index d413ac72f8..18a65ba0c3 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index 7ed81987f9..f3a017087c 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index 38797b4912..e9c279967e 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 8669fa32aa..1a74e53aaf 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index 44a16c116b..99291c7ffc 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index c6012ac34b..7822cc565b 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index 3de5395463..72681de427 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index f18e89e783..53fc6550b0 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index d05ca5f136..26dcce8ed6 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index 0b2f445dfa..4695644f2d 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 2b22e3f745..42487ec3e6 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index 100d5b24b1..3c1359073d 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index 5727969b79..d1a28a7653 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index c37e7dc9c9..1e7c29a347 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index 380d4a5255..f8211f3d41 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index e39ac13e6b..3785771f47 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index 75f79402e7..f0af9dbc34 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index 9a5001c739..d0d1a4ccf3 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index f69b432812..c5ced7c9a5 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index 29e5bec052..7b7a024bf0 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index d9652a248d..61160d6bb0 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index 0f412780b8..acb60b6c9f 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index e5390fa7b4..35dec16918 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index a815e91217..53a2bc13b3 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index fd1ea41e01..6c126047ad 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index 2ccc44a3b7..e6e118e21f 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index e8362fc6db..0b5acb5a1d 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index 6d5d14871b..ebb706385c 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index b35035a02d..ee0e96899d 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 6d80739a00..8a8ee114e4 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index bdc2a7daad..37c01e84a1 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index 8859cc46f0..92efaca3e6 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index 12d387b8dc..cedcc4aee8 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index f7b847384e..5a47d08a6e 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index 25eff32261..ee9baa433e 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index 181c82ae08..4505d985f6 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index e1ddcf5de8..1b6c6b9a64 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index 24d9d323d5..a69338d3d9 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index 118a90fcc2..a4519d007e 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index 84ca0b0dd4..afa0fab2f1 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 1b93c7fbfb..9157f938cc 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index d2ac93fb12..e74c862004 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index bdca299772..0b4e80354e 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index df3e0909c2..09c7cbeb8a 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 5c709944bb..2b37626e56 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index a8250b8709..b23b08c986 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index d8aaa5bb6a..dc73a650d5 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 5ac644791b..2e10d594bf 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index ee4ccb14f7..a8f4d0d870 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 77fa8b57fa..516fd69b22 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 65e90311e3..9f620c26e6 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index feac2c4212..26a6e27821 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index 847bb29f3a..25155655e7 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index f6d396df3a..494357a91d 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index b6715276ab..7d870437bf 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index 414478c331..f102e574be 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index de4d732cb4..70842228e2 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 34582ea39a..05cf9e0bbc 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index 40d9e2723a..1967d1be9f 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index 45bbc23d7c..2c1cf471df 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index 748163782f..ff3f81c034 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 6eadcb6d0d..77e839eaff 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 87a1e3290b..442065f509 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index 3f9dcd40f6..ac3882c1fc 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index a445644cdf..f705eea1cd 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index f03044c42c..7626ff56e7 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index 11cc64f737..db3124027b 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 247549fd23..0dc6d71649 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index ba5cf6805e..f34b342364 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index dae977ca80..7b410aea17 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index d67521ba22..79435798a9 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index 1cf7c29a3a..b17f84f742 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index f81f1ae229..723fe0120f 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index 109eec45a7..e17f3bcd93 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index a4d81601b3..64fd4936cf 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index 5319ad2293..fb7385fab1 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg index fa8b7bd4e8..3702314162 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg index 81fe693113..1f66a09b62 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg index 2f09b41466..a155a520d3 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg index 0167ad3b68..e21090c600 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg index 39bc3841ab..6414ce4589 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg index 1267a29fc2..1248585ec4 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg index 1ff0b50fbe..e9859c9cb7 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg index cbb1a8fddb..0bfc4bf338 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg index d371d236c2..23754001ed 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg index ba90518306..2d30739115 100644 --- a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg index 6a942a546d..00d6e94cb4 100644 --- a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg index 8aada67380..7b2ca97af3 100644 --- a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index 097a959905..fd19842b62 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index b81a4b8bd4..d7df5c5ff2 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index 13263426d3..fc1e193f97 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index 886312c2ef..289722633f 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 700f5ead70..26caf03d8f 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index 8a689abe03..0f305d4835 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index daebcd1df6..ed96f8a8d7 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index e32d5f1b04..0272e99c0f 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index a60d8f4208..018ed5f7d9 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index 62dd3d8052..76118d401e 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index c47f989190..99cfa4cea8 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index 84d9774ce3..d015825894 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index afa18c866f..39b0ab1f79 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 2b30b9fc71..5cf1aa4219 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index d7bfcc7d5d..5d5e352eaa 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index 05e381ae5b..daa141e464 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index 8d57fe8287..2f8d8195b4 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index ec808fbe56..96d771d5a7 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index b86c774fa4..19c4743970 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index 1f1f8964d4..218b8c0769 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index a2d9070cf0..bc4f11b1e0 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index 1c14bc2030..ad4b1b467b 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index 09713b91c0..f9c80b0079 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index b34cb9c813..14784247dd 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 20f0e19467..151e21fdd5 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index dc9ecd5fe6..e0735cb0ff 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index c5f968e6e1..6184ba86b2 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 278d07dea2..2a8eeb3dd4 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index 07a2ac74f6..e7e772f85c 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 592b5e1009..300db25f2e 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index 1aa8210751..a3d8287a53 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index a6ceb71830..376782ed63 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 753dc626ed..6dda9f5f85 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index e633544769..e67e012831 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index ec80a8c9e1..d449cb1f50 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index e8046eb5a0..fe8bebaea0 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 5a5776c7f8..00684445f6 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index 168e1c0bb4..eaa2f3c8b4 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index 7b92bf37a1..b89c9ca342 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index f8a3360385..7da4ee15c2 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index f96a971d8c..1efd7a48ad 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 75f6f56c15..1ac637cad1 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index 9b027f0f6c..c18c95f385 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 5e1ba97ead..7ec5bbab4e 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index f38367832a..74bd8f8aa4 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index 978d45d738..a60be7f5f6 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index cbdd2c0cba..cb94eab696 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index 6fbe7ce0cd..8c2b8b5f67 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index dc30e0e7e9..cdfedcd6a9 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg index 23debbdf17..8788f2d15a 100644 --- a/resources/quality/nps/nps_ABS_A.inst.cfg +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index 3f700405bd..c73992eb31 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index 6138e4004c..e4b974e03b 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 8665f8ceae..811df9ffdc 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index 9ccb5cea53..d972b6d5e6 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 30267d4237..1c91d7f319 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 3cae430f1c..098fd7b0e7 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 5860f65414..9121ce0cc8 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg index d35175fbc5..891103acbb 100644 --- a/resources/quality/nps/nps_PETG_C.inst.cfg +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg index 6c557e4477..302e03b8d1 100644 --- a/resources/quality/nps/nps_PLA_A.inst.cfg +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg index 02571aa0f5..2578ee3920 100644 --- a/resources/quality/nps/nps_PLA_B.inst.cfg +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg index 6b12b4b169..7db1e3938a 100644 --- a/resources/quality/nps/nps_PLA_C.inst.cfg +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg index c706bf08e8..8bc9697e17 100644 --- a/resources/quality/nps/nps_TPU_A.inst.cfg +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg index 5841b4045c..f6131d5c72 100644 --- a/resources/quality/nps/nps_TPU_B.inst.cfg +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg index 8ac308460c..9004a7aafb 100644 --- a/resources/quality/nps/nps_TPU_C.inst.cfg +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg index 1cb73eb1b8..b406f96b95 100644 --- a/resources/quality/nps/nps_global_A.inst.cfg +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg index 89b4dabeab..87b79e4185 100644 --- a/resources/quality/nps/nps_global_B.inst.cfg +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg index e8a4d989c3..55e03f04bf 100644 --- a/resources/quality/nps/nps_global_C.inst.cfg +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index fe29dcc017..c62172e271 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 3c4b16723c..6eb625350a 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Engineering -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index a8351dd223..dd3303ff21 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 8c65da3d3a..79a93c2cbb 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index d6f6c73c98..23a5398377 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index d92ff21e1a..9afbe1c9fa 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 860c295c18..0282588b31 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 9b83b18c6f..2f7e5731a7 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index ee6b848ec3..e5fd23d4f2 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 77fa8652b3..11145f3151 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_high -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index 9385278952..b3aa4e2cc8 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index a996b30c8a..91eb5d4642 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg new file mode 100644 index 0000000000..b53926d84e --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 23 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg new file mode 100644 index 0000000000..5ba1720f7c --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = ultra +setting_version = 23 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg new file mode 100644 index 0000000000..f773bf87c6 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg new file mode 100644 index 0000000000..7ad5b63828 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = low +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..18d481d92e --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg new file mode 100644 index 0000000000..094f815c57 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg new file mode 100644 index 0000000000..ef6926b4d3 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg new file mode 100644 index 0000000000..0de97f8576 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = low +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..f399287ece --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg new file mode 100644 index 0000000000..e828bbc5ec --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg new file mode 100644 index 0000000000..425efe8bb7 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg new file mode 100644 index 0000000000..504e601637 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = low +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..599dfa2119 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg new file mode 100644 index 0000000000..e337cf021d --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = super +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg new file mode 100644 index 0000000000..5037ea9877 --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = standard +setting_version = 23 +type = quality +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg new file mode 100644 index 0000000000..b11d0cbbfe --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 23 +type = quality +variant = 0.8mm Nozzle + +[values] +cool_fan_speed = 40 +speed_layer_0 = 30 +wall_thickness = =line_width*2 + diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg new file mode 100644 index 0000000000..1523fe7ace --- /dev/null +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 23 +type = quality +variant = 1.0mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg new file mode 100644 index 0000000000..13f3d3c6b8 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 23 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg new file mode 100644 index 0000000000..e1e0e68add --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = ultra +setting_version = 23 +type = quality +variant = 0.2mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*8 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg new file mode 100644 index 0000000000..f45f4f0db4 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg new file mode 100644 index 0000000000..f00cfe1f18 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg new file mode 100644 index 0000000000..4c49ed47cc --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg new file mode 100644 index 0000000000..6c085cf045 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg new file mode 100644 index 0000000000..1436293e32 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg new file mode 100644 index 0000000000..77a5b093b0 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg new file mode 100644 index 0000000000..fab2b3f6a0 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg new file mode 100644 index 0000000000..a22e557023 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] +cool_fan_speed = 40 +material_flow = 94.0 +retraction_amount = 1.6 +retraction_speed = 20 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg new file mode 100644 index 0000000000..7d53f5a735 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg new file mode 100644 index 0000000000..bc7763e69a --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = low +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg new file mode 100644 index 0000000000..f50d26c026 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg new file mode 100644 index 0000000000..32a6e79f73 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = super +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*4 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg new file mode 100644 index 0000000000..cb789901f7 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = standard +setting_version = 23 +type = quality +variant = 0.6mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg new file mode 100644 index 0000000000..1ff77f2028 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = 0.8mm Nozzle + +[values] +cool_fan_speed = 40 +speed_layer_0 = 30 +wall_thickness = =line_width*2 + diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg new file mode 100644 index 0000000000..8585739084 --- /dev/null +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = 1.0mm Nozzle + +[values] +speed_layer_0 = 15 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg new file mode 100644 index 0000000000..9d8ef6a9a3 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 23 +type = quality +variant = 0.2mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg new file mode 100644 index 0000000000..d0a93f1beb --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = ultra +setting_version = 23 +type = quality +variant = 0.2mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg new file mode 100644 index 0000000000..8e7e337fa5 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg new file mode 100644 index 0000000000..c6b8308b87 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg new file mode 100644 index 0000000000..67d98a3bf6 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg new file mode 100644 index 0000000000..3bce948dfe --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg new file mode 100644 index 0000000000..d9647022e4 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg new file mode 100644 index 0000000000..1471709c21 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg new file mode 100644 index 0000000000..6434e24870 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg new file mode 100644 index 0000000000..f0230d0bb6 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg new file mode 100644 index 0000000000..4f3739f6be --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg new file mode 100644 index 0000000000..d6338d2323 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg new file mode 100644 index 0000000000..7ea3bc2e74 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg new file mode 100644 index 0000000000..3391515bef --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = super +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg new file mode 100644 index 0000000000..425098058e --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 0.6mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg new file mode 100644 index 0000000000..82ae46b93c --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = low +setting_version = 23 +type = quality +variant = 0.6mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg new file mode 100644 index 0000000000..fbbf5178a0 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = standard +setting_version = 23 +type = quality +variant = 0.6mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg new file mode 100644 index 0000000000..8f2413e7ea --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 0.8mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg new file mode 100644 index 0000000000..24232e97e5 --- /dev/null +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = 1.0mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg new file mode 100644 index 0000000000..f603ac2f49 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 23 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +support_interface_height = =layer_height*6 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg new file mode 100644 index 0000000000..0f1ed527c4 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg new file mode 100644 index 0000000000..282bffac12 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 23 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg new file mode 100644 index 0000000000..34963f44d6 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = standard +setting_version = 23 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +support_interface_height = =layer_height*4 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg new file mode 100644 index 0000000000..0f4c9857c9 --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 23 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +support_interface_height = =layer_height*8 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg new file mode 100644 index 0000000000..f9c1935ecb --- /dev/null +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ratrig_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 23 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +support_interface_height = =layer_height*12 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*3 + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg new file mode 100644 index 0000000000..f661ed4414 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg new file mode 100644 index 0000000000..11e12d4fb1 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg new file mode 100644 index 0000000000..8a7457fa0a --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 23 +type = quality +variant = 0.3mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg new file mode 100644 index 0000000000..199338b92a --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg new file mode 100644 index 0000000000..cd45e2a4a0 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg new file mode 100644 index 0000000000..ae00c536ff --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 23 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg new file mode 100644 index 0000000000..20be989072 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = adaptive +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg new file mode 100644 index 0000000000..85fca68f64 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg new file mode 100644 index 0000000000..b85d104141 --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Super Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = super +setting_version = 23 +type = quality +variant = 0.5mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg new file mode 100644 index 0000000000..e17edf408d --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Standard Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = standard +setting_version = 23 +type = quality +variant = 0.6mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg new file mode 100644 index 0000000000..7b663dd97f --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 23 +type = quality +variant = 0.8mm Nozzle + +[values] + diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg new file mode 100644 index 0000000000..424b52f5bc --- /dev/null +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ratrig_base +name = Draft Quality +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 23 +type = quality +variant = 1.0mm Nozzle + +[values] + diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 9436f1214d..825999e09e 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index 7075fd5cdb..e708aa36d7 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index 11449b3724..7e18816e99 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index 9d5fe97e90..caec94d742 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index adc821bb0c..bb58f8a607 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 972d661286..3be043ba9d 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index f11e0124c6..6a221187b0 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 8c3f567f09..7f36e8b488 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 3e00b6f10b..8826bcbc1a 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index b4dd761b20..ebedcfe46b 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 99d3d50454..5a65e5a3dd 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 4a413c2e1c..2031e51928 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index f77c28b5fd..5e9ef8f653 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 2bc78750ee..6314c5cf47 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 656ece9805..2824c346f7 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index 5cbba2dadf..28dbc36370 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index 2e40788daa..d3ed18ec56 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index 8d9de515c9..54ae63ed9c 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index 966a6a208e..e5800f7630 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 56e0589d42..662344bcfd 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 67192d4333..20ad51f84c 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index 9b78986d8f..d3ef33dae4 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index a49f8c71da..dd1c2c1a40 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index fc7e593fbc..b57e9643e7 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 7b8576b2de..7b9edd4240 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index af0bc1382b..f110e2ac11 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index d6c49e5d9a..def57b4251 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index e053edf5f4..84f85042f7 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index 09976277b5..692c3f2e81 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index e0ffe4421e..1487279aee 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 626025b515..465d18fef6 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index bc0151b230..abf8313328 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 5a0333e1a7..0686d9d66c 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index a61f3984e5..26238b9fc9 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 183f1a28c6..2ef1bee0a8 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index 1f2fcc6d36..debf198a7e 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index ac3fa6041d..dd30149d02 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index d0b8208e5a..6d41a98b92 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 752902b731..1372013ad8 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg index 07147785e7..0b62a1385c 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg index 672d907afe..12106d3e9b 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg index 3e90b5966f..12e4ec025e 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg index abbdc4e846..d51159aa75 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index ca9845a2fa..572fc08a85 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index d3c34f1afd..8e734798c1 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index 97514c3788..c2293f55bc 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg index 772967217a..defa686635 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg index 0726300d16..806e83a3b2 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg index b856b23909..f68599df66 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg index ea89399b04..5df799868e 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg index c4a73d8829..e07f978b90 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg index 25dd15c61f..c0227b5b43 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg index f8ee0564e4..4984310577 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg index b52d3796bd..38414cee14 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg index db41a18c33..98f393cb39 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg index 8d9f4a8945..ccbb661b74 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg index b7a7967e51..0588caaa20 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg index 3ae2ea97eb..ecd3e8143b 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg index 49674f357b..e489d845a7 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg index becb6c7813..6e616c299f 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg index 93c936d905..1f421bdebd 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg index 3fa8cd175a..d13758ac17 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg index 3ae2ea97eb..ecd3e8143b 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg index d4fa086853..180ef9793c 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg index bc3804e57a..ef400d0393 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg index fe55f3999f..229e456c0a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg index 33de59ca9e..e762e8be23 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg index 7fcfef1f1f..80ecf4cd5a 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg index f0f87b35aa..88760eddfa 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg index f0be8f8aeb..ecc9d878af 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg index 05b9f7aa93..e89120e413 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg index 62d0991256..b3ed5d750d 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg index 38dbb87871..df9043526e 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg index 3cffc1c720..de741e100c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg index 05c1b926a9..197974f8de 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg index ab92d6ca32..ffd6a18e6c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg index 32ec7fe4ff..81f5628de5 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg index a2042304b6..e518eeeee7 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg index b2e1cfcf9c..13cb1da608 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg index ff27068372..0d2344258f 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg index a85f259ebb..be6b0a424d 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg index 7200a5749f..8fb90b1ebf 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg index a2042304b6..e518eeeee7 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg index 84ffaf6c2a..c1b28d2eed 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg index bef6859d3c..63f0f20b9b 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg index 1d6669d2bf..0b2e06b960 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg index 885607c1ee..632f8562a0 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg index bfa41cf9c6..778faab851 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg index 5ed1d35af6..e41ac67a4b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg index 28f77adec5..125944ab7b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg index 76f7ebb4a2..aadae21f2b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg index c8236b87b5..4cdf9e82a1 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg index 1395cd2a14..87d3cbaba8 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg index ddb7913146..71a71c2074 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg index d0fff1d3a1..a7e7c68832 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg index d9654ee6ff..d0e96ddf9e 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg index dfda836cd4..af21641a94 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg index 4c86d9d601..a48585cceb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg index 97dba25e7a..6cd9377e7f 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg index d0aa02743b..0bf2ad87fa 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg index 2a49ac86ea..0b112bb475 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg index 97102b65a3..924e14928c 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg index 4c86d9d601..a48585cceb 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg index 27112ff2ef..b9a346b74c 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg index d52dc0324a..9575468f22 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg index b3abca606c..19249525d6 100644 --- a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg index 053367d17f..9263813e0f 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg index b096237bea..457c4557ed 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg index 06beece2a2..a5b0dd141c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg index a33788ca75..d15b92b2db 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg index 6e23df6ae8..0198bb31d1 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg index ae20dcb804..d7a1c155bd 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg index af2ee48413..e46a0fc9e7 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg index 4dfcca8765..b5865b796f 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg index 7553fd38ce..909887f734 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg index e4e7cfd9b3..1e77f58d77 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg index 65a1ada04d..53dab10238 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg index 9851ac8798..2309c3d80a 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg index 9d69f5a6e4..f42e9ed165 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg index b8fb2f7118..68ed0f68bf 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg index 808bc5d2ce..52445d8e9c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg index 759b42945d..02cab8fbed 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg index 0f7f807aca..0e17e9b5ea 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg index 55f3851458..41f5bd56ed 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg index 127cbb7a12..3455b63eae 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg index 68994f179e..b6afb89877 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg index 4d7207b88f..d73fcd987d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg index e0e337e823..b1d8446a8a 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg index 35122d480a..300ff8a9ff 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg index 6ecdb7c2aa..f2ccdbd5ca 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg index 4312bd0fc9..58a1f4d8e2 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg index b5ca42bbfa..2e330c453e 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg index 4e8a03c922..eeecf62b03 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg index 5936703b73..4ec7b7a412 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg index bec8700d9f..a1c0e48cba 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg index 83c414fbb4..7808a3da9a 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg index c1fbefcb96..33e1e1dc64 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg index 8b71219eae..b7f329a98c 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg index 2203f51213..0ec707bb86 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg index 0a05fd5fba..8a472a5f71 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg index d52169b7b7..093963d94b 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg index 2aead63352..28408b23d8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg index 6ffabcf3db..79ecbb7de7 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg index 2dcd0202c8..1e04a9ee43 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg index 759fb5c6d4..ea145cbc74 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg index 1003b241ad..550bdd503b 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg index 6e961a1f5f..e38455850f 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg index 9056196811..b221a2fb6f 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg index 0f76fb7040..9bd2454185 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg index d3b9987d29..fc823efb6e 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg index 4daff5d437..23504f5132 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg index ded1525f35..f82812e3a2 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg index beedee39b1..d0e2ca11be 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg index 29790a874a..cde88b0333 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg index de2429f011..58d1ddf5f0 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg index 9a9e6817a6..ed2f53f573 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg index c905211dfc..25751681af 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg index 8c31d3411e..e9ff5631f3 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg index 550a5b8d30..6b6193ef49 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg index 460c927b23..e60d7aad26 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg index 07ecb9c628..d85791b9e6 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg index 72a3df1170..266459a784 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg index 32f2aae4cd..4eac8df6af 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg index 46a9c12172..e494138b71 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg index 94fa6d1a45..b05ccd072d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg index d24808cc0a..155086bbed 100644 --- a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg index 60e6b7b56c..dfb6644231 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg index 4ea764635c..1bba7ee004 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg index 2a847c6695..8ceefff1ce 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg index 21bbc433ae..d99e7a9187 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg index 4b2b5103e8..c76bd93eb5 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg index 3a2cb3824b..c008efd6a4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg index 225d97b51b..2af72b0eb9 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg index 60f61cd0cd..cda9ceed05 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg index 6e4a98b120..67303a344c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg index 66de7a5d67..480ce19bd2 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg index 508fad0d39..818ba54d18 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg index 85995dc2e2..0d5763d654 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg index 9d4c33706f..462fe35ca8 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg index ca4d2f0aa5..c69290b75c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg index b669b93ca8..a842730f71 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg index 8621005003..3a30124ba8 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg index 734b00804b..f6d093bcdb 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg index 3495c72a27..0caf6fde44 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg index 502ba9fb28..a75db5305a 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg index cd7c84e72b..5156a79dbb 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg index 75a24e2338..e79df78c54 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg index 8b5a22c7ac..648195d2cb 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg index 75949bd188..fec5480e93 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg index 26536c7f95..7ab1a6eb90 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg index 32cd541764..2945d9d3fb 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg index a6b5f82afd..61e9343536 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg index 99ec25faef..66af6a6e6c 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg index b4f42eef9b..36b56f53cc 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg index 280e0f6983..6e683d4912 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg index 19d6e248db..05d13d7f09 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg index 8d6b86a541..25062507a1 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg index 2fb09b07d6..fc974c0d23 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg index de0c5d8f18..7642a661fc 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg index 95414079ce..a4d08915b2 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg index 1323bcb258..56c4f6f535 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg index 7dae15cd82..77260e44b4 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg index 52c75c3956..9d3e897f1f 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg index 8b3f20d9bb..06468f867f 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg index 5150e51684..49b1a1da83 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg index b4ec36693a..f4d2249bea 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg index 477b4b71c0..afd059515d 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg index f84ba4c463..935acf8769 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg index 4d91754866..4b1bd7186b 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg index 14898f5182..3e8c01bf29 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg index 1eea76a062..9b0a17a246 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg index 6e037669a3..8a4dd64c3d 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg index 4f92feb333..e5ffd6c0a1 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg index c36495131e..6fac81f060 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg index bf85135170..0d72cd1018 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg index 3d49a00064..937006edf2 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg index 0325382a41..90ff99d94b 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg index 660ff39cba..3a90afe430 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg index 38bbd3d026..c50ff9be24 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg index dd8f42789d..9c2f27d150 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg index fc8bda9ec0..7b9550dd25 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg index 63d2a0db08..656e646d0b 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg index eca3e66c4f..789646f896 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg index 59b67afd70..f52221e9ff 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg index dfd7add791..092849b63a 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg index b1157e6dc4..c2acac8b77 100644 --- a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg index eebdc183e7..ed82bbeba1 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg index 4cb331a963..e797e28f77 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg index fb39dfd55c..0ef5dab250 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg index fe24985206..6f8296972a 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg index 5a07770069..05646b59f7 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg index c903119453..f73639bed5 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg index 37c77c084a..0d65a9e716 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg index ae5c9b6e3d..0f98f0af00 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg index e963a88d20..f3567ed5cd 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg index 020fbd96b9..f485682a3a 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg index 2bf1d94be3..805f8029de 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg index af4cdeceaa..108d25cc2b 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg index 6248e0f243..3be81fcb24 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg index d01edeed8d..89bee3e6e9 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg index d690111514..eff1ec18de 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg index fc3f1d1636..ae6e439d1e 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg index 4db78e7df7..fce3d5d5d3 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg index eefd4b3298..14143a43c3 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg index 0c8601d49f..3a59c9cc4f 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg index 4c53013ea7..25bb9a52ce 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg index 19a5aba8c0..56cceef368 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg index 1ee0566de1..06e8e1caf9 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg index ccc2834c40..db6777c29e 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg index 74433477a5..1ae1708d17 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg index 8a22f9e7ed..40c868739e 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg index 399a5ad880..7c4e765659 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg index e88db75f3f..7c70bcd2e6 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg index 7c464d3d68..8fb5912308 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg index d90798ac59..37e25483e9 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg index e53ad2c481..0ab905ddea 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg index 08465b50aa..fd0245d797 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg index 50806b530a..16b5139867 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg index c5f4a01e99..e6944b6abc 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg index 19ac4a4512..1eda8ed9c3 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg index 3a9c39df03..796d50d951 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg index 68280b99b9..45df6d13e1 100644 --- a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg index 8503da623f..e9cff77480 100644 --- a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg index 1b78757f55..dd082f5d45 100644 --- a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg index a678af6506..0286357f65 100644 --- a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg index d020c7002c..05c840ab84 100644 --- a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg index 9bcd7b6287..d4cb00ea43 100644 --- a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg index 5a8cbef3d7..90c6235d88 100644 --- a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg index 17e0c268be..a3239e277e 100644 --- a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg index 9ff86b6743..2dfe9261bd 100644 --- a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg index 2ca057564f..a26036a9f4 100644 --- a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg index 3ba5e02cdf..c39b3a47d2 100644 --- a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg index 5b47449dc5..9e14ee36a5 100644 --- a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg index 1036827a89..f3ad3f63f2 100644 --- a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg index e8dcafbd96..d1bdac7e44 100644 --- a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg index 20bd095ff9..7d9574e9c2 100644 --- a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg index d3e37f54b3..2bb6d850a6 100644 --- a/resources/quality/sovol/sovol_titan_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg index dd7dbb3786..c799172723 100644 --- a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg index 31cebe4aba..70744f18ad 100644 --- a/resources/quality/sovol/sovol_titan_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg index 9040e3d60d..b159e54f61 100644 --- a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 39ba32a332..15c8c49221 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index dd0d167e6b..fda7548825 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index f894a7dc13..8e65f491a4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 7642489c2a..5e03710bc4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index bf5c18405b..6c93c716d0 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index 6756384e4a..a7e7d2a872 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index 978484d813..be60ed117e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bcec4fe68f..bb36ad977f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index 85f79ebe7a..a04b859e41 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index 9b29e49624..e80011a25f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index 07a46f0d05..caca18acb1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 60410d8d34..07bcbb951c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 9304630630..692cc0bf7e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index d39d91c91a..f481caf900 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index e716824cf0..c19d8120bd 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index bd964bed2a..6816682a58 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index cd27f77737..49aebe6435 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 78191af7be..8809625bd5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f37a3b4d6d..f76fc17f7f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index 75fed99b1e..d88b9f9aaf 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 51911c3811..50143d9504 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index e4596d9def..99364c2edc 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pekk quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index d0faf6eb66..65c7532c8b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index 3a64a52254..cc5f154c0b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index debf74ed0d..4c55dc1666 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 990d5cf645..508999aee5 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index 82f26cd66d..e642ad6f4e 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index a91b035e38..04e4543c75 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index c7194e18d2..39c32ad622 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 078e213a26..59b4b730f3 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index bfb4c46c46..200201554d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index 8dd1c17ea6..bac0135e9f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index cca98aa599..2fda0cb960 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 5a343d6893..164e5bf494 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index e6be881341..6c0b7ede59 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index c4342c149a..feac83c0d3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index e3581e0823..adec58532a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4c451894bd..4f738ecb9b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 65c2c9e81f..53cde676c1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index 2f5cf9cfa3..cb4c175488 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 36d6697edb..25894a7242 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index e92561350a..ddc47eb6ce 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index e61775fde0..486503b69e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 020b95dad2..2b595fecad 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 6688d82ec8..24f35a4181 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index 2c8d6a82d3..d4e78fd7e3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index fe012ff873..e700994fbc 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c0adce0f84..c7b53df000 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 5b58c2f37b..09ee00f8d0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index f986831fd5..963ee03862 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 5d360b244b..8ede6f7f2a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 3875e668f4..85cf082f99 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index d4d0e1c17e..94e5093fb5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index f2bb237ea2..4637550542 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index f6780fbded..655e7227db 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index 6e726932a6..bae5a7326c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 7ef50ff5b1..40459d1d72 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index 4d4af1e0f7..d806f76fb3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 0d88c99c85..896a30bb3e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index de476e6e46..cfdce04458 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index 3fe7ff347c..e3056b2754 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 9dd3039b65..8e1a632832 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 346f33bafb..69af5bce38 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 8571e8c4b0..0df714452e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index 4231e1b3a1..da5e04fe60 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index c141a0ab07..b16348cc77 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 9cd4262c55..1594c7862c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index 6f49ec9e3b..f0eacc13ae 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index 415379417c..cf3426952c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index c4ce86563f..3b28137240 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index dc4505591f..444d8edb54 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 224fa18cd6..43f3672bd5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 44737981b0..57328d0b75 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 8bf71b5cf5..78f773a4d5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index 3102afdc2c..e4fbbaacdd 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index ad6e361582..88ffcba8f0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index b7445aee86..2cff0f12eb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index cc849df9ba..93b086eb72 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index 10cbd3a4cf..a5045af80b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index 055bbb7623..fce8e2a6f5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index 028586beb4..fd63382cad 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 8bc0b97bc5..4bb693a89b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index ec355cec15..e3c73b2f18 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 3ab4df020c..30d829153f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 455cb44a7b..3a1e9db729 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 3475c621c3..7d398914b5 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index d7d937fdef..16198bfe8f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index e83067bdc8..66a6d4f69a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 188cddf0d6..65c4d78b54 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 6127c2ec43..54e7319457 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index ca38be0476..cdb7308468 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index caa9003cb3..867b4a8f4d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index a10cbdac7d..8fa93b3213 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index 85fe174e95..a4d6bc2410 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index 9b48be1b8b..b95282909d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 0440a0a34a..737432c653 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 7f124ae4ec..542a7b3305 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index f662c41048..d9209eca42 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index dae0dda098..fae31ae3bd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 1079c746ec..940064d2da 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 04991249e9..4afc1c4fa6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 685778f3f1..07028500c3 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index ab5eca1d47..a6e3798cfb 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index a5a2addbc6..cc48cc71b7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_nylon_1030 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 6ecc9a3265..4171f8070f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 9e060959dd..1b628fe5e9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index 322d30a975..b6a063f3a0 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index 5ae6c32cb8..ed6f453bee 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 3fbe1f6370..396a85ba31 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index 46aacdf22c..a3ac4e486b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 6997dae536..3b4b044ac2 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 70bb7206af..882513bcf1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index eb89937ded..0447cf7a92 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 4bc567a2d9..413c4fdc72 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f08c2e68b7..f1c19a14e4 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 4a9a1472b8..389fad0008 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 41edbc8e32..5c3cdf0f7b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 10356ad344..151d368a51 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 9f04791ac2..40738389b6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index 56e09ac385..a44146afe5 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 6c8a5462aa..68b40d7efa 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index be4a045e0d..34ed767222 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index 6b107e9c9b..cb9446d6c1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ca169572b9..ef790cc9ca 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 7e7a3ed9d1..4ec7d54c1d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index a08e251fe0..262f796006 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index 2bcf4d4b1d..fa9670fe18 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 1352a75a8a..426b7a2c92 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index ad699959aa..c34110f835 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 6fdabc1a83..1764c18e02 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index 1954931cc7..b4287caadd 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 913af1994b..92968b1bd9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 573834fc79..78a1f47297 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 3d5d1781ae..097c944cc7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 4910a69272..0598a06be0 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index 28d395019a..cdab1d39a9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index b91ceb1f85..98b4d3ee1b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 4a32ddceaf..503f07b889 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e45a8970f7..e3b485240c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index c0a9632b95..2a71e9bddb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index bce7e2891f..39a078103e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 0a053f123e..77fd69de9f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 4f167ecacc..80938dbebb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 8efea7e264..546f6e4c5f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index d2f6973da7..74f6b45b41 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index 57e9fc27a4..a5621900e9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 2ef4a5b479..774c1be097 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index a7549a851c..c4a8b05559 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 322f31e986..27fa20a398 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 6f3fa578bf..943b12b2f4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index ee3166e7da..db502df575 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 05eabcc6a3..03d094cd27 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index d10b2df53b..53f876c547 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 181d89f957..3e19a67a13 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 38bd72884b..9dc86fee90 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index d8b2e660fc..cc6f751c76 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index c39338eeca..589eca1b89 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index f88eff1615..5760889bf8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index 59a6db473d..c6f2301184 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 9a94498b12..5d17c760af 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 2611e1deba..80c89a7f39 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 35644e47a8..98f3963ec7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a820dd8467..a0a004afdb 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index a4f135a4fa..4967bae5e1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index ee58caf9e6..22cfb59bb8 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 6399e7fd1f..25ebbb1990 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index e034d49e6e..9d2e69d0df 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 632c45a51f..99a0803d8d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index e882d42015..8921b8b8d7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 7b52c7bb2d..167fddbf0b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index a0fcdc4a52..09c2aac6a1 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 496e5fe215..82322be546 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 9c676c934b..252afdeae4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 0b4c3c0281..191d6ffa8e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index ffbb925a22..b43d80d475 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 60af5617e3..3771f389fd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 71581b46ad..2cc8e0a30a 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index bcbb45062a..f5e18a93c3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 827ae4a7ba..4b5fed9eb4 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index 29f88f6e15..cd61c020c5 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 316e5d4447..200856ca53 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index 44203ad144..a5a3bf8338 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index e322951476..96f4b453f9 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index b4ee9ea985..cd323aeba0 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 708896fdb7..11a27b4fe9 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index 63ca3d88ff..d2b524f3f8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 62ed1914db..0eaf98e1ed 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index ac9ec6324e..9a5f413f85 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index b225d8a911..4dafe54bef 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 6e859c8dd0..31111b8148 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 6b8ebd9d20..71afad2707 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index f168d4cf46..2b8a49811f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 652876d6b2..1a6d68f6c4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index 482b99c2f6..b234435928 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 551e79a8e4..4ec41d2355 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 5709736147..30ea3d02d9 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 38f3b2b2ef..7173ee3c7d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 54a6d54cc0..6de97c18b8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index abdd37d98d..d7f6693d6f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 50f3b04e16..4b6b9e0829 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index 35e9d19957..a7654a552b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 6e59384a4d..375aa70df2 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 9df5f69d75..1c09546eb0 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 45b5a9e415..7d6239044b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index 70ec1234ff..d4c2a21dbe 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 6327502027..052cccc4a8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index d7056a3f11..3f391c093a 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index a5ec67621f..0cae1d5278 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index 4ddc98ddd2..e6bd01e706 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 1b3a77ab8b..0dbffd8dce 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index be45c084a5..0dbc2576c4 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index c02401c4d5..11b4408a82 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index ba91c749d5..719d0a9c25 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index b1d4c72a34..41a4d1a39f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index 4fac7e687d..a9ffd2a459 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index 91b4699598..fc51245d79 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 8d84bc4fd5..995ad827b9 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index eafe3eef80..415f3239cc 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 3286e7fb08..7328f90a50 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index bb164bcd99..80b17899dd 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 82ad174a95..5a9511c1a6 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index f33abf1ec3..2bf9153b93 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index 2edb0e32f8..ef96f0aa6a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index 30d7139eb9..da4a810980 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 1bf36453d1..73ff310e2a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index f413dd3e17..531a5ddb27 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 9b228f7b05..33fe883560 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index 68c8604a95..a583a7eb46 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 66fc7c2f92..266a3fa223 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index aceba867c2..c833fe412b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index a34c3a4d45..4fe456849b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index bd41a808d0..01052c90ae 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index 6036150353..cd68c8c900 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index c150380c74..fe304f4e54 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 74ce8559d2..67afd44b64 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index f59b68f675..c638766b26 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 689c1fe076..3ff175b6a0 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index 514cdcbfde..a5f351c529 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 123dc9a953..125f19d66f 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 9c3f620a2d..071677014e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index 0b841dfb09..ad354adb14 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index adfe816125..1a1de5bb23 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 4b6108e51d..911194c25c 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index 99af35534f..c8d9145ada 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = g -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 21043cae58..84e86ffd05 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = h -setting_version = 22 +setting_version = 23 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index 08f68b9b72..0e1f915c0a 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 0b73e60e39..6396711afa 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 86c88414eb..6a15748bc3 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 920b1d7be3..0dd458dcc6 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index d1ef4ba4f7..3e17131bd7 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index db43ee80a0..52a679028f 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = f -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 0cdde5f1ed..2f8e5e1da4 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = g -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 4afd076d21..8321feb52f 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg index 58c36757a7..36a56da7a3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg index 684ea1e890..cb85d768d4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg index fff0d3574f..153b559376 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg index 0ec6749396..de62bfb3a0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg index bf36578ddc..1628085b6b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg index 2c46ffa61f..64ce3c53f9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg index 8ed5aba910..4fd837f579 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg index 6dec22352a..82b987e3e4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg index 8be53b349d..da992e9d55 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg index ff99c16678..5d52be9c54 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg index b1ad54d6b0..09f961d018 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg index 0646030b21..bc0aa98914 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg index fd5b9c19d6..2d8139af88 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg index 056da8135a..73f6643cb0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg index 452bc21898..8c6ea9c565 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg index 388fad3168..800247fa00 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg index c3f96c9bb9..14d4c1265d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg index 8c7691dbdb..1dd2a3f339 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg index 7dab9a053a..a48122d0ff 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg index d2b48b53b0..5d3fddf6bf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg index db7b16192f..3916aec06b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg index 69a81b0091..1cfdb072d9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg index 47c0152128..915faa0e57 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg index 9dd44c03be..c5fddef5f7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg index 79539b003c..b6dac97352 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg index 4ce2866395..af7be4076e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg index 93a8299a5b..455bb6516a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg index 3cc2e16b1e..c319613906 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg index ece42a5274..663d3bc141 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg index c58920e59c..ee7ec5a49b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg index 2f48848288..32b094a926 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg index 29e117bf29..7d02f48433 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg index e4586e8ad1..e0e3f0950d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg index 8ae61efbff..cec4307927 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg index 709ec5e8d6..cd312783b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg index 9d523315c6..fcf85e5354 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg index 3995a4ba50..d8fa6154d3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg index 99cb933de4..d3c0b763c1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg index aee5cd3365..9ce83b7567 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg index 122e430241..aacd51cfa4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg index 75f331d498..8d4b467382 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg index 4e7684afbf..ba1e050fad 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg index 073a39a5a7..78ecc50944 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg index b5bc5e4ca4..af98bbe9e3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg index 64dd1671a0..a57dbad5b7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg index b475aff0fb..dde6898259 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg index 0668a25edf..1d9a21f7d5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg index 8b08564904..f9b8ba9c39 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg index d89b15af64..74ec0b720a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg index b924a98a97..04b04f9c3e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg index e779680a8d..43b2d9776f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg index 972ef73de3..a0e25f7207 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg index 98fd5bc918..ddfc162cf9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg index c4e5836568..976eb26ce6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg index 3310f63f5e..15662bb5d0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg index a9060e5707..f50c4e5d10 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg index 53825b850e..2d2e7d5760 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg index 5267210274..0593e108d5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg index 636b6883a9..c6197bb477 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg index e26c6dfdd5..b4f7eac10b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg index 1aae63778e..919eae5482 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg index 9ebf3b8494..b80de309cb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg index d79ebb8bbc..f59791b3b9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg index 23bb6cf176..4f7c5ede44 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg index eb601b4fd2..5b6ae2d0a0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg index 03c1b935b4..6ccd25b1d1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg index dd8b77a418..f5dc7fccdb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg index 7f554643ce..9c2eea2718 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg index 61d6a4c82c..c0a166d66a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg index 7401461a7d..e3020b574c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg index cf3ce523d1..369d563c2f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg index 5c216aaf82..ba40fe5e03 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg index bee1d3cbd8..dcfc8410fa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg index c23d9b7c22..9bf4670d6d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg index 84fbde1361..b16e9a61a7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg index 128f924764..bff5c6084b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg index 69fd62c489..75c22ed713 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg index cc328f066b..8e7fa092df 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg index 0061e3d9ff..a08f7f3c3c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg index 46bd6f0b04..8aabb6d17e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg index 424b231c4d..838c32a83d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg index f725301738..3b0b01c147 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg index ee05814302..094c7917ca 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg index 90b40173a1..214db30e47 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg index 1615bd6470..7904903257 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg index 3f05d9d6dd..263716d6bc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg index 740270860f..43ba181c20 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg index e1a65d8627..9a995b1529 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg index 770688049e..c325e4a74c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg index 0391fe35d4..ac4a1c4e19 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg index 589bb2edf3..daa23def10 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg index 7ade544cfc..08e8a6e78c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg index f9c214dca6..5d06e3d2db 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg index 765d826859..352904ad15 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg index 32187c5656..2e447e9638 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg index 2b4b07a64d..b34912e03e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg index 178c3afb7b..7be3e6e4f1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg index 8284fdd78c..b97f23a7ce 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg index fd6d4c2a57..4063b36131 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg index ea7f006c04..0b68f3e4d2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg index 0e7825773f..61c21d9d0d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg index 95029eb7b0..b37201dd29 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg index bb86961269..458b47de01 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg index 12a3714175..ad114d167d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg index 046d4100d7..02d29c0f24 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg index a120b342b3..c8ff855a1f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg index df917dfdea..0d6f5e4f01 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg index b1c3095438..ecf49161dc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg index c0145e4764..e3eb6c6bc8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg index a6cdd1d003..af21c2aa44 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg index 813e6d3f69..dbe1833889 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg index a7908dbe64..38084b916c 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg index 99d791e045..16ee0c27b4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg index 51e472a685..60393cf430 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg index 75e01a3018..39970acd1d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg index 35e4abeff8..91b94f6131 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg index a872a95bcd..2cb4d41794 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg index 5574d93931..0f29dec308 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg index 67ea5ae671..518c53ee18 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg index 1e4e6ad644..c6b41e53c2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg index b6d13637c4..3be87a45b3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg index 29c8b16abe..f04c331621 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg index 742b61c439..1a4766dfa1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg index dfdf706e1c..e0de41cf94 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg index 134c221bd0..e71f50e7c5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg index 2c91ff7e0b..aec52859fa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg index eb8c192c23..a8059b82eb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg index bbee484d44..19b8a9213a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg index 7826680ac1..09d2f59acf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg index b350f79905..cc43097e85 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg index cc6992ff79..d949cfb2bc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg index 194734ac10..0e033e1254 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg index 8d7f260d5a..aca1b80e06 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg index 3aae36e48b..ce791391e8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg index 3efe15f6a2..d9d47dfa89 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg index ff1d50c5ff..fb69f050ec 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg index 4f84aba846..4ecd5bf3ee 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg index d75aac9add..cbdb6b63a5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg index 841ee6d98e..9f9ad2c452 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg index 0114631ae7..dd4b2ee64f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg index 08fa95d022..023b51a264 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 22 +setting_version = 23 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg index 54cca88813..be55a9e69d 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg index aa2ff4be20..e29b6fd63e 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg index 942026ea17..3edca64237 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg index 0dcff6a21b..c06e0cc24e 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg index b9bc0b995a..a45e360a41 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg index 6abdba2900..cef3e3ced6 100644 --- a/resources/quality/tank_m_base_global_draft.inst.cfg +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg index e1e4f399f0..bc065a8dea 100644 --- a/resources/quality/tank_m_base_global_high.inst.cfg +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg index de2d1f2e88..4683900a0a 100644 --- a/resources/quality/tank_m_base_global_standard.inst.cfg +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index a31fbff4ea..e1f33a089f 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index 91c465b4d8..c7ed7e6c0b 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 1088370d87..5a932c9261 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 903b5e3c68..47a22b00b7 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index 83196dbbdc..dbb15a5989 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 0f5974d5b5..4f9b30b4cd 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index 2ded3ecece..cb33075051 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index 043b250cb9..b762c33c22 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index d129c14f75..2ccf5b7d44 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 96c0d5dd7f..6a88be5788 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 61e8ed738c..1b8fb99784 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index d7675bd700..33ee02b57f 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index ada9873b4c..61f7512585 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 1b234761f7..30a7ffc3ad 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 4aa5dce88e..0ed612e090 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index 58ded90e05..bb031de52f 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index c260d1e9f1..7dd86d45d7 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index 8777efd32a..1546674bb1 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index eb0c65762c..bcf8f4c3d9 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index 6365345947..e4af6949cc 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index e6e9ba3566..768d5f9579 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index b3993d9424..6637c178ad 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index fdcdf800c1..f2c201ff55 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 88c57d40d5..248f84b5f1 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index 0fe0aa16e6..37989390f4 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 7c3a01d73f..9d1e1f59fd 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index 98f44465c7..c65d8c9878 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index bfa6caefdf..45c48af06f 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index 680bb1a0fb..47651b2269 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 7c6f8424df..40fb2db3d5 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 0350280e03..1d72ea5198 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index 75e19fcb22..663e4e3184 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index 70a5265943..af5f4ec303 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index 0ae0bca17e..dc11ed8430 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 11421a756f..1242c06515 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index a66f43a83c..f606252f9b 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index f2fb5acade..2a12a43b1f 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 692ad776fa..585bde78eb 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index bbcecf09bd..f5f27a1654 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index 5800088744..c747105ca0 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index a083593777..465321cb4a 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index d8b71e65fd..672fe535c3 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index ad526006c1..271518a4f0 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index 4d1c68c0cb..4ead3de642 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 78a7161a0c..8eeb7f7a52 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 63a5a54442..6b8ac3bd49 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index aa03c022e4..d4be949691 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index 5249770cd5..ad46ffef48 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 9dd447e4b9..768c13565f 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 723810f259..5cf3c2d17a 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index e330599e95..1d2acf0f10 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index f440d62f4e..556df18b04 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index c879afab1a..136f1ad611 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 6d66a27ba6..8c1d96f8f7 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index 74c5225969..69b8c484b6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index 4de0362205..e159697c87 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 5538c370a1..6f684c0777 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index a0973bf8da..b4db252214 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index fd5fffa8d3..2ff8f1d568 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index bdf0744d98..1c197ce362 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index ca101ab2d1..30cc3f891e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 858f365243..572bf4075c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index d3bb7b6356..0ff7992da6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 3211dce29d..022d6b12f8 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index a714b854f6..1c13a45be7 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index 5898b5e489..0e40bf105d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 1fe8498132..1dccc44410 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index e754ccb09d..bc15310d38 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index 75bb872ce2..f4b1fcaa68 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index e95a76ed32..8846800d5b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index 7f94a12b2e..c7b91a24f2 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index 578f8fa05f..fd242ebf1f 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 56fce96cd2..65ee5e4060 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index e5e88e8ae4..bc7192956e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 17ad78b0fd..5aa2a1f7a6 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index 7ba4b03684..b0f80e3195 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index f91dbbfe7b..068b46b819 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index c51ec6a0e2..c1cb3a139a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 708f9fc4e4..71ba140211 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 7bae46e440..22df55ae9b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 0420015968..26d51f4048 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index b053d40c3f..e3678d6586 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 2b4f910fbe..4250674bf7 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index da98699167..68366636d1 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index 69115bd494..65f4a62d9f 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index 4e31f68f2e..f6ed38a7da 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index 337ab66092..ce05cbd117 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index dc4b03b001..d1ffc8dee0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index b2ac3e6916..90f7f5cafa 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index a98abac5fe..6ebac449eb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index 2e1e59e385..ecfc90bb0c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index adc6a856cf..597857775a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 98f8c2182b..0ab7ebeb7e 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 74d9ab12fc..0a8fa2560b 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index 1c74e11b16..fa840bb04c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index 4fa73cebf8..af5985fa28 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index 3bc2c21712..c210e1067c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index cf53d203e2..4c72239702 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 600e5d6d0f..6552f1b786 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index 59bcd138e5..6f8a31a5cc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 455511c62b..6ffc6af755 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index bd9b25a105..b92564848a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index f7bd6efbfc..49b7a3b486 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index 3c11299e67..e1fc378b86 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index e401945530..4ef60bbf98 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index 00dd53f761..c65cacdd69 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index f3f50b5274..978d1b8312 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 3ba99d0a17..1c212d6e55 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index 14915a0d75..fdf6540454 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index d47c3df97d..8d02a10d4d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index c22bbec066..9b067c6d5f 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 23bb58ea7a..6895181f48 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index 562a39da4c..c616a33dad 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index c9b82c8587..b9c6f1305d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index b1a96c0321..6ceadf98aa 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index ac5f3e5bee..e54e67f8a8 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index eca85becc6..1bd2947b6a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 8071d7193e..2a7f08d04c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 8354fba5e0..04565fcfdb 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 074632abda..61b931dcce 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index 50608d4be0..9ba18d70e8 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 86dcd154ed..7a8b36873c 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 21edbe2809..76eb3991ee 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 0bd8bb6364..48124047b0 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 8df81f55f8..9f3b21318e 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index 9a5124e4fc..86ebed427d 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index cd7f01f5ca..2f56f89d6c 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index b88d621681..cbaf24020b 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 34f9e3e47c..58c5c5a99c 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 3e3f8912d2..07590e6220 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index c16174957a..65b78d75e3 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index 06b8c01db1..db26f43e1c 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index 10397a2b5b..2e8907d03d 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index d9f6d69c14..f443539979 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index 204eca3683..a9f594e338 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index 5929c712bd..258d1b24f7 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index f63750d732..3ea6f759b6 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index 246ad7a8de..76d849144a 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index 2bfaa59e9c..38d0d5a70e 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index 1a667797bf..cf315d0311 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index c1b7c0eeeb..b2a9e83262 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index 168ee1f9c3..a00e734a4b 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index f5a4fff0a2..e31eb16a15 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index 848f6d60de..b34e256225 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 8a9cb9d96f..9b58479968 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index 9d8c29d180..fba7932975 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index e25434749f..7eeb5abb50 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index 21afc0841a..0aaf3070a2 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 2d0dcac309..0a5e9e57ec 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 4f94115634..03f0cf6317 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index 16118e491a..0bb51ba7f5 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index 4f685b96a6..b5f0525693 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index 18781c647f..0be7bc67df 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index 06de761752..168f49e05f 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index e945ac01dd..e7404f37da 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index 53e16d3f3d..d57ac22096 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 154d97c11d..443e8e9163 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 6d37eec24b..3c758b080f 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index 197c0784e5..e4e6fd325a 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 2b74aef0ee..3e521fe5cd 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index dc23c9ce86..50a6a06367 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index e66f4dbf3c..7efc2925db 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 1c0e4292fb..33c0dd9ed7 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index 972760e4af..a9dec2ac7c 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 5ba5b1aa7b..9d8eb29cbe 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index e587de7f49..3eda4c5391 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index bc6e559bee..cdb4c8589e 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index 9e74cd5116..c3b10bc011 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index d688dc9c46..2f80a69cad 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index cea23b76f1..500654b95e 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 729428a336..868647065c 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index b68e94831e..1bc9797884 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index e359ea1edc..5afbc9a036 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index e23722aa77..793faa0398 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index ad66b902ec..6aa3e37b5c 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 9a5899f57d..8839464be8 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index daa17e9534..a03fe406d6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index e87962c3e2..0ab68afe6e 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index d2b4121008..66bb790b7b 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index 387f81555c..aee6a22475 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index e2d4b0d54d..48b223905e 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index a9dd9837d2..1e2b873e7f 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index 023e040537..c3702cdd9e 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 2d539dd6b6..9906072362 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index 7c5eaddd0f..dab3aaa490 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index 9660d1dcf5..34b0df7d1f 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index 5d11d34374..b6c1244dcb 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index aaf808dd3b..1cf6176e49 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index 60586feecc..86519d1305 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index e27b930641..e8737441da 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index 1e7bb10063..c2f6ea5527 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index 607671c47f..c60b6b7bc2 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index b905bd3241..627de7cadf 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 044a9d2a46..367597cad2 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 51300f1c93..725fcb20a7 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 4fa07b2983..651ba5a4c9 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index 4189e2f030..d8620b8ea9 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index 96c304d9d3..bfe7b1127b 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index b9d8782fa6..89dada6d6d 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index 50b7ff3fba..6901d8f552 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index 42290b3be0..3177aa72da 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 137877259a..23392e8790 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index 867d9d4bca..4ccda30473 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index f55d6ea39e..9e7e746430 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index 87dcd771e5..d4ff0860ab 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index cdce525719..deda6a7f6c 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index 1696a16092..ccca511d6e 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 064cd8d1e7..17f2ce6c12 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index 2745bc4ddf..b32fa4b71e 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index 7705be45c1..f1583a70d2 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index 68cc7246f5..a46ab47036 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index 64290f624e..b83c8b5efe 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rough -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index 986c0383f7..d11d1e39e8 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index d5853d8703..1ee5b3d856 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index e5ab0dc3a4..446fadfa8d 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 55ecad6eac..07697c710c 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index ed2fc3425e..4b49afa97a 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 97f0ae05c7..6bbf2615bb 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 5f17af54a2..2ba5b0aaec 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index 6f00503f5a..ebc52fdf83 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index e5327c74e6..a51d2ee826 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index be1e007609..498e38ab67 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index e24d1292ef..f3ef6c692d 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index d2688767ff..27e856a11c 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index b857a977da..61f983c1f1 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index 2c0cf7462c..acf9a2d79b 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index 00fe14ba9c..fa26a3e621 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 89443e3599..70ea753138 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index e8b58d0285..57e2cc95eb 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 01176c7cd5..0a6247df5e 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index 90669a7bae..e7d5a413d3 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 553b764395..59d727e0ee 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index 452062d3b8..8093f901b3 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index 9f4d56bab1..4da10a58b7 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index 989d115cee..a2928c11ae 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index 901cb8ddfc..d3acc3d676 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index bd431e4d8a..00e1753f59 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index 31e4283783..cd456caa85 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index b565f26eab..c3681301cf 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index f10771f87d..a330602fdd 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index e15f473ceb..bf9e99eea5 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index 0d95bba0ed..a5b2744362 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 56607f5f29..766b6ef1ff 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index be195e72ef..529cb82628 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index eb0be81313..9a9213c25e 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index f544466fd2..32174de806 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index 0a88af6279..f55cc7c36d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 28414c3897..4d1989d074 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index ff2cde5e65..47b93b14f5 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index 93bc9bf622..ac3ab46420 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index 925270ecfc..7ba8d13fc7 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 93b52215f0..8d9b052abe 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index e2f943a960..6654f3a13d 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index a7863a4acf..292d3964c9 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index f943d08962..a18faa2496 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index 9afa6cab04..d73b38625f 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index 5049cb98cd..bc1d930f5c 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 9249ab7ce2..2aed3e25e3 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index b41052239b..672344afe9 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index 022a9870dc..be051364fd 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index a250afa8f1..50ef6ef118 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index 7d7deb7cba..ffaa82b9f1 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 92f63b1d9d..0142c3df2d 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index e4157be72d..fab1c4d968 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index 13d90a8ce8..26f374607e 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 4e4812aa1f..9f334a996a 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 2c4200b39c..45f87521af 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index 946e26addb..a259e5d759 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index c97a313d2b..cdc8b281b5 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index 681c46222a..b47b18b9e4 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 203d30088b..731c9371bb 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 30d4eff84f..61dedfdfc7 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index e980a58a03..d3233fd303 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index 17c1b418e8..c9fc819a6c 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index 5049ec7701..db08081c75 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index c903633627..bc90a60fa8 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index 1a49419332..f424abd5d9 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index 3c32939c54..db575821d8 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index bd7f9bf0a9..3fbea6b899 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index 00422a3217..c4e806ae5e 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index 6b671fd76f..eedbf5abe2 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index ae8948a49c..eb2f3f269f 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 34463e5264..9383f9a018 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index fcff0923c5..a6dfedc300 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 9f3b28447d..35dcbfdc7c 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index afaeba67ca..57d6acaea1 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 7f3f524486..53991fb83c 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 38560b306d..15c704f00c 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 63178d9581..373a4ac415 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index 99a10435bf..ac28e1163f 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index 5011c27069..842364a0e2 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index 794dcf2377..a4b3b53d9a 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index d4e0349657..d3906d40a4 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index ca4a29a1d9..ce35f5fdf6 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index dfb3c868ef..a66b8d893a 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index 6dae7ed201..b33d5b9601 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 929b1a3216..1ae2910d5f 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index f6a1561345..e7668c52ff 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index 347050c648..87b3fc43f1 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 4dfee6ba54..8e8abd0af3 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index caedbce198..aa23c2d29e 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index 39a81d5f01..35cc2eb58c 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index 97fb479fad..7ec4b73d06 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index 8d6fefbe1d..4c0d9734a4 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index 671351c49b..89132582c2 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index 0ab8ca241c..e602968179 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 696aeed758..268629808d 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index 80dbf78005..1bc04ea32a 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index e1d6d1c46a..de94c44cb2 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 885bc9d627..7a07755564 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index 743c75fd26..9261d6a828 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index e06b5806a1..ee9c178686 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index 5222c4f8c4..c29f258765 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 72aef4be2f..7a1ef4d328 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index d04e932f56..6c1226cb94 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 7a65666930..7733a6542f 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index c715197c4b..64b20d7697 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index 8d3f5e1e90..a3f73e630f 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index e74435cce2..dad85dbf32 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index 32409eb11d..c545bc162b 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index 24fd8ad528..b90a08e164 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index a969efd90d..c3c6ec1ccb 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index 93da7dd17a..b2301907f1 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index b8a355c134..4e8d0b98dd 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index 29435450a4..9fe60b531c 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index 65a3845fba..05ac13318e 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 9d6b67f05a..6af095a034 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 9c5c4c6f44..512444d2d0 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index 5c4a5cae79..c81aa84dd1 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index 1d46e2deed..c201d3c190 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index 04a0f9e766..af44fbb77a 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index 6a64213e35..bf548fe1da 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index cbb77c254f..fef262b2e9 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index ffa19bf6c1..42394c95c5 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index e6c465d42f..c620b6d639 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 00d99624b5..2007aed6e8 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 0b9cb7f968..2297ed8f46 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index 845543b476..aa2cefdeed 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 332af0cfbe..8ad024143d 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index c1cc2156df..8ce3d3fc8a 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 6cc6edb7e4..7b04f77dae 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index 22c1c509a2..20cf3f4f39 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index fc85fc5b80..b47d8dcbbf 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 2efd0057e1..635691d3df 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index dfccddb68f..9e631ee4a2 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index 36d8fe8b65..69911019ee 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index bb454cc508..af5fab1f9c 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index 716556770c..e4ba9b64a5 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index e9577ec1ef..d6beb15c1b 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index c8c4c793a5..82e9444d96 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index 1c5393bf2f..dc6e6470a8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index 68903f8d2b..226d4f417d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index 40dfe13c5d..6ea8c1855a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index 8dbc445e88..45960525a1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index 65d0cf82a1..bccbceb94b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index cbc3c1d3eb..7a7bbd77b6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index 9ac9c655d1..dbdf7ff3ce 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 12406ab608..425b214086 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index 0923ec23a8..a53fa1d41c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index 3b5228f9d3..ba09e6f598 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index 37f71e1bc0..b39d2167e5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 000be268ec..02ef186159 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index dc234ed19d..4365af9728 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index 0f4d777032..839d10fb5b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index 6b998e8fb2..deb4633e6f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index b1d349c279..42542ca2c2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 4373028ddf..606286b545 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index e2f8600292..7f4ab594d1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index f8d0116b7c..3f739736a4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 44f42f986c..86767b0734 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index 8d9fff5b70..cc0b73b62a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index a33c8ae3ce..432f5c88be 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index 58db5e0095..ff05cd8e3b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index c2bb284c74..315bed236d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 9b56520d74..9be9845ccf 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 0333f112d2..22b98a2bef 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index 240a7011a7..f0bf399845 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index 9c3ad03ceb..5e9bfe3f10 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 6485615ce2..0acedb59a4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index 2b97c09d63..83645f994e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 7fbef3d30a..35cdc1c793 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 48f94b5134..49518bcc83 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 1641791a2e..4c9d6de011 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 0ef8c166c4..9ba27afdba 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 435548e798..081fd35b40 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 67c33e8847..175e85ceee 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index 2e99824362..4546b75ecd 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index e9ad448271..8acbf177bb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index 3cf8b80fb8..c591382c17 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index c9219171e7..247cb35fb1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index 110fe13e0b..b61cd02dae 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index 0934eb1eae..24cdf93b52 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index cf6c7350c6..7c80517589 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index ba1d9bfb53..89fe4a4e34 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 1945d233cd..84745a9d01 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index 8bf08cb773..c8bc507424 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index b3100bdb1c..0d06ee23f4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index d243ed781a..4fcdc54f98 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index 5c66c13b1f..b9b838e14e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 6d6ee19834..462282adc6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 052353a1cf..2d2a424ebc 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index 3a41b7dce2..f274f95f8d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index 69f1a49660..0192052440 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index fc7c6ab4c2..d5aaa0a754 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index 9e88be9084..f4fdd27861 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 583cf3cdce..0e2fef1c91 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index 5b0f5e405c..ba01ab72d7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index d24c6508d1..b61dda88da 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index 1bd6b8e3c5..c5cd0c61b2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index 9a8f87f339..972bfda801 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index f4c494114d..f81f88276e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index a382bb2d36..d0ef8d2b5c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index f426935b2b..782a08c6ed 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 093332e5b7..42b6f2ea89 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index c172116a67..e49f37cc77 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index d4deb83116..45acc00ce9 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index a2b133afe6..6354670e28 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index 090f8d08ee..e53d36940c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index 60a1d80a3c..eff671f0e7 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 80339723e2..261dc31a8d 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index 6815ea04e1..13330087fc 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index eeb924906f..56ee69253d 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index c0805a5854..07a7f1eb95 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 529cb2deaf..001364bd92 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index a64c8298a2..10e384276b 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index 0b6ae2320b..e9fb3a8258 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index 16be0db845..b64e3dfb1e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 916b283c9c..41b5031de1 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 5dcbe80bbb..8195470e4f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index 1420880995..ecb9faad44 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index e0dd43cc28..d6731e02b0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 16ece7c2dd..55af57f67a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index ca7fd8cbf3..367fe5dcf6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 5de59e58c9..9d9203c2ac 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index b2020831d7..0a9b2d9f02 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 4be3a9c13a..577538fac1 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index 2e24f485d0..b52f60361b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index 6cfba34af9..cb6e303af3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index faa7730e2c..1505a30d22 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index a4af986507..e9e926660c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index de85c4aeac..68004b632d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index 666aaef664..4a79e5728a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index bc890977eb..b65fe71a63 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index 8080dc1825..7d6d2eabaf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index f034413001..4739ce4f5c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 28e8ccbf75..7c894abf0b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 5113277ab2..542c9a51bf 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 636ce41e71..1f5cba710d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index a7c533bfea..4bfa09ae9e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index 72990ea79e..2174893804 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 8bde02fd50..434e7ce54c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index 9ecea87834..c139608ff1 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 1d44e48193..44e49ed160 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 6b99ed5a70..0fa970bc70 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 97be45babc..42784f075a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index f305caa82d..994d781aef 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index c82043d3af..4fbcdedfa6 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 74a628f7cb..0655fa158b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index fa9b4c54ea..375f79a0aa 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index cffd1e6075..f5eb8575b0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 94fe824f5e..3cf1ad08e8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index 05a6896646..df4cd1cb5e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index ca88ca0986..833b2e2ba4 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index e084600c42..667efc592c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index e6ea1f555d..13c119ffae 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index d863230b10..4614943320 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index 1a95bcb77f..c02bf624d8 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index 7ff4d13b02..ad0d2c1d5e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index dcca81f3ef..d9a7590540 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 585ae8eefe..4696e86a1e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 2280a837ae..8bea04ec52 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index b1f867807b..5a2b0be400 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index a75ae74ada..61e169f227 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index c1544a00e2..889c7d559e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index a0fc036566..d551dac42e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 547ab013fb..60092ffe17 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b17789ad0f..b144fd3a44 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index 2a3cd5df62..b4a09c306d 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index ddd5a34efa..8b90dd7c42 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index bf4fc9b6ab..cb7e0df75e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 3eafff9a07..4541fd17ea 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index fe36a86948..a23d38188b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 2bba762e2d..8ca93cd813 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index 57a830402a..c59367946e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40f710327f..40d91ace75 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index 702c64bb78..dc387d1358 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 145389fbe4..1d64336e57 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 68d54bd406..0ea5def31a 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 2aa79cad79..83b73eea9e 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index a9b7a92918..3404da85e4 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 16e17c500e..40926c6d92 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index 96dec4f1c5..b1ccf767d0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 859eb3b33a..67a81efc7b 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 61ace7da80..8596784c18 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index e45b8f2d1d..8e0ce7b6b3 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index eab1a39931..3a38fd1b35 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index ad1e26c7da..f7f7192483 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index e5ae49b17d..0cab276520 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index 38334b4358..da82ad30eb 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index 107e29b30f..4b6a6781f1 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index 7c9d28ae29..7cb3be4d0a 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index 66df697ddf..c85cc5c30f 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index 820c25f6ba..1195b49051 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 1db93cc34f..23b5bda714 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index c27bc8b96c..277909301e 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index 3f1f52f563..cd4be3a748 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index be0be2dfbf..4c59ff74cd 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index 53addba134..b09024d070 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg new file mode 100644 index 0000000000..a43607553c --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.25 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg new file mode 100644 index 0000000000..005afd9d7c --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.25 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg new file mode 100644 index 0000000000..de686a7325 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.25 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg new file mode 100644 index 0000000000..19bbdea933 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg new file mode 100644 index 0000000000..eb28e13dfa --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg @@ -0,0 +1,30 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_bam +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.4 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +brim_replaces_support = False +machine_nozzle_heat_up_speed = 1.56 +material_print_temperature = =default_material_print_temperature - 5 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +skin_material_flow = =material_flow * 0.965 +speed_print = 60 +support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_join_distance = 5 +support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg new file mode 100644 index 0000000000..6bdee60b57 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_bam +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +brim_replaces_support = False +machine_nozzle_heat_up_speed = 1.56 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +skin_material_flow = =material_flow * 0.965 +speed_print = 60 +support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_join_distance = 5 +support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg new file mode 100644 index 0000000000..407447f7c6 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_bam +quality_type = verydraft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +brim_replaces_support = False +machine_nozzle_heat_up_speed = 1.56 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +skin_material_flow = =material_flow * 0.965 +speed_print = 50 +support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_join_distance = 5 +support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg new file mode 100644 index 0000000000..cd3fdba7a1 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_cpe_plus +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg new file mode 100644 index 0000000000..8956b5287f --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_cpe +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg new file mode 100644 index 0000000000..f6ae48bf11 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg new file mode 100644 index 0000000000..16ea397d55 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg new file mode 100644 index 0000000000..b0794b514e --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_petg +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.4 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature - 10 +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg new file mode 100644 index 0000000000..f11d73dbbd --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg new file mode 100644 index 0000000000..988c06664e --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = verydraft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg new file mode 100644 index 0000000000..1ca784384a --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.4 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..5a22723bfd --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg new file mode 100644 index 0000000000..76b9af883d --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = verydraft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 15 +skin_material_flow = =material_flow * 0.93 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg new file mode 100644 index 0000000000..d4cb4e3f0a --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_pp +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +brim_width = 20 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg new file mode 100644 index 0000000000..5606af1f31 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = normal +setting_version = 23 +type = quality +variant = AA 0.4 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..ffdc37f93f --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg new file mode 100644 index 0000000000..d900773976 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = verydraft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 15 +skin_material_flow = =material_flow * 0.965 +speed_print = 60 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg new file mode 100644 index 0000000000..f7a360beaa --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' +infill_sparse_density = 10 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.9 +skin_material_flow_layer_0 = 90 +speed_layer_0 = 20 +speed_print = 35 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg new file mode 100644 index 0000000000..b5bb6abc8f --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg new file mode 100644 index 0000000000..9908a3bb85 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_cpe +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg new file mode 100644 index 0000000000..a6b9e84f6c --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg new file mode 100644 index 0000000000..57355ea4f1 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg new file mode 100644 index 0000000000..134a7c2684 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +material = generic_petg +quality_type = superdraft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -4 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..536aed0d0d --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 15 +skin_material_flow = =material_flow * 0.93 +speed_print = 50 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg new file mode 100644 index 0000000000..a6e58a1a62 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +material = generic_pla +quality_type = superdraft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -4 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 15 +skin_material_flow = =material_flow * 0.93 +speed_print = 50 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..ed182ab57d --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 15 +skin_material_flow = =material_flow * 0.965 +speed_print = 50 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg new file mode 100644 index 0000000000..70a6f9925d --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = superdraft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -4 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 15 +skin_material_flow = =material_flow * 0.965 +speed_print = 50 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg new file mode 100644 index 0000000000..7db0c220f4 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 23 +type = quality +variant = AA 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' +infill_sparse_density = 10 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.9 +skin_material_flow_layer_0 = 90 +speed_layer_0 = 20 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg new file mode 100644 index 0000000000..0433df8c7b --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 23 +type = quality +variant = BB 0.4 +weight = 0 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_support_bottom = 100 +acceleration_support_interface = 1500 +brim_replaces_support = False +prime_tower_min_volume = 15 +skin_material_flow = =material_flow * 0.93 +speed_print = 50 +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_offset = 1 +support_offset = 3 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg new file mode 100644 index 0000000000..d2bf84490f --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = draft +setting_version = 23 +type = quality +variant = BB 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_support_bottom = 100 +acceleration_support_interface = 1500 +brim_replaces_support = False +prime_tower_min_volume = 15 +skin_material_flow = =material_flow * 0.93 +speed_print = 50 +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_offset = 1 +support_offset = 3 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg new file mode 100644 index 0000000000..b2ccbffdb0 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = verydraft +setting_version = 23 +type = quality +variant = BB 0.4 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_support_bottom = 100 +acceleration_support_interface = 1500 +brim_replaces_support = False +prime_tower_min_volume = 15 +skin_material_flow = =material_flow * 0.93 +speed_print = 40 +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_offset = 1 +support_offset = 3 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg new file mode 100644 index 0000000000..22d5a3aedf --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg @@ -0,0 +1,27 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = draft +setting_version = 23 +type = quality +variant = BB 0.8 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_support_bottom = 100 +acceleration_support_interface = 1500 +brim_replaces_support = False +prime_tower_min_volume = 15 +skin_material_flow = =material_flow * 0.93 +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_offset = 1 +support_offset = 3 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg new file mode 100644 index 0000000000..9387393eaa --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg @@ -0,0 +1,27 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = verydraft +setting_version = 23 +type = quality +variant = BB 0.8 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_support_bottom = 100 +acceleration_support_interface = 1500 +brim_replaces_support = False +prime_tower_min_volume = 15 +skin_material_flow = =material_flow * 0.93 +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_offset = 1 +support_offset = 3 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg new file mode 100644 index 0000000000..fab9114a4b --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg @@ -0,0 +1,27 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = superdraft +setting_version = 23 +type = quality +variant = BB 0.8 +weight = -4 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_support_bottom = 100 +acceleration_support_interface = 1500 +brim_replaces_support = False +prime_tower_min_volume = 15 +skin_material_flow = =material_flow * 0.93 +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_offset = 1 +support_offset = 3 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg new file mode 100644 index 0000000000..a9616d2c56 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_cffpa +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg new file mode 100644 index 0000000000..ff2b894cb8 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_gffpa +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..3f00103ddd --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 +cool_fan_speed_max = =cool_fan_speed +infill_wall_line_count = 1 +material_shrinkage_percentage = 100.15 +material_shrinkage_percentage_z = 100.15 +skin_material_flow = =material_flow * 0.93 +speed_print = 60 +xy_offset = =machine_nozzle_size * -0.25 +xy_offset_layer_0 = =xy_offset + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg new file mode 100644 index 0000000000..7b6a444531 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_cffpa +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg new file mode 100644 index 0000000000..4b82f05342 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_gffpa +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..b33a4c38e3 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 +cool_fan_speed_max = =cool_fan_speed +infill_wall_line_count = 1 +material_shrinkage_percentage = 100.15 +material_shrinkage_percentage_z = 100.15 +skin_material_flow = =material_flow * 0.93 +speed_print = 60 +xy_offset = =machine_nozzle_size * -0.25 +xy_offset_layer_0 = =xy_offset + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..8e4a105358 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = generic_pla +quality_type = draft +setting_version = 23 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg new file mode 100644 index 0000000000..a168b8f7d0 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = generic_pla +quality_type = verydraft +setting_version = 23 +type = quality +variant = CC 0.6 +weight = -3 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +inset_direction = outside_in +skin_material_flow = =material_flow * 0.93 + diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..7a88390184 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = =round(0.2 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg new file mode 100644 index 0000000000..44783fa788 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 23 +type = quality +weight = -1 + +[values] +layer_height = =round(0.15 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..6b192914f3 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 23 +type = quality +weight = 0 + +[values] +layer_height = =round(0.1 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg new file mode 100644 index 0000000000..09e179a68b --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +global_quality = True +quality_type = superdraft +setting_version = 23 +type = quality +weight = -4 + +[values] +layer_height = =round(0.4 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg new file mode 100644 index 0000000000..6aa1be79a3 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +global_quality = True +quality_type = verydraft +setting_version = 23 +type = quality +weight = -3 + +[values] +layer_height = =round(0.3 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg new file mode 100644 index 0000000000..8204135cc0 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_cffpps +quality_type = draft +setting_version = 23 +type = quality +variant = HT 0.6 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +adhesion_type = brim +infill_wall_line_count = 1 +retraction_combing_max_distance = 2 +skin_material_flow = =material_flow * 0.93 +speed_print = 60 +xy_offset = =machine_nozzle_size * -0.25 +xy_offset_layer_0 = =xy_offset + diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..aa4022bc5d --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 23 +type = quality +variant = HT 0.6 +weight = -2 + +[values] +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 +cool_fan_speed_max = =cool_fan_speed +infill_wall_line_count = 1 +material_shrinkage_percentage = 100.15 +material_shrinkage_percentage_z = 100.15 +skin_material_flow = =material_flow * 0.93 +speed_print = 60 +xy_offset = =machine_nozzle_size * -0.25 +xy_offset_layer_0 = =xy_offset + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..d426353111 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..3272134e2d --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..f2d399ff3b --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..78e7b96bc8 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..eda3730602 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..e46ee25b09 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..4cfb9c9276 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_rapidrinse_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +cool_fan_enabled = False +cool_min_temperature = =material_print_temperature +raft_airgap = 0.0 +retract_at_layer_change = True +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..2ee2106356 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_sr30_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +cool_fan_enabled = False +cool_min_temperature = =material_print_temperature +raft_airgap = 0.0 +raft_interface_line_width = 0.7 +raft_interface_speed = 70 +raft_surface_speed = 90 +retract_at_layer_change = True +retraction_amount = 0.5 +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..f3d1eea204 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.203 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..444d893bc7 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..d95a017608 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..384f85381c --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,50 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..afc790abb4 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..f142216062 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..c18441b7cd --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..e8ee70b2b4 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,51 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..5d5f891daf --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..ea2a441350 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..acbd50b36e --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,51 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..f73e194cc2 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -0,0 +1,36 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_rapidrinse_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +cool_fan_enabled = False +cool_min_temperature = =material_print_temperature +raft_airgap = 0.0 +retract_at_layer_change = True +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..370a22fd34 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -0,0 +1,41 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_sr30_175 +quality_type = draft +setting_version = 23 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +cool_fan_enabled = False +cool_min_temperature = =material_print_temperature +raft_airgap = 0.0 +raft_interface_line_width = 0.7 +raft_interface_speed = 70 +raft_surface_speed = 90 +retract_at_layer_change = True +retraction_amount = 0.5 +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..115568be2c --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..77acd4f2b9 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..94895b5fa4 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +raft_airgap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..0ecfa14554 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -0,0 +1,51 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_asa_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_print_temperature_layer_0 = =default_material_print_temperature+5 +raft_airgap = 0.3 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 98.0 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..cc075adf90 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -0,0 +1,53 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_nylon12-cf_175 +quality_type = draft +setting_version = 23 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = False +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = 3 +raft_base_line_width = 1.2 +raft_base_speed = 10 +retract_at_layer_change = True +retraction_amount = 0.5 +retraction_min_travel = 3.2 +roofing_material_flow = 100 +small_skin_width = 3.6 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index 2d7da87e55..8eba38b4cc 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 8f77b3b330..7fb577145e 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index c28b33c715..c7d9e9707e 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index 931ba6a129..0014913d10 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index 74ab824a8d..d865eb9860 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index 0229a765f4..cc7eda9652 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index 5e0afa0015..bfb1174912 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -6,12 +6,13 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] +cool_fan_speed_0 = 0 material_print_temperature = =default_material_print_temperature - 20 speed_topbottom = =math.ceil(speed_print * 30 / 55) support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index de251c92dd..8f8cd8f46e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index c6d99b63b5..e0fcdf5530 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 ooze_shield_angle = 40 raft_airgap = 0.4 -retraction_min_travel = 5 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index ec86494397..2135e5deaf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index bf1b51dfdc..7f7b9da311 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index a09a6eb09a..ed70f807c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 77082932a5..75740231e3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.2 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 retraction_prime_speed = 15 speed_print = 25 speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index b751075b85..fb8f230a5f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index ada1c2cefb..eeb51a1428 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,16 +6,69 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -material_print_temperature = =default_material_print_temperature - 20 -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_fan_speed_0 = 0 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.15 +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index fe8efb08d8..fb5bcc256b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,18 +6,67 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -material_print_temperature = =default_material_print_temperature - 15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.8 +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index b9ec617a19..042058d1f0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,27 +6,68 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 10 -retraction_hop = 0.2 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -travel_avoid_distance = 0.4 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index 4ffc038ac5..7d124c4578 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,26 +6,68 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 5 -speed_print = 30 -speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index 6877d9b6a2..b86675ae95 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index de1905e410..7ec6ff5bba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index ae5c9bcbc1..a51bbfd3e5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index 701a2db84d..ff2b386de6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index 684336d1eb..d7cc2fd346 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index a7a17e5f69..bcca24890b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index a3b8129ed7..f398a6a42d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 5c051039d0..522f155ad0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 61073067fc..acd966f3ab 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 880461bccf..6d9947b294 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 5dd5e61f82..3566b82f90 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index 7617b35b3b..f720fa71c1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 7ed1fcd298..5e94d1f585 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index 97dc8ef3e0..c0767352a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index 51a4f56527..7c5f9caab4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index b53ff26056..191290bdec 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index 776a06004b..b33a421c02 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index f30d77be95..bf59d60973 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index a7eefa9867..31ce3c3928 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 8a2a2810d6..7a30166c37 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index d000e3ec20..04f83b8aef 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index f46f816cfb..87eb067985 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index 2c23449373..a78b80f786 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index e0899c8dc2..1f5f8ba874 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 329bd095d5..43480fb647 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index adc4670e8d..70f9815aae 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index 6838afede3..cab7619421 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index 7829f46334..ae89f04511 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index db079b04c9..3bdd528ea2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg index b035dcd5f4..09b62fda68 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 4b8f9f433b..9b2325250c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index 5581284de4..caf4248a91 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 30af138465..3e79a33e69 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index e5dc960d98..3e814754e4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 719adc820b..87eeb609a7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index eee8fc31b6..d1de0713db 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index fa87825718..5ee4b4ea78 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 6c90ec685f..45489cdfe1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index b5253cb077..c9e2ca784e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 69cf85f349..98120114f5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 397992c551..90a53df66a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index 773da6d3ac..fe574fc80b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 10e43b5699..6b66454bc7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 15018203e9..8e3ab5173e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -28,7 +33,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) @@ -42,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 1b9912c1d6..7469d30453 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -29,7 +34,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) @@ -43,7 +47,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 971cee7b3a..4c702e3b27 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -28,7 +33,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) @@ -42,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index 312afa0421..e8cb2907b7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.8 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 10 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index cd8e392dfa..a08e98868f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index b53e8275a2..54ca472acf 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 29f3cb056f..54acafc477 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,11 +50,12 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,9 +69,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.05 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 94535ab9c1..78d2da225f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 1b7919bd02..2ae056128c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,22 +6,68 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 10 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 4c2861436a..7b57ca8f7a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -51,7 +51,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index afa05aa2cf..b19beadf42 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,22 +6,68 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 5 -speed_infill = =math.ceil(speed_print * 45 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 7e29e3a9d0..77c839688b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,11 +49,12 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,9 +68,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 2a74986a2a..647261b0c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 2939389a3c..00c4be354f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 35 / 50) -speed_wall = =math.ceil(speed_print * 35 / 50) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 0f3fee265b..432f722013 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 2b430c1afb..39aa770c10 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,20 +6,69 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 100f2485ba..8a2a5b19a7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,11 +50,12 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,9 +69,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index d06fa7c63b..1851be3eab 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index c84c2fb66e..e902727c41 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index d0a2747ea4..15566dd63d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index 47687fb5be..c1f93a6ac6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index ea4761463c..fd0e3e5344 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,11 +49,12 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,9 +68,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 4ba2b956e9..3f62d21120 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 2be5fb643e..13aa3ea916 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 219d5f1d56..3b51b39fdd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index 7f0ce6b131..b15ed15d51 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index c2d04c9bad..6125cdd468 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index caf16e5f94..b57bbfcfd4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 1cd46fab48..63cb5c6b62 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index f9ee324f33..572d6a14c1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index f883fe1998..bf36800e96 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index a5c059c5e6..54c1872876 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index e7d656dcc4..b93480ecac 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 08c1f4933b..90156ac8a3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index c4d2894885..f2d50ef529 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index 9a79c3831c..f3e73ac51f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 77355d22b5..61227b58c0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index 6669edeaf4..0fb4f697ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index d901c6c0dd..1b559783ef 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 0279882346..588ff80120 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 373d6a0b78..246aa7f2e0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index 1feae070fc..87b1b64804 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index f93f0848db..75b5ddfd5f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 67f9cdfcf0..5eccf9bef4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 163f32a36d..65a7d476c3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,7 +24,6 @@ prime_tower_min_volume = 10 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index 3f75c3366e..f3e3c1f062 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -24,7 +24,6 @@ prime_tower_min_volume = 15 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index b2c5dab3c4..f091059d19 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -24,7 +24,6 @@ prime_tower_min_volume = 20 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_infill = =math.ceil(speed_wall * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 1f706632ce..788182ad91 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index b1437e9160..d18423fb20 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 7c3c4ff6e9..52006ce801 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index 75949f45aa..cc082aa98b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 @@ -27,7 +32,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) @@ -37,7 +41,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 034bda5d09..60b74e9e8b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -28,7 +33,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) @@ -38,7 +42,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index e7189d5467..d2112a066d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -27,7 +32,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_infill = =speed_print speed_print = 30 @@ -38,7 +42,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index fb7c9e5592..3bcab3006c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -54,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index 897b0e8688..d5f5439634 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 12e37a25d9..58369c9252 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 58503dfcd9..5a804ae0e8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,10 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall -bridge_skin_material_flow = 100 +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_material_flow = 100 +bridge_wall_material_flow = 200 bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -55,7 +55,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 0c35b29fe0..b66dba1dee 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 1c8ba2c88b..30d0e49ede 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index d1b4c11a74..336beaf117 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -54,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index 347f3bd093..07641eb84a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 6aaf0461e2..880ac666d7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 44b1e76594..b546398893 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -54,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index d509a82bb6..403e44d04c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index a6ac3f3895..867154ac70 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index 12b815d5ab..44a7379dcb 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 5390b3ecb7..3541afe350 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index b15b5958a7..23ac57b474 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index e273e85eb5..e12a164f80 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index e8401bc025..4b148bd5fd 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 34873606af..563f441335 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index c30007a636..66e9d39a07 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index 4bb2a411aa..ee6d9fce33 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index f205541fe9..9ab5d05612 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index 5745328e16..a6dbc29c7d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index dd4f4c1da1..827c8d2ef9 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index b594e05009..7359087b44 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index ff6a9fb197..956b60d524 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index d57c195038..6703851171 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 3ff36e0f35..3a3d53aa32 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index 879abf7d08..ae5a395ffb 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg index fd25f84ca5..d13d630f5e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg index ea26d6b146..e89e9de845 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index ea2902cd6c..b45c225162 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index bbbad9be1f..ed0186e5d0 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index 300e2ebaed..f5077c90db 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index 84040ede4e..70a278ea32 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index 2021632327..aa60eec702 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index 831bf6e90b..eeaf1e492c 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index 44850349f2..cee7f7c04f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index b20fe94145..43dd326538 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg index b49ee3061e..300d5b02b3 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg index db82d6e40e..d7b2c39468 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg index 8e94df9387..502f5fa11b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index 402ae15eba..9c1570ee8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index 0c9154a233..0ed8088a9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index e7b72d6cd0..2a596778ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index 38c857de5e..6ecdf06d8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index 7f29b2a7fc..0758e70506 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index a81faa637b..292e8f458f 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index 432531edba..af119d34d3 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index c48aee9591..fe51a0fc67 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 73600ea4aa..32dfff4185 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index 8d331bb8f5..a90aaceab8 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 2e09727a19..049396232a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -6,12 +6,13 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] +cool_fan_speed_0 = 0 material_print_temperature = =default_material_print_temperature - 20 speed_topbottom = =math.ceil(speed_print * 30 / 55) support_bottom_distance = =support_z_distance diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index eb98d02593..6977685699 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 38267fcf24..54be78e034 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 20 ooze_shield_angle = 40 raft_airgap = 0.4 -retraction_min_travel = 5 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 5779142162..0d9a1ed982 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index b1fc1b9904..0907b2f03e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index ab26722d87..e2d1105294 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index 64b1be79aa..ec510c886d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.2 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 retraction_prime_speed = 15 speed_print = 25 speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 97a8217333..3b414db092 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index 1b6c680650..a31045f9ed 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,16 +6,69 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -material_print_temperature = =default_material_print_temperature - 20 -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_fan_speed_0 = 0 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.15 +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index c5cadca4bd..b171fdef80 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,18 +6,67 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -material_print_temperature = =default_material_print_temperature - 15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_topbottom = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.8 +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index c6d2afaf03..fec58e9d8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,27 +6,68 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 10 -retraction_hop = 0.2 -speed_print = 30 -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -travel_avoid_distance = 0.4 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index a28e41553f..74f71b970f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,26 +6,68 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.25 weight = 0 [values] -brim_width = 8 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' -machine_nozzle_cool_down_speed = 0.9 -machine_nozzle_heat_up_speed = 1.4 -material_print_temperature = =default_material_print_temperature - 5 -speed_print = 30 -speed_topbottom = =math.ceil(speed_print * 20 / 30) -speed_wall = =math.ceil(speed_print * 25 / 30) -speed_wall_0 = =math.ceil(speed_print * 20 / 30) +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +optimize_wall_printing_order = False +prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 +retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 0.72 -wall_0_inset = 0.015 -wall_0_wipe_dist = 0.25 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 573b758705..6aa6f23365 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 926ef49922..72e3d668db 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index 598e83d922..f1c40d435f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index 5f5e9e2fd3..ac070dcf59 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index 8656a28067..e1d20b4786 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index a4381e0e3b..6b118fde63 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 5f4c480fa4..6422d61996 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 9e3c0153b1..4b82ec4068 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index bd4e13ebaf..6a910b3deb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index a77d1b4233..c262d3ae31 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index 805fb08ead..fec5e0a4c0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 77f775d672..25ed3adb96 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index 877c48c42d..d16b3578f8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index ec98c131a9..c9448b8e9a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 95c436a449..6672a867bf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index 8f9877eebc..4aa5049046 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index f5ecef3fc5..2f6b9483d3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index b9b89ef3b7..656822b80b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 33c05d16ce..950170017f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 0248ef6169..911fb56357 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 7440015ced..7b30fd474e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 0b471a8c75..1442f1b180 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index 6c9710e436..fb1502f4f1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 945b77e699..920e807c30 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 @@ -26,7 +26,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index b523e3c646..f9e78aeea6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -25,7 +25,6 @@ prime_tower_wipe_enabled = True raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 6fe817fba1..32daf56a05 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index 8a47953164..e311a70015 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 1e04aad8ce..3d3f08ee59 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index aaf279f115..c78b64128e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg index 78971b4a15..c7c5c6582c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index f34549bc78..a06de49699 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 4a9e914b99..de3e873bd7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index dc73f13bb5..f6b0cc0a72 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index ead512bb50..c520a270cd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index c6641e7a08..3d7d7bf0e8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 85e892628d..238da07637 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -28,7 +28,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 531f946ba8..8a36acf81c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index a7f63a76b1..cec826b2b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -29,7 +29,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = 0.8 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 25 / 25) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index cf7a8335b8..928699193b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index a7dcb61128..1cd2ca0af6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index f053b33478..a127f1bafc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 4e98b6005a..f8b8b835ca 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index 5c6ed28548..f475ac6484 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index 0b69ae0c43..bf5504f7e5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -28,7 +33,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) @@ -42,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 29aa42a436..095b9a5524 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -29,7 +34,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) @@ -43,7 +47,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 48e6ffb81b..618f0c1043 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 gradual_infill_step_height = =5 * layer_height infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' @@ -28,7 +33,6 @@ prime_tower_wipe_enabled = True retraction_count_max = 15 retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) @@ -42,7 +46,7 @@ support_z_distance = =math.ceil(0.3/layer_height)*layer_height switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 -top_bottom_thickness = 0.7 +top_bottom_thickness = =layer_height * 6 travel_avoid_distance = 1.5 wall_0_inset = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index a69ff33f76..d0950efea0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.8 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 10 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 1085472560..74c3a78082 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index ca659622cb..f71fe4a164 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_final_print_temperature = =material_print_temperature - 20 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.8 +material_max_flowrate = 20 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 -speed_infill = =math.ceil(speed_print * 40 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +retraction_amount = 6.5 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 22ef09c921..b319290e66 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,11 +50,12 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,9 +69,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.05 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 9067d8fb33..8ff6abf061 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index 9545d34977..eb66565732 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,22 +6,68 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 10 -speed_infill = =math.ceil(speed_print * 40 / 50) -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 30 / 50) -speed_wall = =math.ceil(speed_print * 30 / 50) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index 8a64a81ab1..c40db10dd5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -51,7 +51,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -65,7 +65,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index 4a20bd76b3..db70a58d81 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,22 +6,68 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' -machine_nozzle_cool_down_speed = 0.85 -machine_nozzle_heat_up_speed = 1.5 -material_print_temperature = =default_material_print_temperature - 5 -speed_infill = =math.ceil(speed_print * 45 / 55) -speed_print = 55 -speed_topbottom = =math.ceil(speed_print * 30 / 55) -speed_wall = =math.ceil(speed_print * 30 / 55) +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 4 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.4 +machine_nozzle_heat_up_speed = 1.7 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 20 +optimize_wall_printing_order = False +prime_tower_enable = False +retraction_amount = 8 +retraction_prime_speed = 15 +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 +top_bottom_thickness = =max(1.2 , layer_height * 6) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 70ee9b0309..53e9e671a1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,11 +49,12 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,9 +68,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 65c8343d85..6b3a4ade86 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index c2bb123d04..dc83ca3836 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 50 -speed_topbottom = =math.ceil(speed_print * 35 / 50) -speed_wall = =math.ceil(speed_print * 35 / 50) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index ac6cce0b10..05ace5503b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index 1e2820f565..9c47aedd1b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,20 +6,69 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 12 +optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 30 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index dbea8c6436..f88ae2633f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -49,11 +50,12 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,9 +69,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index dcb2e0c516..ff6107a869 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 595de835ba..1c06b3206a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 1 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 59044a7f04..1107e0ae89 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -1 @@ -52,7 +52,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,7 +66,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 z_seam_relative = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index 07c97a632f..f504aed78d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,24 +6,69 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = 0 [values] -machine_nozzle_cool_down_speed = 0.75 -machine_nozzle_heat_up_speed = 1.6 -material_print_temperature = =default_material_print_temperature - 5 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 +_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 +acceleration_infill = =acceleration_print +acceleration_ironing = 1000 +acceleration_layer_0 = =acceleration_wall_0 +acceleration_print = 3500 +acceleration_roofing = =acceleration_wall_0 +acceleration_topbottom = =acceleration_wall +acceleration_wall = =acceleration_infill +acceleration_wall_0 = 1500 +acceleration_wall_x = =acceleration_wall +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_speed = 30 +cool_min_layer_time = 6 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' +infill_sparse_density = 15 +jerk_infill = =jerk_print +jerk_layer_0 = =jerk_wall_0 +jerk_print = =max(30, speed_print/2) +jerk_roofing = =jerk_wall_0 +jerk_topbottom = =jerk_wall +jerk_wall = =jerk_infill +jerk_wall_0 = =max(30, speed_wall_0/2) +machine_nozzle_cool_down_speed = 1.3 +machine_nozzle_heat_up_speed = 1.9 +material_extrusion_cool_down_speed = 0.7 +material_max_flowrate = 14 +optimize_wall_printing_order = False prime_tower_enable = False +raft_airgap = 0.25 +retraction_amount = 6.5 retraction_prime_speed = =retraction_speed -speed_print = 45 -speed_topbottom = =math.ceil(speed_print * 35 / 45) -speed_wall = =math.ceil(speed_print * 40 / 45) -speed_wall_0 = =math.ceil(speed_wall * 35 / 45) +retraction_speed = 45 +small_skin_on_surface = False +small_skin_width = 4 +speed_infill = =speed_print +speed_ironing = 20 +speed_layer_0 = 26 +speed_prime_tower = =speed_wall_0 +speed_print = 100 +speed_roofing = =math.ceil(speed_wall*(45/100)) +speed_support_interface = =speed_wall_0 +speed_topbottom = =speed_print +speed_wall = =speed_infill +speed_wall_0 = =math.ceil(speed_wall*(20/100)) +speed_wall_x = =speed_wall +speed_wall_x_roofing = =speed_roofing support_bottom_distance = =support_z_distance support_interface_enable = True +support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height -top_bottom_thickness = 1.2 +support_z_distance = 0.3 +top_bottom_thickness = =max(1 , layer_height * 5) +wall_0_wipe_dist = 0.8 +z_seam_relative = True +z_seam_type = back +zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 74e6d5d972..9453aa41cd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -2 @@ -28,6 +28,7 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -48,11 +49,12 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 +skin_material_flow = =1.05 * material_flow small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -66,9 +68,11 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 +wall_x_material_flow = =1.1 * wall_material_flow +wall_x_material_flow_roofing = =wall_material_flow z_seam_relative = True z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index a9cb1c6865..b4d3705503 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.4 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) @@ -67,7 +67,7 @@ support_bottom_distance = =support_z_distance support_interface_enable = True support_structure = tree support_top_distance = =support_z_distance -support_z_distance = =math.ceil(0.3/layer_height)*layer_height +support_z_distance = 0.4 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index 0448dbc35c..a57f3d1db1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 5100bd460b..3617a0f320 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index 6c677be864..c0960ecbb8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 0dd369e4dd..36793d479c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index e6ce183f4a..35959b5b46 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 0c3abc6e3f..42e8ebafa7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index eb6e07e080..e4f905a7bd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index e7958d9841..36fde0b907 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 0683b2959b..9aed2a8c55 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 5a774e0750..4498143d4b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index bed4ac46d7..02c9ecd708 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index a0d58757da..7a84fe749c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index ddce4d41ab..492b4683f1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index dd51965c6e..09092de98c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index da4671d5af..c943037a96 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 6208ad9bec..0700bad762 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index 98b0d3f5f8..f0fee5fb38 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index 156113b809..b39cbb1f44 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 10bf06fbb5..a91d523213 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 1a63005ced..8a0f863da8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index 5e22cee246..c9aa0476a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 149104700e..6c7ccf90f3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,7 +24,6 @@ prime_tower_min_volume = 10 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 670ec78d51..09c4b04702 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -24,7 +24,6 @@ prime_tower_min_volume = 15 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_wall_x = =math.ceil(speed_wall * 30 / 30) switch_extruder_prime_speed = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index c9b5c26d64..7905d94304 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -24,7 +24,6 @@ prime_tower_min_volume = 20 retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 -retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_infill = =math.ceil(speed_wall * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 26c20268ea..50c25a914b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index cc28dc5150..864c0dde9b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index eb338d1e1d..0df55e9799 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 43436cd4c7..9aa0eed853 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' machine_nozzle_cool_down_speed = 0.5 @@ -27,7 +32,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 25 / 30) @@ -37,7 +41,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 58b524dd2a..759cf36e2f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -28,7 +33,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 retraction_prime_speed = 15 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 23 / 30) @@ -38,7 +42,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index d17ec5486a..118c2524ce 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -6,12 +6,17 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 [values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 brim_width = 8.75 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 15 @@ -27,7 +32,6 @@ retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False -retraction_min_travel = =line_width * 2 speed_infill = =speed_print speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) @@ -37,7 +41,7 @@ support_angle = 50 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 -top_bottom_thickness = 1.2 +top_bottom_thickness = =layer_height * 6 top_skin_expand_distance = =line_width * 2 travel_avoid_distance = 1.5 wall_0_wipe_dist = =line_width * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index 0a66306e49..a7d3b780e5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -54,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 764a0cb9ac..46c4e0e0e5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 1f02428548..81c80a3c87 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index e74b8444f0..a049c75173 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,10 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall -bridge_skin_material_flow = 100 +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_material_flow = 100 +bridge_wall_material_flow = 200 bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -55,7 +55,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 8af2e7c1bb..9efdfc7d57 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 75 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index bd74c294e1..ffdb177247 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -54,7 +54,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index bf1a55d522..0736e60059 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -54,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 79df2f65f0..5c7b8fa441 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index acfbcb1f1e..1f2e30f402 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 30 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 6551f4de75..468ebdb9d6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -2 @@ -24,8 +24,10 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 200 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' @@ -54,7 +56,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 100 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 0f21a87568..24221a0648 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -3 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 65 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 70234b8524..133469116d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = AA 0.8 weight = -4 @@ -53,7 +53,7 @@ small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print speed_ironing = 20 -speed_layer_0 = =speed_roofing +speed_layer_0 = 26 speed_prime_tower = =speed_wall_0 speed_print = 45 speed_roofing = =math.ceil(speed_wall*(45/100)) diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 2bc28f4c1a..79c891b513 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index f5b8c35298..0606d82159 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 6457f97c9c..a4e7838358 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index eef90f5f17..1f9754b2a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index e1862ce3c4..04a35d798a 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index bf3a442070..bab8bce504 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index ff02ecedd5..31b316d5d2 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index 7db02b4cdc..773fae8204 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index 18061adda3..2446ef813d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 066e75b485..9f206ee50c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index 15f3b3e6a5..e20af2439a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 52627f2a58..09ee04d1a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index 5e29f11222..ba21c26c55 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 85b50e6768..5be5e1e49e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 371f646cb6..0f3360608b 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 778637cf3f..68824a8916 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg index 88ee346758..7c3e86ee84 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg index 00f9ef51ff..56346c81df 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index 8b807c1eb5..0797ce3a74 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index ebc58413e2..5efec81bb2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index 1204be4c15..ceedc5958d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index 6a7d52af4b..9cd74fd0b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index ad7c2f5877..863d292ddd 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 72bd69f401..958256683b 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 8d68d5c92f..57f79f7742 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 6366ee8a7e..69639343f5 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg index c9a6a2bafe..e82826f87a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg index 7abb9e4018..f2cbe9b3e5 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg index e0c6719bde..d241e2c86e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index 40d414cbcb..b5258d9288 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 6144a2c3f0..eac67e08c8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 5bf5d910e8..f4b98360cb 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 21407b6e66..2e5abe5101 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index 0922669236..2342971e46 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 3dd039c01f..7ee5274878 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 4c5b7f3462..7a1f7698d5 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 18b14b14f9..0cbe93963c 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index 8f55162a47..601c994b95 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index 1b89f8fdce..cb1c88548a 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/ultimaker_sketch/um_sketch__pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch__pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..17de71876a --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch__pla-175_0.2mm.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_sketch/um_sketch__tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch__tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..444ad58aab --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch__tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = generic_tough_pla_175 +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..01222c6f9d --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 23 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg index f3c9f4557c..d076e5e9bc 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg index 5593994feb..58796f169c 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg index 1f8cba9c8c..ea995b18df 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg index c261f4a6bd..037722df8f 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg index b7ae054c4a..8647807691 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg index 71e42cbb5c..ead1a20886 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg index 6540355cb7..a5d5f5e1bb 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg index f2cb0f2b37..ef28599bf2 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg index ebdd40c6be..d14443bfb8 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg index dfb91488ba..7945311f47 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg index 528315c479..897d3b0ba2 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg index 4edfec56ff..d15a3bdf71 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg index a9edd8aef0..34f5d3cf26 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg index cff924336b..eadeb1bf75 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg index 203f68c18b..dcbe57dd5e 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg index 3b0a4a9c75..ce50864b51 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg index 506f5b8f49..0a0e16f7eb 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg index cebd2db2c6..afbbe01541 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg index 5fd4d00661..276ab9c4ce 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg index bf01ff3a84..ee3de82b74 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg index 58180de36e..f6333c6e59 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg index 4dae58ad45..ecc3aec007 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg index 3b3314bd6e..c653bed0e7 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg index 8dd3de6ddd..bdc1bc20e4 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg index 4cc6e4fe01..54f27659ed 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg index a0be80b817..4620fa5712 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg index 18e5e32104..6bd9406ccc 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg index 0ef270c55a..bb4d584e6d 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index f9cc2b9319..e641d64fc7 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index c8c12bbe0c..2527e5b3d4 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 3d80994db8..3bc9d1ff87 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index ef5b96040a..05f9ad6151 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index 6e41376988..200a80d416 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index e92496a1d2..217cc39d13 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 443932fb54..8eff4a4b8b 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index 11fda6fa87..cd353afa3b 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q040 -setting_version = 22 +setting_version = 23 type = quality weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg index 9841118e2b..de0913379d 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg index 18e02aed4f..1c2e9d9953 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg index a93a42df02..35de218dcb 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg index 79b2c22e7a..5b68da394b 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg index 6d05047b3d..2769e9c11b 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg index 79c9d10d86..b370177f2a 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg index 6b99af5fe6..9b09314896 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg index 3e4ff411d5..4175b3b882 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg index 3a6917a9b6..513cc23f41 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg index 06fb65b9c1..12556d6daa 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg index cf28c3752f..efb0f497aa 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg index 025ee67e81..60149a698a 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg index a80ee05200..14c0ae80bb 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg index c2198ed29d..0caae6620c 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg index f36516d08d..4d34852923 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg index 37016d040b..508e79e005 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg index 929803a398..2d427ac506 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg index 39aa19d003..96e5a7e923 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg index 6e0f68c476..0807042bb0 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg index e53e6b0b70..7a680d07dd 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg index 84caa4a707..90dae71153 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg index d48114e887..4dd470095b 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg index be1401a075..cf55c91bd7 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg index 2052bbe970..880a254708 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg index b262d36cf7..4ef63d7b08 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg index ec443cc82f..f06d526431 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg index fd0605bfdd..2ff7650db7 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg index 0605347cc5..6f4fb83eab 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 8a95ba4ab8..1c6e89f0fc 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 8bd8593036..6d0017cbe4 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index 973eea0d5a..0f99d857c6 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index cc67d80bb5..93eee7b63e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 943befece3..1c65c533e8 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index ce5fd76579..d169d4d59a 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 67c9b8b2e1..17ddd32edb 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index d7f5cfef48..bd1c5850c6 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index 210ada27f4..e9dc246067 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 2eef80f6f9..95b43d256e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index 55f23a2b79..ed5f38c330 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index daa1ee388a..22072f12b4 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index 1cf2f69c28..ff7abe36f5 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = extreme -setting_version = 22 +setting_version = 23 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index d9d7bd586b..02a59ad0f5 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index 4abfc9cd55..468668bc59 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg index 8400d63613..d568325cce 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg index b4f6d84219..6b5c2865d8 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg index 43754cf4d0..17a4f24cb2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg index 51aca4c8f8..cf540a9932 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg index 123039f744..d9b7be615c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg index 2778738cc4..0d2405589c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg index 5ec01f3385..3f2515bbf5 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg index fcf9eac078..d6064b9a59 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg index 4e4f96e9a6..a0083995a5 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg index bbc3c0c2cd..f6545fa60c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg index 18741cb1f4..28d9186b29 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg index 8235de7cf3..7f65012c93 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg index 73d6ba0150..4949b12a62 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg index 4c7b04faba..745f3df40e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg index f12be97735..cfc4942cbb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg index a3c95de877..e00e416f06 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg index 26f09735ac..3a25826127 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg index 7d70600e6d..29081be573 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg index fcafe45b1a..a200039cdc 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg index 3e7fad20e7..eef989fadb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg index 214992da9c..02690c101d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg index fe33c34b00..53bc180c21 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg index cd03bbf51a..290a06a2c4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg index 9b0210c925..8f0e13f144 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg index 1edcc0aca8..c90b701134 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg index 275409e394..857497278e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg index 76756b07f5..79e9a7d18c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg index c95d7a0cbc..17664cded0 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg index 4a03f1bc16..c672c86d72 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg index dd10ada2c3..8d7a5a486e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg index fb5b65747f..2d6cbc5e52 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg index 1265bc0500..d12c7e66e3 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg index 2af82ca797..564190eb44 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg index faa561e87c..086845dc3c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg index 7f7c62fac0..83ca684136 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg index 74e59d4712..df1455f308 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg index d84b13132d..301acfa939 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg index a3ac617a88..7241dd65f3 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg index a38fbaf5ac..95b8201f1d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg index ffeb8a7186..40c59a6dac 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg index 6b1e6cc04f..77739985e9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg index deb8efc072..25abb907f4 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg index b18db947ba..58732f9d7e 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg index 56fc7ca255..6b57e6b6c9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg index 52c33c7a43..8e02902a41 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg index a43fa1416f..494a384e4a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg index 7066b13d53..5b4c240f01 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg index d0b0765276..f0ddd4e581 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg index f58eb4cc78..e0351ea270 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg index 65d0b2f86e..d9362f1fde 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg index 83a7bf1d58..e4d0f933e1 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg index 9f075001b7..1ccfed86f9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg index b39c54e521..15252d1ccf 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg index 7465e927a2..ba247803be 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg index d4beec1d17..c1449e986a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg index 24823515fc..8e83bb561c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg index ddb1057761..f196808f60 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg index d18ac9b743..68b4d68f35 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg index bd7d1b0244..64fa8215bd 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg index 7e5655563d..5dc644e22b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg index 05e47b6e01..807605532b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg index de0768bca2..69b811b413 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg index 39d448b89c..bbacab15ac 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg index afc319902c..464b184e9a 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg index 6540732950..fd88d032b4 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg index 5dc7b1b7bf..e08d8b6842 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg index 0f548bc44a..8039e2d102 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg index 5e75225fe9..91b42d6988 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg index 10661dc372..7017c58fb3 100644 --- a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg index 6de78a03e2..dfb030a717 100644 --- a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg index 7727bd3a62..46e4c52640 100644 --- a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg index 8548b27c88..067d541bbd 100644 --- a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg index 209825b5ea..20be9356b5 100644 --- a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg index a4158b482e..84663c26f8 100644 --- a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index f6002271a7..4ee607642d 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index 61844b3d8e..d20069ba37 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index 6795e06c5b..aaf4f6d4b9 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index 5cab024202..0e91710410 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index f9e974e5c8..f077f59a21 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index c96946f5a8..4dfe95931e 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index 01ae434bd0..f17c733d65 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 203e63efe0..811f769693 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index 7d0269a611..b95a225cbf 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index 58abc1beac..fcc2659b55 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index fbed3cb579..79b8722ad7 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index 46d007e043..dc39fc3c8c 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index f30fc5bdde..3226c97f8e 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 8bdddbdd1f..2e326bcff8 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 610dd6e7a0..19cc0ddcef 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index b542119eba..58edf8244a 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 703b59bf4a..3a2f4ebc8e 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index f30aa09013..de4a217293 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index bdcbbdb5e7..f9d939edde 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index c521eb96cc..c89e1d95f9 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 2b168507c3..808ff582c6 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 73a73817e1..8e8c03caa9 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index a18d0e7178..6d22eff318 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 5e46e5a4cb..03689321a1 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 82b9d849f4..7da72446a1 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index a82fbc93ff..21122e0148 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 3d79662132..9c046df8d0 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index 5f47d9dc52..a9a0abfe44 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 99070092d0..59b18958ea 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 168eaa13a9..13236aa24e 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index 4ab380a91e..093717c0cf 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index 9601e0ae6c..fc6ad396c7 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index 5de2da310b..af4cbf94cf 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 8a0b9af92b..2e85dd0709 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index 13c1186f61..a88bbec9ea 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index ead12ea85f..a4d5156c75 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index b03ca36b6e..c88987710a 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index 98c9205303..da798b475f 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 88820df029..6c0c43ef21 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 15e025f4ff..874cdaab8f 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index b183ec6665..7480719656 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 4db17e0066..0d46173ef4 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index c3ca990cb2..32dbfe249b 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index 49b593c8a4..3e0e6513e9 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 72e5a4f16f..89bb2c6fb3 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 56a6998bc2..260247659b 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index 94f01b46d9..a747b2cb40 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index 7284277d18..843d7b584f 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index 616e45f935..f8a7d60eb2 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index d77fec91e2..25342c4205 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 27a0a8556c..5fe5874ef5 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index d399f7a972..ca187fd969 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 6fc17a0c07..41170d0261 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 032c6787f6..1ef8a67370 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index d1c3338e9e..ca793bd4cd 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index eaa1ab94a9..ce40e62445 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 68d875074a..0449c493fa 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 28f798ac3c..6f29ec5055 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index 4da5a189bc..e3d8fbbd5a 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 601f2e7938..1ace1241f1 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index 73c001a0c0..f294ceb8bb 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index f0e8f84207..999e2cf9db 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality [values] diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index 807fe41ed8..d875200d07 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index cb536784b9..41fa3934fd 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 34b45927ef..7cacd10f62 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index ff77c263f5..27c9b2baa4 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index d239904200..6aaa0a5cec 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index f12c40aff3..20c0c54627 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 6bc2d68be4..98433b300a 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index 6a0a63e7c8..c52e1edc69 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 8518310a7e..7701363d27 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index 640856b1a3..db3304c8bd 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index 705d06eae4..2340ac5eb5 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index de7bdeb500..8cb43102a9 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index a11e4262d0..1da2730641 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index 491d0834c9..e880dfde90 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index 9bdf9f755b..64eb944a8e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index ad3591ebad..16b89df09d 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 4f10836289..5ab36fdc1d 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 8f13a10f46..128f4f3519 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index f7f934ebae..bef1c297b9 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index 7611969448..0fbe2717ff 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 77cfd3a2cb..8c340b4972 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index 14147f9d2a..b618f27185 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 08db73af24..5fc1baf868 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index a23bf4a3b7..0e79604c85 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index 38fb11d419..aab9828c89 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 33fd3dac2f..5e68a88b28 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 24c351401d..47cc7bd3aa 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index 406ce90e29..c265542a59 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 61e1ec3a7e..2eda5bfb6d 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index 030fabf15f..a1891a441d 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index 2224d795bf..cb5a8185c6 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 3d9349daa0..3871631972 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index 8e2a03761c..b3540539e9 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index 9dd178f0f3..8d0a0683e4 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index fcf74f3a4c..1e1f83bcd8 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index 20ff970fc6..25eeb9671a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index b3795a3ef5..a2fdab44e1 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index 965d900bbb..0d90f4563f 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 65aa7f0343..38be216020 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index 2a57475a78..a85824d26e 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index 7846447eb7..f4b4c53530 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 015a9c9aae..765f525e3a 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 87389e8e22..79147ed396 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index 2516c35941..bccc0df919 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index 03c36126e3..e66e09de2e 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index 755376e626..ffa5c7474d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 0852b1bf54..8c4ff0e135 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index 268ba62a65..aa522f9bf1 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index 51b4afc60a..46218916ca 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index 1f08c7bc50..96efd1e41e 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index facfc8056c..dbcc850ccd 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index 6661209790..0653734b26 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index c60ceef721..2c68fe3d54 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 0881d6ab96..2d6094cb4c 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 6bf236e0f9..7a665711e0 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 2db034efeb..0d53194339 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index 109f47e2ed..beb9e63487 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index d2c90a076d..f0ae26fdec 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index 190acad43c..afab315860 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index d5aa229407..c28857b565 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index 5b36de7fbf..cc3433b18e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index 191c3b638a..3f0760ac52 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index 29c8875cea..ae4eb6a72a 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index 62f9aa7c61..d44de8b675 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 8527ebc5e0..5d95725925 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index de2688f502..393ebdc42f 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index 2c310f8cdf..a702679bd3 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 7823e91054..9c187e99e6 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index 72395f4992..c92c574d3c 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index f89dd4482d..a1694ce160 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index e39dc24194..3c45b57b03 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index bc279381b5..087ba0b07a 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index d2bda88545..15223eb5e7 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index 812bb23383..cfe44ff106 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index a0225cdf3c..d2a81b81c0 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 32dcd984dc..595c1a9966 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index 6c6030bfb3..203f6be569 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index 360ce976f6..9ac625d685 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 27d1008e36..1792fcafd2 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index 4c6105e2fc..cfbbb3e9c4 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 78fb176a6e..5f5347c9c2 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index c6d8677655..67461a9d8c 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index 13dfcbabd3..5772fc5a71 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index 1427d8af11..e6977e5443 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index 7dd17ae462..cbf5f70b5a 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 5aaee843ca..0e5a6959e8 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 3d0aa8c716..0ccd36651d 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index 848aaa56f8..c0aae829e5 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 8146bf1668..322d1bcf21 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 946e15b3c7..1b1bb7fe60 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index 6f05dbb9aa..ff9950d542 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 9596c888d5..84da32fd55 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 578b7f4f12..1dc52397a4 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index 0f9fdcdf29..a0c6f2b9a1 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index 09b6be0fb0..5a959cf640 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index d091e8eb3e..9b52a77ee3 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index ff5838849a..a8aaecefdc 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index d7c7a7da08..9dcf32c5f2 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index bc86295891..cd8c3d5e9a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 7c7beb32fa..0efae053b7 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index 627f90a972..b22db49755 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index 5343ff9dba..d7b5010821 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index 10644c60d9..1f6a1c8c55 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 8cc8f02d7b..1d206a3b7d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index 1e212ae713..bc76b30b69 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index 998805303c..c39253d040 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index f07e9a9313..b77ca6d386 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index ad505c9243..8cf6106b62 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 66c5fa28bb..309c742ef0 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index 63721b8a69..519cb6d205 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index 75c1416018..6643111182 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index d1c87bb9b4..ef77e1bd65 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index fbc56b53e0..ab46c7db25 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index 742d00a38c..e6dd968958 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index 842d4baa79..4ff5f02702 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index 503edd35ff..e55e5e9495 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index 6e6d9d17cc..845df53022 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index 52984fb095..1ed64c7b52 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index 9d2e267a30..c8f280ef00 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 896f8af639..920a63bd22 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 27ffdc10ca..3bfc1889cf 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index 103912cd5c..465756d926 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 0dff83cd4b..10726885f6 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 936f9c75c7..2b9ff22a15 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index 24800eb333..6729522329 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index 97c0b3263c..ac05f4a859 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index 74119f1824..ea91d0e747 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 5f7eedb9d7..59c5ec6556 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index d29432fa70..a20ea38fc1 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index 9b8d157d5e..fb9a3747e6 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index a96a6d6c3f..7f52ed666a 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index 4bec6f3a53..461496d938 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index a918a9e517..d399a9ddc0 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 9f61ac52cc..2d8cdd34b2 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index e1428ab8d5..5ee59d8f8d 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index eb69a3af6c..6469d5fba1 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index 33f27cd0da..a49742d3fc 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index b2e08fe899..400d3d25ad 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 5b1991be04..81b6163b52 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index 9c9d57f0f7..94c1c4419d 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index 270869fced..c7f8225bf8 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index ba14bb25fc..31c38aa2eb 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index d06264cb28..9b3c4a3187 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index 589c88ffd8..e21c2d9cec 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index f38c2900c1..e54b55903e 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index c72942f9b1..a324716f29 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index ded1dea38a..a6af14319a 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index 7cb82763e2..0f0cacd9bf 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index a90951179c..e9d99c608d 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index abf3f6ae2b..0ea66c9ef3 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index 5d08831931..b5459490ce 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 2e5f186d3d..5cc95ff206 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index 12768f239e..a656bf8e13 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 4d32ef9a48..8fad6d93ee 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index ce434aba61..9b49097136 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index 0bdb6f9bf1..4aa795e5f3 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 59dc9ea4df..0e666729f9 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index f63011cd56..be5e2a7e27 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index 815c69c8b4..333fe0c706 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index 6bdc89730c..d6f3f60056 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index 4d7bff8c56..d90b2b2a04 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index 4c4d326974..a228f481df 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index 7eb9b2989e..a1be60d0d0 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index 97c00b70ca..a78bd40fea 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 78b15e3173..498a142787 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index fa489ea005..e67efe5ac4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index c4cb559bce..ca4c177dbe 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 2279251ee4..062a9e73e8 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 7df50dba1e..3927460cf0 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index 6252c23a19..b217a395ad 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index 98f1612255..380dd8b8c5 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 97a24a3640..49e4ebc455 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 42cc3edab9..86db81b3e7 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index a810800993..479eebde1c 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index 9b50336562..84da896303 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 244ffb5bb2..28a398c085 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index c0a352add0..a06c882cfa 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index bb04609e98..5c48659507 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index e35937e03d..37d3341676 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index 958fe470a3..8bf4e535e7 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index 2ed2fae3e0..06fe686ef5 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index ee39521367..c227238979 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index cf846204df..9d34cef806 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index 04d8828300..62fefa64b5 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index 2dfb7ca04f..00d88a23a3 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index f1314e9c86..4dc2b48b24 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index df746eb506..b469ab4c26 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index 1cd7aab2a6..130b7b2948 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index 257500c2f6..8b837d1658 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 24839241ba..58f6a27190 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index 71985a2626..1706d2be72 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index 9dd007e614..e948d3bbc8 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index de1061db4d..6257674f48 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index 5a71bd3907..5f386d2122 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index d622a799d8..2c907beb2d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 81f97d6cf5..71b308a408 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index a0bc875d44..37afa42967 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index 78f3195510..c829d0d079 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index 9f13d92c4f..c7c996050c 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 2363a6959c..6960fad501 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 22 +setting_version = 23 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg index c6a3459f5b..c38a8e3c4d 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg index 157f0fd96b..d159ef3b05 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg index 481982f2a5..58e66cebb6 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg index faa8b622d9..3e140ef0f9 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg index fa7787df93..bc05a7a3fb 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg index 0bd3884a2a..25ab4e1a3d 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg index 513f9e5463..ab3e231391 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg index e9843de1b1..5dcdb4806d 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg index f67a0585fe..a3fe0bad61 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg index 9645040b22..8ab320354a 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg index 9abe239b62..0e7a2a0c55 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg index caf5339cad..be687eaae3 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg index eb2615ddd2..335be4aaf8 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg index 636f2d2082..03f442d950 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg index 5c3e44cc57..bae54fd0a4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg index 7b69963f1d..45d2fbb4a4 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg index 1a168c407e..99ede3bb4a 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg index 3d0ea75ea1..2bb7d54289 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg index eba20c612c..0f858c688f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg index 7c16b9590e..ad91d8fa08 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg index 93977a721c..7129c6ed93 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg index 7b32091f5a..f31af997b7 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg index a6c8e4be9f..f96705db92 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg index b2fdcafebb..fd16a17ea0 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg index 32f5d5ff4e..a1520959d7 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg index 35f7bb0f99..3b1b532f46 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg index d20ca864cb..897eeaa440 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg index 29df29a057..bb24ea5426 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg index 85adae2042..e5c3a2f82f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg index ff4079d017..1c0cf0ea19 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg index c4467c7f8d..d592874219 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg index 1bba36d296..dc3d6c66f6 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg index 70f6abcb22..8703ce746e 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg index 41d14cdac8..3ed5fbad9e 100644 --- a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg index 282bffcfea..885c0e1f1f 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg index 0949481154..0b775f9a7a 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg index 83c8e71d6c..8a95360b48 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg index 702204591c..00fe2eea35 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg index b2dca805f0..8afa3b3c11 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg index 2f169f2518..63af2d3ecc 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg index 726f99974b..5d5803b7ef 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg index 8408f97681..d807851a31 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg index c57fa9d382..ffc89f4389 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg index 3393cd1afa..959cd5f697 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg index 8f08657774..2ec0991fdf 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg index 95b8935e7b..223dac0ef8 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg index 0ec9bb591e..aa02d0471c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg index 91f3d3a84a..72b9fd211c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg index 29aaf7e614..68b0ac18da 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg index d280ba1cf6..d846803c71 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg index 207b3163e8..b5941d2cdf 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg index 1ba4de6a04..95ad976385 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg index a4dd03021a..f7e01b9d1f 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg index cc42c9ef48..2435b9c9f4 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg index 76c087ccb9..6e695dd07d 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg index db142e567e..c9f1bedd3c 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg index 0c45d949b8..b8e8471993 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg index 98fa114268..698ae5c327 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg index 15ef5287af..5d7c1e64e0 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg index 5ce8e6b81c..72f1b0afb3 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg index 7eb9b18677..2b1a6836db 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg index 24fc4af465..286bd3af69 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg index b5681cdd88..3f89d1d8cd 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg index 344ea57651..663740a782 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg index 6a55514659..949ce8e1bf 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg index 18a3243485..3fc5b428a3 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg index d3fcb1f82d..8b7ddcb334 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg index 94fd3fd2bc..c663ba030f 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg index f98cced508..f20d1f0faf 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg index 7d00f47c36..0257e3cc51 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg index 2f350f3b61..26b174bfd8 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg index b5c4c463cf..773b7624cb 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg index 2f645e79dc..6e1e26c272 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg index 4944bce967..e0c652f62d 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg index dfd3eb975d..adff9d37bc 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg index 28dccd8ab2..afdd46b8c2 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg index 98a378727a..2d034d9796 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg index 972f9a2973..f4c791a5e4 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg index d788a8af61..f4653302e1 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg index 2f0f04f932..300a60fd84 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg index 1d77ef1972..a3ddc5b6a1 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg index b3c474ce4b..ffefba7323 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg index 596e6bb6cf..f26406f11c 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg index 2cbc4e515d..530ca4e81f 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg index a6ec48458f..2fa4ad5ed4 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg index 80ed31a013..c8f07d26d6 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg index bf9adb95a3..db31efadb2 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg index 2e65982ad3..f2d7cf6f50 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg index 5c3ccc2b7e..8cc077a9d9 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg index d6b86e06d9..44d307e8b8 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg index 3fdb89ec10..7957687ef1 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg index 5b15f3c811..414112a49b 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg index d702b8715e..8240cf57a6 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg index 14f8adc388..c686638790 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg index 9e203f6ee7..c77a6912f8 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg index 2cacc0f92a..9cd86ac164 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg index 7269be8ab3..95962ed7d4 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg index ab2fab7a05..8c86c131c5 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg index 43b6b458c0..f82a374f6d 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg index 5594dda9ef..097d431c16 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg index 17739b73b4..5d9ac91bcc 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg index f9903d7b06..2b9e75ae8b 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg index a40ab396ae..7d4b01c724 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg index 029ef05aa9..2665e85c0b 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg index 3803d78c52..e7d80cd0d9 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg index 6cc56eefdb..06fd7b2fb1 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg index b0f3554036..554c311566 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg index f0f37b095d..f959799678 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg index b5ea731a26..8842f5b91a 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg index a1adffd027..4438ee4a35 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg index fb00ba2763..2f17f7a12d 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg index e3bfc434c9..9c23e0e7b0 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg index dff4884e7c..9519418da0 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 22 +setting_version = 23 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg index fa7f4c4385..6a5bd488c2 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg index 78ba0a7812..8d76e83f6a 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg index e6e2e3efa8..f20f206402 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg index 8ba6ac5449..97148aba4b 100644 --- a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg index 26b763930a..d974febf49 100644 --- a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg index c1ae5ab0d6..81835248ff 100644 --- a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg index 9d13b93d59..7d807d7d08 100644 --- a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg index cfeeddae38..4c8bc6cfa3 100644 --- a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg index bd8cee28bc..90f100d429 100644 --- a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg index 60db4d8da2..42f779cf2c 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg index 1c2d66e5ac..0a161802d1 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg index 29a2e29e49..c370f585a9 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg index 9fdab35990..dec810299c 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg index 3c3ad46dd2..f5d825fb07 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg index 3cf19e9bb5..e7d32af044 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg index 9fcb579495..92d3321776 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg index 6abccb4456..cd66505617 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg index 8173539ea1..80a3505ce0 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg index cebd7bdacb..47f485baab 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg index 83e3b111d5..b9b4633a4e 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg index 907dc2b9cf..00f715e849 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg index bdf527a477..5433fee3f0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg index 5bddc81ee1..935bb04771 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg index c906dc8709..499ca8a49d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg index 631cf77259..cc4726085a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg index b8142f94b7..4b4a59f4c3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg index a9909d525e..3fca0ffe2c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg index 50e65d73a0..8af0c87fa7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg index 37e53fb8ee..d13ecc6139 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg index a61293d3e7..a52b581ae6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg index 41df293410..2f3762e422 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg index c88ec8a8ae..15198eb8bc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg index 6e4fad4732..f8fb28dd1f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg index 611863084e..eee4be2ad9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg index db76f97ead..8fb7cd4f13 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg index 46a410f048..3cbc4d6550 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg index 24f1bd07b5..d47b0d621b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg index 924dd7033b..d4f84c3497 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg index d417854443..9da7c5afa2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg index a8b36663f4..498eda6c6f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg index 59b4791956..88d4dae71d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg index ed173db390..d98c37c97d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg index 19a2740616..3f4371cdc0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg index f6352fc9d3..56dd8c7c10 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg index 9e757a0997..a22c9344b2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg index 1b7365c7fa..3504f38cc6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg index b2190f031c..a7f8b8d5a2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg index a42f2d10a5..96c636c4a8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg index e774b3c18d..b3868b1060 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg index a8accaee83..e5510ab98d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg index 91bd443d36..c8c695a118 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg index 5010b40147..513ed1bbaa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg index 47d62dccfe..a25f5ae6ab 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg index 2a08a6471b..b230eeb8ec 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg index 3c6619eea0..8ca8ed63d7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg index f81efbd6c5..7521a10a83 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg index ee81d48190..75103814be 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg index 830f1d104f..0be067404a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg index b4534aa43d..e9a5d045c5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg index 409d247047..785d08ee2c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg index c5aacd1f12..e8d3699d32 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg index 8c220bab91..7b42c6fbc7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg index 583e2f289d..90596e627b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg index 8dde36c340..34af6eca5b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg index 50d0826d11..316dc4eae9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg index c02af71221..ac02d341b3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg index 3defdf6af2..11fabf6a1e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg index f92080c1d8..a0aba43e09 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg index 5726f496e8..72778821cf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg index af4e729c37..bae5ea6857 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg index a35080a762..be23f5feb5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg index 46108d5ffd..b84c435327 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg index e75c205ef6..a9b6f0b08c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg index 1522f67f29..e12e5f79af 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg index 6c3a0a0518..3d2aa46120 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg index 351c79534e..6cb80412b6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg index 6e888de8f8..37b75b7be1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg index dad45e01b9..9fc8c83ffa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg index 4507853c6d..75469d5848 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg index 5fd038f42b..bbf29ad1d2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg index 602877cc27..afbcfa28fe 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg index 1413c53fcc..3a5f26f739 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg index 53ea9b321e..574f50beb9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg index a71118f84c..abbaa923f4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg index ea7f24ff14..1e99dce591 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg index ca45d7b230..bb53a5837c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg index b91d19e648..49646d89f7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg index 2d74cd443b..5cc87733b6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg index acbb00c60b..59a94add3f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg index 3ff10fc432..6d7c083a55 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg index c682e158e6..3fc2eaab34 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg index 0d26fae8f8..cbdf1352c4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg index fff16d13ec..dfb740c32e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg index 033e186337..f127f9d48a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg index dc11c21700..c095cdb9c8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg index a63d3438b3..1049791434 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg index 8073d88a4b..3789c153c3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg index 93da279149..9bc86cf2cd 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg index dd90f0f653..372d21826e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg index 9e2422757e..fd5b25d0e6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg index ee0a564732..b3ebc040d6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg index 617677c786..8a856b77e9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg index 519328a14a..cb06e79556 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg index 07d8ac8f80..b29f952e49 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg index e27acc9af1..40b97d7bd4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg index b87b07168f..7b2c4a584d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg index ce7792946e..5f9976a518 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg index 152159f5a7..51b90f2496 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg index ddf38e060f..71c535b8a7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg index bd07962ec9..ffbd55c80b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg index 804376c305..22cba0bd81 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg index c921034de3..74d3c6af5b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg index b0f546a488..cf6cc5fd79 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg index 4b37e8b61f..6c863df0d1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg index c43d882515..5b16bb04fa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg index 4f33319caf..6b82c29636 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg index f42ace9ca7..0905caa1aa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg index 2b3590dca8..0ef7cb5899 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg index e233c8910a..69b8330c07 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg index b11c3cca6b..7dc376d99c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg index f650fd251c..4982856b12 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg index cbe818a971..f79b1f49fa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg index ba96247176..af316f211c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg index c36eb39a12..4c217b8003 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg index 0794bce059..8db5563256 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg index fb07cb601a..94c943bc12 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg index aed0f028ba..34e40cde51 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg index fe6e427fd8..ab8b2fba65 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg index 2b03ccf60f..8c30df2bfd 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg index 2e0b53abc2..ef72c98cc8 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg index a7ea903605..4d0ea19afd 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg index 0eebd3efd6..d9d0eeb7bd 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg index 45d8a6375e..27af18c4aa 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra fine -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg index ddfeba0be4..2d751b4be9 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg index a7eeb06d72..9d166c4ca1 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg index 6372e7982e..8b055da1b1 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg index 90995009fc..87ea2bd2df 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg index 92a711f355..f4b70421fd 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg index 5d013c8ae7..962ae53a1a 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg index ebdc1f974e..69a13819c3 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg index df43e307a2..b49e2f34d9 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg index 39fe306e40..a35585cfb1 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg index 5cbada1509..eeff179d11 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg index f2e8aeda46..7b12352a7c 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg index c53ee55e41..89cbbb4fbe 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg index ebb8cf5bdb..14025817de 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg index cd66844ed0..5ff20c78ef 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg index 18a61320f8..7faa4375ae 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg index 595d814733..8f18363093 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg index 99f3b15bd9..ee66705aa2 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg index 5e3200fcec..6f83a22200 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg index 8a939f5e3e..be14abacb1 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg index df0940fd63..f6bb53dabb 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg index b2a0e36037..ae119642c3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg index 9dbb188b2d..cbc5acead1 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg index b74aebf343..a5c2bf5f8b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg index b31a658e4e..0e584bb8bc 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg index baf32c97c8..c2006b0252 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg index b9f88da61c..867ae36869 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg index 295cf6f81b..17dfa7acab 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg index 6c0e844633..26bce43c53 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg index 36f5929574..ce0b7f2448 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg index 3bf30cac0f..8a4b330496 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg index 529085f799..9eee8d2cd5 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg index a4d60e73ca..d82776c5e9 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg index 8f412e9d81..58de7bf052 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg index dce8e99ed3..c51bafa804 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg index 2d983942eb..8835eacb70 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg index 492088f2a2..c3d5d45deb 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg index e4da7beb10..679f33704b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg index 4f6491dfbf..270eb086c3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg index bd4912d5a6..d57f1a22ab 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg index aa198f9e35..45c021ec8e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg index 229e9f0e77..9b60b89354 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg index 9692a06a34..0384c51471 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg index 395fc53a70..74641c118f 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg index 395670e79c..29a162272e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg index 38b0e2e230..942fcf77b2 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg index 7ba3de4e79..51b5d8fd6e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 9e165cd650..0a8cef554f 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 2daccac140..706578940a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg index aab14d8444..74c1601253 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg index ac80cd0fcc..76400c36d6 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg index d98194e70e..78c2a6b784 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg index e4e2f449ea..77b40d3b1d 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg index 851b2f3cef..a3e88b9228 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg index 514d463fdc..7f6e4ef3aa 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 4333f73cea..0196554b9e 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg index 2444d99971..0aa156be81 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg index 36c6b782b9..deb85910bf 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg index 51db981093..83faffbff3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 1f6b852c07..6113f03bbf 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 23ad943a2f..0f78dffbd3 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg index efda1f0adb..e8a71e84e4 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 14f03df4fd..960c9b0482 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg index 666051dd42..1a156620c5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg index 387ca026e3..5d94712c7b 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg index e6e6bf2956..2c0fad134f 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg index fd588fa274..fbb4f8b733 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg index 894afece46..167899a216 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg index bba2d8f06b..7b0fc58417 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg index 7485968470..3f1871d124 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg index 97a6df75a3..d2369fb6df 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg index 12a816c06e..e99a362f11 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg index 257b2c7746..48190a39c8 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg index 3261a8fb27..158a0afe4d 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg index 32df932fb6..809dad450a 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg index de70014369..40be1a66f3 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg index ad1a8f44b9..078db5939d 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg index b78710f8a0..fc620a8ad8 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg index 9f803f3610..0420440d2d 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg index f83b2ebe59..d0510dbbb2 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg index 2b7312c853..3c1dacf0bf 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg index d1902eedc0..6f38cef91d 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg index 0c6cfd7268..754e0c043f 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg index 08db3f2e4e..baf535b6aa 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg index c815247dd4..d1ca554b51 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg index f019192a71..14cc24c2ac 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg index 6c50974030..5862641cf9 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg index e448f131f6..27089f1134 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg index c169a450ad..6a7add5173 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg index dc575ae9b4..3dfd802dba 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg index 6a3233b1ea..af7890163b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg index 95232ae85f..fa3e586ac2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg index 23218c0ac0..ae0696ee27 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg index ad8762e6ad..dc6520596b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg index 7ebf142395..eb2a9cbc5b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg index 0d8d5217d0..945026a4cf 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg index 185021708b..667a5c90d3 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg index 8ff7608693..b074312e87 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg index 6af4cd7483..d6d37c2fc2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg index 9dcc94a284..3bb8528ffb 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg index 88d373084c..e771ca6ff2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg index a74fa56f94..3407585e4c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg index cf0b95050f..0c77e17bb0 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg index 705878fadc..5192822dce 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg index b3020e861e..c98a39242a 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg index 592fab50c9..ae56ea638c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg index b22706ddd1..aef3cf163b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg index e73335fc95..0cd062ec0a 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg index 55d1167d23..343efe3d12 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg index b92706ae7b..74131501ea 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg index cfb3f2ff97..8e193ffcd2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg index 5a53c2a437..6eb370cdcf 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg index 70ebfad1a2..5b4cede195 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg index 3f8ad26804..a79fc05fcd 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg index 151556a2f4..ea6ce880d6 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg index 9237e4f137..1ae2f24a97 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg index 0d28ade067..9743f42e5d 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg index 2b9f6f1218..31f6987cb4 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg index 62666f8400..d4ce99974d 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg index 7daf31408d..85d0e69024 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg index a202067fd0..57fff56e16 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg index c5574e0dfd..79f268fb7d 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg index 7c75c4db5a..5c091c8703 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg index f012edda14..02eefc3a33 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg index b9f314ac65..834c345fb3 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg index e8606611d7..e2678f5e21 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg index b91caf62a4..0843e0b105 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg index a1c197e007..0d7abc9a99 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg index a8345d3ea2..300bc57cb5 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg index 4dfbf5b0a2..5ecafd0fac 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg index da6b3e2bb6..e8a3635933 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg index e39dea3695..4dd6934bca 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg index 28e232b3cc..5bd32e2d49 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg index ca6ac38c98..540a7bc605 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg index d86fec1184..29721774e9 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg index f41645ef5a..8c8107eaa0 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg index 0b62de3512..2e1c873b2a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg index 252e0ee232..e173522f32 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg index f2c540043f..5a588a8a45 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg index 8ebdd98ce2..5423fe1023 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg index 135bb9412d..0512ed8cb6 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg index 8367001312..8c494c4f7a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg index e79478cef5..f9611a31a4 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg index f8292483ad..5c28312b17 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg index dbc56a9ba1..f640948b9d 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg index f1db488d9a..4d981c4d72 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg index d1795c0372..f4843e7b45 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg index 33e2e70d18..e954e29f54 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg index 06ad2ea0fc..27897985dd 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg index d924074ab3..9d0762f876 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg index 8f7d4487d4..2679df5548 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg index c1f6a54560..35d69b02d5 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg index b149a594dd..79add5b99c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg index 526acc21a9..ee06416687 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg index 11c99afd77..bde5f0bedd 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg index e209a4a2fd..d63aa38742 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg index 7233571ca9..3d3aed671c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg index 2d57b58b46..36a96d351a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg index c447696fd2..7f7cf37556 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg index ceba9259a2..4bb90e8a88 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg index f43b8eaca8..4018aec054 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg index b08bdcdfe3..31399b5bf9 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg index c8751ef51e..ff52f3200b 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg index c2768833ea..0421fe3308 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg index 16a49bea43..3ce44a0a64 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg index 6d5d776366..1a36437faa 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg index f0631cd335..144940c8a7 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg index 581d5cc11f..6292722fa6 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg index a3c4616ce2..4718b09f2c 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg index 582f9f2431..4aea2ba978 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg index 280beaffc5..cc4d4001e0 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg index bc55d669bb..c173ee2e9e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg index e785d674d8..b7acd4e087 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg index 72faa03585..7c949cfd45 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg index 503d268491..18c4be3745 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg index d82b7a650b..996379feb9 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg index f6bb8f9d6c..ba9991dcfb 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg index 0dd024cb10..e90ffd5dfc 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg index f74653aaa5..be9b7a6636 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg index 92b3a3b202..3fa9a52cf2 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg index b9cd16449d..3fb1b5e82b 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg index fefdf4b01c..b4124b7ee3 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg index c297a7c5b9..6564a1bfc4 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg index 562745810b..6615eb0ef1 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg index 2f7e354021..8484320f12 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg index a2c8f9026e..b1bb184f24 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg index c3e915b7cf..ac966a5f21 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg index 089bd58712..0c8078074d 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg index 4f29f7b89d..ddf88b56c7 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg index 4c7ce05420..a420b19839 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg index 956491ca05..88a42a943e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg index effe0ae6ce..0c72737a09 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg index d376594bf8..8509d110d2 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg index 9e7c659b9f..84f2d5f220 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg index 9442f440bb..e2604f6cd1 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg index b9f7178137..8163b0f4f0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg index 5ab51306a3..2b3a677da0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg index 24026eda66..2de8dcd257 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg index fc8c33bcaa..b92efb4bb4 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg index c1e5bc2ab6..84f2b863ea 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg index bd11bb9b2f..7d396bdb4b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg index 7522344ea1..239ce61a85 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg index a5b98f0be7..bf1e456e9d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg index 811f816545..c05ce1ef16 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg index b7ca4dad12..c2412a4b10 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg index 8ff536484e..62c827e31f 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg index 7a087f8de7..920960b1f1 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg index c820fb7374..86255b299c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg index f67c83b8a1..f699ade12e 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg index 3d0c91f8d0..c8b2419858 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg index 8129fa14bc..986f61603c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg index 6d8294f321..1a55a0d7dc 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg index 6671af7abb..72c1d0c0a2 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg index 5faad48dee..2e404b0f08 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg index cb7662e85b..bb7c76089c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg index 2f374f711c..9f50854c98 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg index df90cef5e1..5075d97c65 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg index e16fecd809..176a28b188 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg index c301df97ec..c2dd1c4990 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg index 07f2d2e970..b5144668cb 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg index d7d418b886..bb678333dc 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg index b91c31863a..ad54549155 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg index b5f25b6438..fb8cba3041 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg index 25f0d8bf96..1943eef0f4 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg index f29002d365..55a39c03a7 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg index 99d716b04c..9826104ccb 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg index 32603cbb9b..053d09767e 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg index 1a842c234c..c5ada4d590 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg index d5f733f24e..8bb07d0664 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg index 81d50301b5..2a06b48905 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg index 48ee7515a6..ff0cb4a7e0 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg index f10186620c..1a90f61f46 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg index 441f20b96e..9970928d62 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg index 8aed00c108..a6822bb56a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg index a6cce09509..343d413403 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg index 627a583163..0232e0222f 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg index adf3edf197..05d60959ad 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg index 73096761d4..6cddf912ce 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg index 6a59c3f495..9036f08350 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg index 2ab9c6dd3c..72b2ac34b5 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg index 125dbe516e..9c6e1ca45b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg index dceb31ce0b..b2fd3b1fb6 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg index 948a405306..1d6b2ff0d1 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg index b79a41ac4e..a372b5d37a 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg index 13760e7dee..a2cf5f780b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg index e13b324c14..77a9bcf447 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg index 6d9434d0c8..b760682e22 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg index 7f7d839e97..958918c010 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg index 031ba33f7f..40c39e7460 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg index 44fc013460..5f01b400ce 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg index 468c89d14a..7918d01247 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg index 4c17bca4ef..a28c2a05e2 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg index 70688d38bf..6438abd22c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg index d491bac5ea..481574e409 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg index a9131265b9..e0b0d18bb5 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg index 266cdf8bcd..30a5507237 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg index 4ec758bc56..e4ba451bc1 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg index 7dd545c180..65139b3993 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg index e9f9c5548f..b0997befe9 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index 29c4883c8a..25e85a7c50 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index 02835da022..d8bb913ee6 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index adcfdf8083..9616f723f6 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 228205bb66..8fb86d315a 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index 4a1e655226..05bd6ed4e7 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index 2cae8e47a7..4bd1827021 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 2bffc1cdbb..7e7466769e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index be2ffd421a..9e1db971ff 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index 102049778b..282894c439 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index 046e1c87bd..a7e3033804 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index b88d47fa6f..5fbe8655d3 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index 0bd539c4f7..e7ce094065 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index cd9afd7a4b..3fa7f90376 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index 080d63fea0..df6be87726 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index a32f9f1f1d..6c2f48d4aa 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 0635795d95..409463370d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index 3defa66ad5..775fb209f3 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index 1b906624ee..1eb05bd482 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index 12a8ec6ba7..186e4ae790 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index ee41b6498b..baf5abbb09 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index 555fa476b0..ad5f65c5d1 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index c2d9bef558..6b1e439029 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index 11c14792d0..fae81972e9 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index b152a1f905..3d842adac0 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index 70326714ba..bba35f5e6c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index d02d437029..e9aafef0b3 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 1c8ac21745..9e8ac0fe07 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index e0f9017630..e7aa39026e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index 2d789cb1a8..4a119a3b78 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index e6ae6f2012..8c7652f358 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index aa79fa3cd1..9a2b2bbb45 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index f1c171d147..3cea25782b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index 1183f56258..fb28d98eb8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index cd8227a794..23178b5adf 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index b936a23ec2..59622fc319 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index 4f4fd90dea..d59245ae3b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index ab4c21d9eb..a97a6833bc 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index 51fbac0be0..b9e10a6bf0 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index f02f6d1a3d..9e29238068 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index 575dd45b33..e8ef2edd8f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 42ca6e9656..1b10439afc 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index 7cc7a48912..67b6a26a72 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index a6b5631adb..f6405d5cec 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 645c565be0..228ddddc13 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 77df9c65ce..725e885a1e 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 1589129fec..42a8cf6770 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 019344886e..3a8189a242 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index fc53c3f830..96f8ac2ba8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index 208d90d980..1c52225879 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index be84b22ab3..42d6059b2b 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index 676f4d3a5a..0f300418d4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 8b43a0dfc8..0841a4e683 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index c6e8abbac8..d6293b8dd6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 9ad587cb8b..3cae06a912 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 2416a15f1a..85515279fa 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index bf8f1edcfb..dc76ed4260 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index c53303a943..2f93ba6669 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index 97f46add80..d566aa424a 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index e955f348c3..5799506d1e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index 6636cc5df4..0c29bd477b 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index 80a411f4ee..bb4cb5e531 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index 268a3b5fde..4f7b41945e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index 5fc2fefe60..abaa1eedb6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index 1b025eff1b..992234ba25 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 3a1099913d..73e2a07a8f 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index ce35c74a9e..c00e9ecb00 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index b41a1c2d77..101fe44c82 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index 967ca447d2..6b084130db 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index fd6749a78a..948eefca17 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 1f93f38971..40dde2cf31 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index f0f4746157..4090f8f855 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 2512eda337..5d6045a8e8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index f129210b39..7ecdefdfe1 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index 0d28659b59..149e4d4109 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index 93bd938038..da20e0651c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index a4986efd93..79a5566f67 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index 56150eb593..2726c46ff6 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index dcd11674bb..ab747e927c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index a287a857eb..c85a32723d 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index c2e5f1111a..dd474c0aac 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index cbd29ceefd..83cd051b09 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index 65329a712d..ab9d4ebe1c 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index fe790d3b0b..9ad7853cdc 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 2fa55f2947..724a51b8d8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 1487ce9dc1..3c4d788df8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index 466720c749..5644483fde 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 1258357326..57d99f35de 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index 92280179de..e75f3c35b0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 1e4765a869..368647795b 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index 8035afca89..dd82a4775b 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index 8d90e28f21..d7d4fbe412 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index ff1d103b51..91033d2bf5 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index 7039988817..f01da6ca32 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 44df8539bd..4eb395fb9a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index 4b1036b238..6f88469db6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index 092f9664c6..ba7ecfa53c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index 18aec55b97..f6aa3822ca 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index ff75c4473e..195a34ba43 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index ebd407c71a..2c438ce53c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index de44e9432a..d343990b9d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 104ad9bb79..5b49c34064 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index 6a65a21a3d..e4f58831b6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index b1e6920048..3122c05e65 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index 72aef2b2de..fc174af370 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index 61a004c456..33df915b4c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 7d81acca8a..048565919e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index 56c1623625..d08823a809 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index 27d7f6a72d..afaf24bd2a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index 1a4390c9b0..cb71636a84 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index d168ee1021..14c9525787 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index d98250ffef..38c899216f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index b84b2247ea..caddf1980a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index e0183f4ac6..610a8011d8 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index da91e51add..ea4244d490 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index 32c0092593..b2adf228fb 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index e1a05305d5..ee133982c2 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index cb2868ecb4..0ac2b0afd1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 7ec72a8a80..7513244497 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index 646656843d..ac57d8b074 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index 4d236b723b..5f718f55f1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index a75d5f6653..8ac9a8b343 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 61aa9b3f0a..5f5b9fd44e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index c3e5963988..6036838282 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 4d58f8de3c..9e7ca6b7fe 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index a80320fe86..7f1d758472 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index 8bc55ffebc..78b351455e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 47460c884e..2dcc08eaaf 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index a940ece953..c5c89b9df0 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index 09bfdb8cdc..556df5c158 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 12238edb52..98284b527a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index 8f8054ea99..d3304afba1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index 3c4151c237..aec24595d4 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index f7d1cb13d0..e8ab9c5148 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index e4c48cbd47..4e99df0786 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index e0aa85b29c..88000bd7fb 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index 830845db85..b30b616a7c 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index d166b3683d..1d2bb10612 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index db41444bed..e3c4c6ed7b 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index bfe990a261..20bdc01950 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_005 -setting_version = 22 +setting_version = 23 type = quality weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index 1d472b6a7c..b3a6325f86 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_010 -setting_version = 22 +setting_version = 23 type = quality weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index 1e4f18a996..d5c16701a2 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_015 -setting_version = 22 +setting_version = 23 type = quality weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index b576e28178..bf855f6fe7 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_020 -setting_version = 22 +setting_version = 23 type = quality weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index a7069d1409..8cd4816530 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_025 -setting_version = 22 +setting_version = 23 type = quality weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index c575a0e4d2..9121f83414 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_030 -setting_version = 22 +setting_version = 23 type = quality weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index 1b0e10edcd..c3e37d97d9 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_035 -setting_version = 22 +setting_version = 23 type = quality weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index 1587fe0f25..bbb88a8e86 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_040 -setting_version = 22 +setting_version = 23 type = quality weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg index 26c80e6a84..8532b1d9cb 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg index df7928149f..5358ee99ac 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg index afa1010fa0..2356a128b0 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg index 6a09f183c3..b18d8a6729 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg index 35531d33bc..920c92633d 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg index ed44af21e2..e893ca4af1 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg index a0e76d45cd..3b3ed24376 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg index a97fec7061..347e3ccd74 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 22 +setting_version = 23 type = quality weight = 1 diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg index ed4a905783..9af81dc520 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 22 +setting_version = 23 type = quality weight = 0 diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index c3451d2c98..652f33b4a4 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -124,10 +124,11 @@ adhesion_extruder_nr skirt_line_count brim_width brim_line_count -brim_outside_only +brim_location [dual] prime_tower_enable +prime_tower_mode prime_tower_position_x prime_tower_position_y prime_tower_brim_enable @@ -136,6 +137,7 @@ prime_tower_brim_enable [blackmagic] print_sequence +user_defined_print_order_enabled magic_mesh_surface_mode magic_spiralize smooth_spiralized_contours diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index d2e5319c87..dee3188dd5 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -265,6 +265,8 @@ support_type support_angle support_pattern support_wall_count +support_z_seam_away_from_model +support_z_seam_min_distance zig_zaggify_support support_connect_zigzags support_infill_rate @@ -293,7 +295,6 @@ support_bottom_wall_count support_interface_height support_roof_height support_bottom_height -support_interface_skip_height support_interface_density support_roof_density support_bottom_density @@ -328,15 +329,20 @@ skirt_brim_minimal_length brim_width brim_gap brim_line_count -brim_outside_only +brim_location brim_smart_ordering raft_margin raft_smoothing +raft_remove_inside_corners +raft_base_smoothing +raft_interface_smoothing +raft_surface_smoothing raft_airgap raft_surface_layers raft_surface_thickness raft_surface_line_width raft_surface_line_spacing +raft_surface_monotonic raft_interface_layers raft_interface_thickness raft_interface_line_width @@ -344,6 +350,7 @@ raft_interface_line_spacing raft_base_thickness raft_base_line_width raft_base_line_spacing +raft_wall_count raft_speed raft_acceleration raft_jerk @@ -352,6 +359,7 @@ raft_is_shrink_plate [dual] prime_tower_enable +prime_tower_mode prime_tower_size prime_tower_min_volume prime_tower_position_x @@ -360,7 +368,9 @@ prime_tower_wipe_enabled prime_tower_brim_enable prime_tower_base_size prime_tower_base_height -prime_tower_base_curvature +prime_tower_base_curve_magnitude +prime_tower_raft_base_line_spacing +prime_tower_max_bridging_distance ooze_shield_enabled ooze_shield_angle ooze_shield_dist @@ -385,6 +395,7 @@ meshfix_fluid_motion_angle [blackmagic] print_sequence +user_defined_print_order_enabled infill_mesh infill_mesh_order cutting_mesh diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index a4c59c2749..1883303896 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,131 @@ +[5.7.1] + +* Introducing the UltiMaker Factor 4 +- Included support for the new UltiMaker Factor 4, the new 0.6 UltiMaker HT print core, and the new Ultimaker PPS CF material. +For an overview of the new features in the UltiMaker Factor 4, please watch our video. + +* Bug fixes: +- Fixed a bug where support lines were printed multiple times + +* Printer definitions, profiles and materials: +- Updated ASA, SR30, and Nylon12-CF profiles for MethodX and Method XL Printers + +[5.7] + +* New features and improvements: +- Introduced a way that you can open models from Thingiverse from your browser +- Introduced Universal Cura Project files. They contain models and settings and can be shared with people who have different printers. +- Introduced settings that define the raft offset for top, middle and bottom raft layers +- Introduced an analyzing tool in the cura engine to better track slicing crashes, and started fixing the biggest reports coming in. +- New Primetower option; Sparse, next to the current Bucket, contributed by @wawanbreton +- Brim only on the inside setting +- Allowing to define print sequence manually when printing One at a time, contributed by @alexandr-vladimirov +- Introduced a setting to apply Monotonic ordering to the Raft Top Surface +- Introduced a Raft Wall Line Count for the Bottom, Middle and Top of the raft +- The play speed of the nozzle in the preview is now closer to the movement of the printhead +- Introduced an option to choose Drop Model to Buildplate every time a project file is loaded +- Introduced DisplayInfoOnLCD Post Processing Script which combines DisplayFilenameAndLayerOnLCD with DisplayProgress, contributed by @GregValiant +- Introduced alternative camera navigation similar to FreeCAD Trackpad, contributed by @quarnster + +* MethodX specific improvements +- Enabled Print over Cloud for UltiMaker MethodX and Method XL printers +- Introduced ASA, SR30, and Nylon12-CF profiles for MethodX and Method XL Printers +- Improved the predicted printing time so it's closer to the actual printing time on the MethodX and MethodXL +- Improved the idle nozzle temperature for dual extrusion printing on MethodX and MethodXL +- Resolved a crash for the Method printer when navigating to the Monitor tab +- Improved the way that the fanspeeds were listed and controlled for MethodX and MethodXL printers +- Updated Raft settings for UltiMaker MethodX and MethodXL +- Enabled Monotonic Raft Surface to improve adhesion +- Increased the Minimum Retract Distance to improve infill pattern wall overlaps + +* Bug fixes: +- Fixed significantly slower slicing for models with a lot of holes +- Fixed a significant amount of crashes that are caused by self intersecting polygons +- Fixed a bug where Align to Buildplate did not work for grouped meshes, resolves https://github.com/Ultimaker/Cura/issues/14237 +- Fixed a bug where the models in a 3mf file would not load in their saved position, note that this also changes the behavior of the "import models" feature of a 3mf file, for this feature the saved model location will be ignored +- Reduced the amount of floating support in area's near the support overhang angle threshold +- Fixed a bug with the Initial Extruder Number in the start gcode, resolves https://github.com/Ultimaker/Cura/issues/17501 +- Fixed a bug where Z could be negative if Remove Empty Layers was enabled, resolves https://github.com/Ultimaker/Cura/issues/15975 +- Fixed tree support-related crashes if there are no overhangs, contributed by @thomasrahm +- Pressing the Esc key now doesn't exiting full screen mode, contributed by @Sophist-UK, resolves https://github.com/Ultimaker/Cura/issues/7499 +- Improved the OAuth protocol to improve signing in with plug-ins, contributed by @wawanbreton +- Fixed some slicing crashes with tree support, contributed by @ThomasRahm +- Fixed available height when adding modifier mesh in One at a Time printing, contributed by @fieldofView resolves https://github.com/Ultimaker/Cura/issues/16566 +- Improved behavior for loading 3mfs by giving the models original names, contributed by @pietchaki, resolves https://github.com/Ultimaker/Cura/issues/12089 +- Added an error so LimitXYAccelJerk doesn't run unless Accel Control is enabled in Cura, contributed by @Gregvaliant +- Some helpful code cleanup contributed by @dmitrygribenchuk + +* Bugs resolved since the Beta Release +- Resolved some crashes when opening project files +- Resolved the biggest crashes coming in via the analyzing tool in the cura engine +- Added links to support pages for Method materials to help find the best material compatibility +- Introduced several visual improvements for the loading Universal Cura Projects window +- Universal Cura Projects will now be opened in the center of the buildplate +- The prime tower no longer primes extruders that are not being used +- Fixed file association for stl, obj, 3mf, gcode, and ufp for MacOS +- MacOS users can use the open menu multiple times in a row again +- The support type is now updated in recommended when it’s changed in custom +- The skirt height is now generated on the innermost skirt instead of the outermost skirt again +- Fixed the skirt distance for dual extrusion printers +- The Brim Only Inside setting will not generate a brim on support when it’s not defined +- Fixed a bug where the project name would accidentally revert after saving, resolves https://github.com/Ultimaker/Cura/issues/11276 +- Improved handling of a fractional layer with tree support, contributed by @ThomasRahm + +* Printer definitions, profiles and materials: +- Introduced high-speed profiles for the layer heights smaller than 0.15mm for Ultimaker PLA, T-PLA, ABS and PETG. +- Updated Initial Layer Speed settings for UltiMaker S3, and UltiMaker S5 +- Updated the Shrinkage Factor for PET CF to improve dimensional accuracy +- Renamed UltiMaker PP Transparent to UltiMaker PP Natural +- Increased part strengths of high speed modes by compensating for slip in high flow rates +- Improved self-support settings for UltiMaker Materials +- Improved adhesion settings for UltiMaker ABS +- Introduced Elegoo Neptune 4 Plus and Max, and updated Elegoo Neptune 4 and Pro, contributed by @mastercaution, @BremerButjer, @gsthnz, @ArthurREGNARD, @NovaScotianNorse, @ToaterUwU, @CharlKlein, @si0ls, @AlbeDarned @fuji97 and @Ev1dentFir3 +- Introduced Anycubic Kobra 2 Printer Definition contributed by @ThatGuyZim +- Introduced Flying Bear Ghost 6, contributed by @Barrnet +- Introduced Creality Ender 3 V2 Neo, contributed by @Hougaard22 +- Introduced Dagoma Sigma Pro 500z, and Dagoma Sigma Pro 500z Dual, contributed by @0r31 +- Introduced RRatRig V-Core 3, 200mm, 300mm, 400mm, 500mm and RatRig V-Minion, contributed by @Nu-hin +- Introduced Flashforge Adventurer 3 (AD3 / AD3C / AD3 Lite / AD3 Pro) & Adventurer AD4, and AD4 Lite , contributed by @jeremie-C +- Updated the dimensions for Ender 3 V3 S, contributed by @mcuprojects +- Updated start Gcode for creality_ender3v3se & Anycubic Kobra Go/Kobra 2, contributed by @zanghao912 +- Updated print and retraction settings for Sovol 3D printers, contributed by @asterchades +- Updated Creality Ender 5 Plus Bed Leveling Command, contributed by @dsnsgithub +- Updated Voron definition to support Voron/Klipper, contributed by @NerdyGriffin + +[5.6] + +* New features and improvements: +- Introduced the MethodX and MethodXL printers with their materials and the option to write to .makerbot +- Prime tower base settings increase the stability of large prime towers; You can tune the Size, Height, and Slope to increase your prime tower's sturdiness +- Introduced the setting for Raft Line Spacing, but for the prime tower +- The Start and End gcodes now accept variables, and math including those variables +- Updated the Support Z Distance to allow for more different values, no longer only multiple layerheights + +* Bug fixes: +- Fixed a crash for some linux users when trying to open the file menu + +* Bugs resolved since the Beta Release +- Introduced Balanced and Solid profiles for 1C cores to UltiMaker Method X and Method XL +- Improved self-support for UltiMaker MethodX and MethodXL printers so the support extruder will not be used +- The prime tower is now always enabled when the second extruder is used for the MethodX and MethodXL printers +- Updated the default prime tower position so it doesn't prevent slicing for some printers +- Fixed an issue where raft layers were partially printed +- Slice information template variables were not available through start-end code formulas +- Resolved an issue with 100% support roof for tree support, contributed by @ThomasRahm + +* Printer definitions, profiles and materials: +- Updated bridge flows for UltiMaker PLA, TPLA and ABS to address pillowing in AA 0.8 for UltiMaker printers +- Introduced Ender 3 V3 SE, contributed by @dim1triy + +* Community translations: +- Updated Spanish translation for Lightning infill, contributed by @Pelochus +- Updated German translation for Laying object flat on buildplate, contributed by @gluetolf +- Updated Brazilian translations, contributed by @Patola + +* Known Issues +- The predicted printing time for dual extrusion printjobs on the Method X and Method XL are deviating from the actual printing time +- It’s not possible yet, to use Method series printers with Digital Factory. We hope to resolve this for the next release. + [5.5] * Engine Plugins diff --git a/resources/themes/cura-dark/theme.json b/resources/themes/cura-dark/theme.json index 64c3e002a9..699b4537c3 100644 --- a/resources/themes/cura-dark/theme.json +++ b/resources/themes/cura-dark/theme.json @@ -179,6 +179,8 @@ "material_compatibility_warning": [255, 255, 255, 255], + "core_compatibility_warning": [255, 255, 255, 255], + "quality_slider_available": [255, 255, 255, 255], "monitor_printer_family_tag": [86, 86, 106, 255], diff --git a/resources/themes/cura-light/icons/default/CuraShareIcon.svg b/resources/themes/cura-light/icons/default/CuraShareIcon.svg new file mode 100644 index 0000000000..fb9a6b922c --- /dev/null +++ b/resources/themes/cura-light/icons/default/CuraShareIcon.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/themes/cura-light/images/enterprise.png b/resources/themes/cura-light/images/enterprise.png new file mode 100644 index 0000000000..6d92d80adb Binary files /dev/null and b/resources/themes/cura-light/images/enterprise.png differ diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 8f3f9076c5..2d537d8ee8 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -110,6 +110,12 @@ "italic": true, "family": "Noto Sans" }, + "medium_italic": { + "size": 1.16, + "weight": 400, + "italic": true, + "family": "Noto Sans" + }, "default_italic_ja_JP": { "size": 1.0, "weight": 400, @@ -349,6 +355,7 @@ "setting_validation_ok": "background_2", "material_compatibility_warning": [243, 166, 59, 255], + "core_compatibility_warning": [243, 166, 59, 255], "progressbar_background": [245, 245, 245, 255], "progressbar_control": [50, 130, 255, 255], diff --git a/resources/variants/arjun/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg index 577c9cea82..93a9cda252 100644 --- a/resources/variants/arjun/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg index 23e5d5d3b9..6680413525 100644 --- a/resources/variants/arjun/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg index 4b966b4b15..f0e78bd67b 100644 --- a/resources/variants/arjun/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg index 279755a8e2..f5287a2848 100644 --- a/resources/variants/arjun/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg index 79ccd38286..acfb70d426 100644 --- a/resources/variants/arjun/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg index c0be27c671..081b1fe613 100644 --- a/resources/variants/arjun/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg index 441881b7b2..c09ec180e8 100644 --- a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg index 38737edbd7..bf777b0e82 100644 --- a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg index ef5cf7b7f5..0c83b6b21c 100644 --- a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg index 6e6f03f923..a5fa970308 100644 --- a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg index 0fe27b5fcd..23019db4c2 100644 --- a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 5700539ff4..0a44cd4a89 100644 --- a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg index bbdf6bc7f3..ab3c18911b 100644 --- a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 3d2e71f3ef..29999d094a 100644 --- a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg index 155231c20f..bc6a26bbae 100644 --- a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg index 1ae108dd58..2cb3776d91 100644 --- a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg index 5716d2037f..64193bc333 100644 --- a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg index 7274d191a7..a00eb4737d 100644 --- a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index 26440e5486..af032b8d32 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index 5edaddba92..94679d0310 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index a5ca8ffb7a..c4e63bff05 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 2145714b0d..9647cc0ddf 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 40e0c5f3ba..6b8ff4aee4 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index ee6e5557fb..75df806b08 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg index f5d1506610..810c6887b1 100644 --- a/resources/variants/arjun/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg index ad2c0ad0c7..36a3c1bab6 100644 --- a/resources/variants/arjun/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg index ace0f0bb40..75a58cd978 100644 --- a/resources/variants/arjun/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg index 085a1d5ea2..19c08457c5 100644 --- a/resources/variants/arjun/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg index 2976b3a7b0..8d4d1d914a 100644 --- a/resources/variants/arjun/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg index bee58c2f5f..52f028cba0 100644 --- a/resources/variants/arjun/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 091ad83670..4373356eea 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index b6f9eb6522..8f78856b63 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index c60c55ad05..00467ec737 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index 0ad2553b8e..c4860fbcc9 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 581f430e03..45c2c5392c 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index 7bbe603969..c396dd139c 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index 45a05c0eea..cc3d0e8c52 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index 4475cdcded..9ece24fc84 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index 02c50dfac7..2489d0d4fc 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index 07443b9d26..c8864fbb17 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index b0ed67209c..bf2019c7a2 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 64733eeff1..13ed3b65e7 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index 60d7f77d7b..cc0c010ce2 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index f4c0c7e37a..9204d755cc 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index 25f40aa829..2b36ddec9c 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index cbb9ea3deb..167eaaf99d 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index d9459b476a..4cf68ad45a 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index cf5df5f37d..cb05da3c8a 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/artillery/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg index f2ff1eecce..4e78b919d9 100644 --- a/resources/variants/artillery/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg index 1c2e7e39b1..3b1fdb4c30 100644 --- a/resources/variants/artillery/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg index ced36c984c..d64f66e110 100644 --- a/resources/variants/artillery/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg index 8a5d140461..89753a6342 100644 --- a/resources/variants/artillery/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg index f2b8936aa6..0c217a6d95 100644 --- a/resources/variants/artillery/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg index 8aef4b3919..d484d54347 100644 --- a/resources/variants/artillery/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg index 81f21a9803..97e014d9df 100644 --- a/resources/variants/artillery/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg index aeee90957a..d2debe768f 100644 --- a/resources/variants/artillery/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg index 9ae2dcd26c..ad3ec300ad 100644 --- a/resources/variants/artillery/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg index 1ceec2ae13..048d51b35b 100644 --- a/resources/variants/artillery/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg index ca4f68f56d..8206e862e9 100644 --- a/resources/variants/artillery/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg index a25fe2ead9..d5b9ba26fe 100644 --- a/resources/variants/artillery/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg index 9fe74fa826..5bd5ee157c 100644 --- a/resources/variants/artillery/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg index 6d28800ee5..b489bb232f 100644 --- a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg index c57bd0ff2c..1b2d03d446 100644 --- a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg index b9dc76e966..15601bce9f 100644 --- a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg index 51ce6bc2bd..625732f8be 100644 --- a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg index 690360bf15..ee5b4d5b73 100644 --- a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg index 14de186199..ad3c82bc2b 100644 --- a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg index 4ca3b07d68..c3b43f462a 100644 --- a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index 1c1d017ca4..b7cedae983 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index a6ac9c3a72..0b0b9c52d4 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index 3dbeb3e612..ca7d41cc6a 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index e0baaf8ff8..344852dbe6 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 1191969b3f..2796719d49 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index 9983a82721..f18dc59570 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index bff7834759..f5ded16281 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index 9a2eb1303a..efc2f44195 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 43ffb12626..2d98543eb4 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index ecdd2feef8..8804919288 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index e3df8ef738..4c4e32aea8 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 359c455dd5..0c40d52a3f 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index 3ff08a0486..a5f670c7d9 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index d0265cec28..3f8339500a 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 828e64805b..667962e5de 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index 775ccd5373..69bb3f9c70 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index 25f75703ae..f8cb3c1f84 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index e3df372858..1d319e7f03 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index a757ec6ad1..c70d0c1ecb 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 3c8dedb3a3..38174decad 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 7a2891e9ce..6725cedd8a 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index b4e33629dd..4ea72f75db 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index d71af8d02a..b28e7ddfc0 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index e1e1012e7f..27678a3b2e 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 80706e803d..901d036966 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 533e8e0ed8..386d623a52 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index 86ff65c533..06c58bb883 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index 3f8f603c37..dfeba978de 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index 461ff2a018..dfac869cec 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 186e18b881..8aae3a6eb6 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 3261fd1b4e..6558650b25 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 2b60dace64..4a1f710176 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 482efd61b5..2c6c67e10f 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 11fc3b222e..37107ab53b 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 0cd4aa92ea..25865d3408 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index 33c16b9e3b..c6fcc777e2 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 13bd63686d..2b9a166b81 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index 869e0d3cc2..a889384895 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index e7a5571602..9ffd271caa 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index c52d2bd3ab..8b1fcf08d1 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index 1d46ba5767..e2dee19e6c 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 3702ab8599..1c80d91604 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index e121b2d94e..b8a92d06f3 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index 168d4ee001..ae11da958a 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg index bd07a70198..33cc8cddf0 100755 --- a/resources/variants/biqu/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg index 1a657b5874..5eda2edd83 100755 --- a/resources/variants/biqu/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg index 34544d9d2b..20e5e4e90a 100755 --- a/resources/variants/biqu/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg index e20297039a..6fa7a4543b 100755 --- a/resources/variants/biqu/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg index 620b5c385d..fbeeb8ba59 100755 --- a/resources/variants/biqu/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg index 2ba4ad8235..39b4ffdc2b 100755 --- a/resources/variants/biqu/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index dd3838dcb3..f5fd67b87d 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index 665915ca7b..d6cfb2a776 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index c9d4b008d4..6cde06bf35 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 6669153af0..8fcb3f9788 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index ec42aefc61..40bf791ec5 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 670956305c..514a379232 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg index 13643d69ec..b42d0c87f3 100755 --- a/resources/variants/biqu/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg index 3d92db130a..f486854eeb 100755 --- a/resources/variants/biqu/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg index 57494b698b..4236b86178 100755 --- a/resources/variants/biqu/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg index cc8c9768a0..37f5505bde 100755 --- a/resources/variants/biqu/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg index 36de865412..9793718e5d 100755 --- a/resources/variants/biqu/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg index 45f79ec846..f720f7fd9c 100755 --- a/resources/variants/biqu/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index e1477d6752..5498de417a 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index e811da5750..86be976e20 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 5fe4548441..8c04da610d 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index f55767ede3..f886e6b106 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index f19b140683..74e59e38c8 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 7acc8686fb..70d8d131b4 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg index 86bb2dd670..cb199db026 100755 --- a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg index 4eb7a8011a..d3ceab8f55 100755 --- a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg index 807cb5ddd6..a4ef00cc0e 100755 --- a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg index daceb747d7..045a3f99cc 100755 --- a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg index 544623031b..a69f4fa816 100755 --- a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg index 8ec6520673..8bad103e9d 100755 --- a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg index 167ef6d559..c4fe2e68f2 100644 --- a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg index eb0d901496..5351019fc3 100644 --- a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg index ec2f987458..2b7a2edf75 100644 --- a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg index ae89e82761..8a186ad31a 100644 --- a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg index 0426baadd7..9ee17968fc 100644 --- a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg index cc602bfdc8..d2847e5410 100644 --- a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg index fe8cb9c865..f85d14be4f 100644 --- a/resources/variants/blocks/blocks_one_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg index 65b86a5d55..da4aecc1ff 100644 --- a/resources/variants/blocks/blocks_one_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg index 1c6e33046c..fc00de5356 100644 --- a/resources/variants/blocks/blocks_one_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg index 6163a0a0d5..af4d3206f1 100644 --- a/resources/variants/blocks/blocks_one_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg index 82b6799ae9..ef2c7d5e8d 100644 --- a/resources/variants/blocks/blocks_one_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg index abca2ad27c..933a875b53 100644 --- a/resources/variants/blocks/blocks_one_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg index 1855a2ed5e..b927508991 100644 --- a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg index b731e20f89..8c68a6ced7 100644 --- a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg index c3a6ac9bbb..e3994bfe5e 100644 --- a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg index a08712376b..df4c5e7047 100644 --- a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg index 3f968bf520..ea3718470a 100644 --- a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg index cba7d886f5..88cb2d46b2 100644 --- a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg index d568665760..f5b36fcb86 100644 --- a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg index f023173e28..72a17f4c66 100644 --- a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg index 7479ff06a4..e8b9735ebb 100644 --- a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg index 4ffb9f2a13..c7eda94955 100644 --- a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg index eca0070ed3..6a8101f419 100644 --- a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg index 4b1eda711a..b63d6d4930 100644 --- a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg index 6d26776aad..f01cdae873 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg index e3c44dfd88..953c109864 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg index 67a08f1eca..f37090cc34 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg index 0bf24b9a8b..884d6985e8 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg index 6730ce6147..503e7dbc37 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg index 29d404547e..92520d7412 100644 --- a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg index 10aa052741..c3ef274234 100644 --- a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg index 6e596d6f55..0a70809ed4 100644 --- a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg index 90eb8127dd..72280956ca 100644 --- a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg index 58f45943b9..b0a2437841 100644 --- a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg index 4b63981c60..0f4f86afc6 100644 --- a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg index ed49040e45..65c00081e6 100644 --- a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg index a1ca742b05..f7550f5709 100644 --- a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg index e6255aaf4b..ac3cfb8a77 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg index 0af109a035..930ef1c956 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg index d34ed63474..ee7c7af568 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg index 531bbc5159..cd4a03a63f 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg index df29382e6b..ed2b2c05e8 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg index c340c7f8dc..3c6659b877 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg index 577c37ac1b..b6479ccf55 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg index 174794aa8b..fedb0eb3cb 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg index d51641b656..4706b13264 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg index bfb6e03bd6..f3438683c3 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg index ee98152381..e3392fef46 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg index 2f017c559b..f0267d0801 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg index ca99d82177..f59324621b 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg index aebe3c094e..91c2314f6c 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg index d834ee11e7..4615f9296d 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg index 1903f4b568..0b9a42a44f 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg index 27986f2d81..ec94cf4700 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg index 29f328c9c1..f2ea9ceac0 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg index 333f640286..6cd7003c11 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg index 3c21f6eb33..b47b774176 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg index d1600007ea..23bfc0aedd 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg index 7ce36f41c2..9734deca27 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg index 4d345c42b9..556ca65c96 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg index 34ebf3f7c0..7a4ce91202 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg index ce6e8f932c..d0f4b458fe 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg index 373e6e8ad2..1b7173778e 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg index cef05a9ea8..bc964011f8 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg index c6d548b993..07e845e9d6 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg index ff2ef479fa..725cb8c639 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg index 562ed73e92..0d0f9628f7 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg index 277a0dcb9e..00e1b1c48c 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg index d813be4123..a61baae115 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg index 505a0b7813..2e13045b90 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg index 1184a97360..85e6363e90 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg index 51b8dd0926..cf56050d82 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg index 24ab1bc207..d3e8d29a65 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg index e3a6b373db..5a13d8d69f 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg index da5bb72adb..eb1272e9f3 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg index ca99d82177..f59324621b 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg index d37c55e927..426cb0ef77 100644 --- a/resources/variants/blocks/blocks_zero_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg index 9d669d5c71..150e957f36 100644 --- a/resources/variants/blocks/blocks_zero_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg index c8ed122a98..f58f3c4b46 100644 --- a/resources/variants/blocks/blocks_zero_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg index fa96761466..5114247fe1 100644 --- a/resources/variants/blocks/blocks_zero_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg index e6560787db..26bedb1448 100644 --- a/resources/variants/blocks/blocks_zero_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg index 4d4f0d2cea..525ab6dca8 100644 --- a/resources/variants/blocks/blocks_zero_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg index bfd0306f16..acff9bda4d 100644 --- a/resources/variants/cartesio/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg index 3e8936d09b..10b56a610e 100644 --- a/resources/variants/cartesio/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg index 6e87eb69b4..3e4662c89c 100644 --- a/resources/variants/cartesio/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index 730ec5b5f7..eb4548b7b5 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index 8855dd7021..3b2312d0b4 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg index d163876973..8e7c299409 100644 --- a/resources/variants/creality/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg index c21f6d9c94..d2422e5d80 100644 --- a/resources/variants/creality/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg index 7b450e3de0..652c9b3f65 100644 --- a/resources/variants/creality/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg index d78687ce4b..59c011bf86 100644 --- a/resources/variants/creality/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg index 6022e0bf1b..2c2c36bf6a 100644 --- a/resources/variants/creality/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg index ff41e7e562..88c2f2427c 100644 --- a/resources/variants/creality/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg index 1a18b2fcb7..5954b7fcd0 100644 --- a/resources/variants/creality/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg index a0b2f5caa4..5d28b0baa9 100644 --- a/resources/variants/creality/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg index afeb46fa7e..3b2924a758 100644 --- a/resources/variants/creality/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg index 5babe4a2d0..0cc70a0ec7 100644 --- a/resources/variants/creality/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg index 6267bb8215..19b8b2abb7 100644 --- a/resources/variants/creality/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg index 939e73dbcd..78805b4af7 100644 --- a/resources/variants/creality/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg index 1f87327645..3059d671e5 100644 --- a/resources/variants/creality/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg index 9cf84420b8..48c85895be 100644 --- a/resources/variants/creality/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg index 285cb7837c..d58fca26f2 100644 --- a/resources/variants/creality/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg index 412c2d3016..1fcb49f147 100644 --- a/resources/variants/creality/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg index 5ee839276e..ec92685f22 100644 --- a/resources/variants/creality/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg index 04b56b2592..4aab97419c 100644 --- a/resources/variants/creality/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg index b398c33ecf..b7b503a1d5 100644 --- a/resources/variants/creality/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg index 8708331abf..0caad2868d 100644 --- a/resources/variants/creality/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg index 526c12726e..8b379f0c6e 100644 --- a/resources/variants/creality/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg index d7ba5c8ecc..dc9507c40d 100644 --- a/resources/variants/creality/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg index a83558e759..8d17b56802 100644 --- a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 64b46bd4e9..5a97059d3f 100644 --- a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg index 52b976b78c..eca0fb5f31 100644 --- a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg index 135b7d488c..bb8052aa0f 100644 --- a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg index b719afa194..d0bd98cf24 100644 --- a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 9dfd0181d0..6024084037 100644 --- a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 6fe3a59bf6..3d2285791e 100644 --- a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg index 6e064cef5e..cbd53e4a05 100644 --- a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg index dc28938456..7189e5d3e0 100644 --- a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg index 8151b7fdfb..2429c773e7 100644 --- a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg index af422f3a2b..5382fb830a 100644 --- a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg index 41c7c3e1b2..4b65a1c311 100644 --- a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg index cdb30a7bdd..50460847e4 100644 --- a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 4e40f38ba4..590003b0a7 100644 --- a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 288ed89049..1e2afc21ed 100644 --- a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 1f5c0518df..481adf21a5 100644 --- a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg index 8f081c75ae..8edccc6fbc 100644 --- a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg index bd57815fa5..be31c1a175 100644 --- a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg index f6994925a4..55f55cc02c 100644 --- a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 58a8f9b487..79117e9970 100644 --- a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg index 099900111e..dab7748925 100644 --- a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg index 31d415dbc1..eb7dbfb848 100644 --- a/resources/variants/creality/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg index 75696e2e53..164abd5f84 100644 --- a/resources/variants/creality/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg index ddc5d01d0e..9a17bb77ff 100644 --- a/resources/variants/creality/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg index 9591d2248c..f4e6e0a728 100644 --- a/resources/variants/creality/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg index a67f6b10d2..ed90ef591a 100644 --- a/resources/variants/creality/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg index 58ec50067c..359440b6da 100644 --- a/resources/variants/creality/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg index bea99edabd..06c6ed0c84 100644 --- a/resources/variants/creality/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg index 5f702aa530..6684f0c83d 100644 --- a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg index c42ec54840..32e8f48e30 100644 --- a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg index bc126d3f2d..0e6e105f38 100644 --- a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg index 20b89226e1..9e32aed915 100644 --- a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg index fab1010ae6..7ebd75a340 100644 --- a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg index 041ac8c3b6..8877a93996 100644 --- a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg index 51373cdf99..ee740ac8ba 100644 --- a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg index dde7298711..13be034c1b 100644 --- a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 301174ba67..2f11107b6b 100644 --- a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg index 92d934776b..cc38161b0f 100644 --- a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg index f6745d55b2..60cefb9afb 100644 --- a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg index f046370e09..33f16b154d 100644 --- a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 8373a2c819..8c90a1cb5d 100644 --- a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg index 2e127dd9fa..8f57bfa8e6 100644 --- a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg index ea037b6ffb..e8335c4e20 100644 --- a/resources/variants/creality/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg index 33262eeffc..81f8627095 100644 --- a/resources/variants/creality/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg index cd7e827812..6d75fb33e2 100644 --- a/resources/variants/creality/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg index eeaf6d7f53..6e3d6331da 100644 --- a/resources/variants/creality/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg index 091117252a..0b8d92acba 100644 --- a/resources/variants/creality/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg index d30e5e5d94..734c9090f5 100644 --- a/resources/variants/creality/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg index e049a09d90..8ac15853b3 100644 --- a/resources/variants/creality/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 6a95f5a294..96506c3289 100644 --- a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg index a1c35d864f..d9aa9b276b 100644 --- a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 74dd69988b..0aa80d1fae 100644 --- a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 0f58c2a686..2bb70c7b7a 100644 --- a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg index f8c1f8850c..b43b8e29ff 100644 --- a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg index 83998525b4..d006d966de 100644 --- a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 52516050cd..6c8be83737 100644 --- a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg index 3d3fb182f9..9932ff2a43 100644 --- a/resources/variants/creality/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg index feeeac902d..2c0a808113 100644 --- a/resources/variants/creality/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg index 7af510f84f..0e8580d9d3 100644 --- a/resources/variants/creality/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg index 35abb7341d..dbfff554e6 100644 --- a/resources/variants/creality/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg index 300487bd15..11b763d74c 100644 --- a/resources/variants/creality/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg index 262e286962..431baae79c 100644 --- a/resources/variants/creality/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg index 9d56cbe2d0..ac7d9dbcb6 100644 --- a/resources/variants/creality/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg index d7d9b84b81..8f30d0f6fe 100644 --- a/resources/variants/creality/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg index bea726a419..0784478a1b 100644 --- a/resources/variants/creality/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg index c5a3718023..2ac7aba90f 100644 --- a/resources/variants/creality/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg index 322d4cf86a..b580a5cde6 100644 --- a/resources/variants/creality/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg index 71ad4b4e0a..c0907e9ad7 100644 --- a/resources/variants/creality/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg index f74437fe8c..e3c6805cce 100644 --- a/resources/variants/creality/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg index 18b9b33507..8b0eb7362c 100644 --- a/resources/variants/creality/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg index 969a476b0b..454ec0377b 100644 --- a/resources/variants/creality/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg index 34e6ce4f3b..e534020341 100644 --- a/resources/variants/creality/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg index 7bf09221a1..1ac41b3714 100644 --- a/resources/variants/creality/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg index ed37671788..c5eb7768b0 100644 --- a/resources/variants/creality/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg index b890bbe67c..e5c98ee7a7 100644 --- a/resources/variants/creality/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg index 30099acc04..06c3fbf5b9 100644 --- a/resources/variants/creality/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg index c30af4410a..9107793f15 100644 --- a/resources/variants/creality/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg index 8eb336c356..17e74e4b97 100644 --- a/resources/variants/creality/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg index 24f21f93de..1f55310dc8 100644 --- a/resources/variants/creality/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg index 0b13727228..55baed7323 100644 --- a/resources/variants/creality/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg index b0527d929c..844a1eca5c 100644 --- a/resources/variants/creality/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg index 1970ecd725..3c6c0fb6b4 100644 --- a/resources/variants/creality/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg index 23d78b0584..ae0afbc280 100644 --- a/resources/variants/creality/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg index 42450e2282..7da936ffa8 100644 --- a/resources/variants/creality/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 813436be65..8ecf20846a 100644 --- a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 5eadcfb975..6b3576a42d 100644 --- a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg index aeb092a76b..299550c19b 100644 --- a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 5a5d1fcbf9..99a817f8b9 100644 --- a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg index fcd5707c4c..89022bcea6 100644 --- a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg index 42767a94a7..874c63ba24 100644 --- a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg index b1689a2891..93c2ec2187 100644 --- a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg index ac944ab1dc..8d9e1a1e8c 100644 --- a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg index d58e18d238..5ed26fdbad 100644 --- a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg index fdaddc91ab..1658bf59e3 100644 --- a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg index 0093cc7356..2ac65e3abc 100644 --- a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg index e1aa8a4448..62112135a7 100644 --- a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg index 0b584c6e87..a9b60bbefc 100644 --- a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg index a1de29ad89..30820921fd 100644 --- a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg index a8ed1f1d37..95c7c83ab8 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg index 039c47debe..75095886a1 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg index a410190389..041139f89c 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg index 81d93cef97..ceb15fe521 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg index 7804f5ed15..dc316c8e45 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg index 882f18b408..800e70cb81 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg index c76ff38862..12652aa70d 100644 --- a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg index 3697ba6288..1c0454ec61 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg index 3b7675aa6a..91e2ebfc3d 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg index 37eb70d09c..74ef00ec76 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg index c4c1b18347..31c82d1cf0 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg index d609218f5e..ee34266719 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg index ee7a039075..f65002a11a 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg index 4c8200ec9c..945953dfc0 100644 --- a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg new file mode 100644 index 0000000000..d198308616 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg new file mode 100644 index 0000000000..061112ebad --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg new file mode 100644 index 0000000000..cfd6f021d7 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg new file mode 100644 index 0000000000..3d0682c270 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg new file mode 100644 index 0000000000..0f8264dabe --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg new file mode 100644 index 0000000000..639f4fd4f2 --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg new file mode 100644 index 0000000000..638e75887d --- /dev/null +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_ender3v2neo +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg index 691b6eccb4..b523a38f41 100644 --- a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg index 074386a24e..6cf40ce999 100644 --- a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg index c586b77f97..fd870564ec 100644 --- a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg index d97ae16d7f..45ca3a0184 100644 --- a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg index e3caad0a86..4b7379635e 100644 --- a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg index 21e3629a6b..0978a0e801 100644 --- a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg index 13fd7c97fa..e2c6b803b9 100644 --- a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg index cc9e0b9d79..0034158d3f 100644 --- a/resources/variants/creality/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg index fd9c0d85c7..c54a86e293 100644 --- a/resources/variants/creality/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg index 431454efad..0152f1c957 100644 --- a/resources/variants/creality/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg index 89c5b10479..37c216cbfa 100644 --- a/resources/variants/creality/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg index 42be35588c..aa48e63e09 100644 --- a/resources/variants/creality/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg index c695d8d92f..1a980e4ada 100644 --- a/resources/variants/creality/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg index c7b4738042..35ed12644d 100644 --- a/resources/variants/creality/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg index 9caa965f98..a371ccb35b 100644 --- a/resources/variants/creality/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg index 290994c543..2075784b2c 100644 --- a/resources/variants/creality/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg index 311b19acaf..96733fd527 100644 --- a/resources/variants/creality/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg index 905089c0c0..ee184b97a4 100644 --- a/resources/variants/creality/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg index 219aa4cd1f..e3cf08f93e 100644 --- a/resources/variants/creality/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg index cce7eef2d6..990162becc 100644 --- a/resources/variants/creality/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg index 848e52b9e3..8bb5a67d24 100644 --- a/resources/variants/creality/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg index 3890f62429..a0c1b19d19 100644 --- a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg index 3b6871266c..30c7d397ce 100644 --- a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 13bf3cd0fb..40ac79b50e 100644 --- a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg index d42832dbcf..a0cb2b6572 100644 --- a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg index d39802eed7..89cfdab22e 100644 --- a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg index c6125f4099..3a343352f1 100644 --- a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg index dbb895e317..8af92e62cd 100644 --- a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg index bb3e5312ea..abddcdccfb 100644 --- a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg index f7aa3350bc..b7e32ab75b 100644 --- a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg index 6e38f503fc..488dbcd893 100644 --- a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg index cb2b684542..61a51c7cd1 100644 --- a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg index 2c2d0480ff..60a69f9b4c 100644 --- a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg index 2e95f8e3d0..04d29eedc6 100644 --- a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg index 48fba7a715..f5d8bb3adb 100644 --- a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg index e21c3659f4..5057234c7f 100644 --- a/resources/variants/creality/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg index c129731e9b..ffd82833b0 100644 --- a/resources/variants/creality/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg index b1e14dfb45..bf288d354d 100644 --- a/resources/variants/creality/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg index b4f0aa9199..01cb313eb8 100644 --- a/resources/variants/creality/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg index e1cba4411c..12044c5a15 100644 --- a/resources/variants/creality/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg index d8ebefe705..3f3bf9f0d4 100644 --- a/resources/variants/creality/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg index e4f2aea7e6..5221d2db3c 100644 --- a/resources/variants/creality/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.4.inst.cfg b/resources/variants/creality/creality_k1_max_0.4.inst.cfg new file mode 100755 index 0000000000..40b05dae6d --- /dev/null +++ b/resources/variants/creality/creality_k1_max_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_k1max +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_k1_max_0.6.inst.cfg b/resources/variants/creality/creality_k1_max_0.6.inst.cfg new file mode 100755 index 0000000000..b91dde92c0 --- /dev/null +++ b/resources/variants/creality/creality_k1_max_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_k1max +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_k1_max_0.8.inst.cfg b/resources/variants/creality/creality_k1_max_0.8.inst.cfg new file mode 100755 index 0000000000..de60d921f9 --- /dev/null +++ b/resources/variants/creality/creality_k1_max_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_k1max +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg index e3f4be7934..b123de554e 100644 --- a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg index e78ba1f27d..89358a5324 100644 --- a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg index 03c6120b0d..c42bd666b8 100644 --- a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg index 7201411432..abbf292092 100644 --- a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg index d7e7ef4082..9e11dbbd85 100644 --- a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 714a46c4d2..3d8ab3bde2 100644 --- a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg index e48fcb9bbd..d2fc1cc66a 100644 --- a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg index 7955b804b4..d83b26b9b5 100644 --- a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg index c87bcdbb9c..fb2873bfca 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg index e40fe89651..33b2f0c757 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg index 590e5cd9bb..b672317c15 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg index 2de668d64a..9c5397b535 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg index dfd771e72b..4d3bb38df9 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg index ef5ae3341b..71cd43dc29 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg index efa201d3d4..3862119ecd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg index 42123ce059..a3010896eb 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg index a30cdf14ec..572e3a0a05 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg index b4b4005e61..b91da5cce5 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg index e79dcfdcd0..1790d9ef27 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg index 4856377ec5..566688fedc 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg index dbc7c0e8ef..17f5f768c5 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg index 692c4f25cd..c78ce86030 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg index 3734f5254b..fe5aab9f9c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg index c0a0e5883b..2684177443 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg index 2d1ff5b108..91c59f0e6d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg index 56c0388ecf..431d7eb7e1 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg index 49d817fb03..eae1a408f4 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg index 70ebe157ad..754bb93c02 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg index 46bf6148c4..8ea81a3972 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg index 4bcdd1cb58..84eca0f253 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg index 0a15ae8316..3ac5e34205 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg index f090565c4c..f9ae98aa0f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg index a15400a6db..e1749cb429 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg index 1b02f9637b..cb0d9a6d61 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg index 69b6b5e872..f5995c20dc 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg index 2df35e31dc..f907b89e87 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg index 6fd73a0fe4..badcdc87f7 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg index addcb3fb55..65c35eea1e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg index 634a91f533..021c0f141c 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg index 4b0b6853f2..25f25029a0 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg index 12e4881d48..b9cbe805d4 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg index 4008817b37..431f06f81f 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg index ea1c867366..46cad40b28 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg new file mode 100644 index 0000000000..567cf160cc --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro +name = Brass 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Brass 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg new file mode 100644 index 0000000000..a509a37310 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro +name = Brass 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Brass 0.8mm +machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg new file mode 100644 index 0000000000..42c01ad004 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Brass 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Brass 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg new file mode 100644 index 0000000000..6498a7a26b --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Brass 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Brass 0.8mm +machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg new file mode 100644 index 0000000000..82e80ddd92 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Steel 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Steel 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg new file mode 100644 index 0000000000..8df2ac5bf5 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro_dual +name = Steel 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Steel 0.8mm +machine_nozzle_size = 0.8 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg new file mode 100644 index 0000000000..33d9585241 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro +name = Steel 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Steel 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg new file mode 100644 index 0000000000..7ad9767f09 --- /dev/null +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = dagoma_sigma_pro +name = Steel 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = Steel 0.8mm +machine_nozzle_size = 0.8 + diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index 291d9cc555..dd991034be 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index a8c5aed70b..9eeb0d5798 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index 73ecc333b3..aceb33a763 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index af9f1010d8..2eba3d6b5f 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index 9653ed674c..a617f78b93 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index 0afd0643d8..a5c92a83dd 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index b7648046f7..2dedb7fa94 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 524758ad65..0972964ca5 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index e93cfb33d0..20cb7fb960 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index 099be9cc5e..e24cd0ea6d 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 34eb1f7b2a..3ae6090e66 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index 6bc0485807..c40597cb87 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index 6d057424c7..6742aedfc9 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 0c6221f45d..0e03d17023 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 0edb30443a..60a4286938 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index 98cadeed24..dc2925f77c 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 0bec048c02..15e4915e2a 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 73dfd41134..6d49118119 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index cf7a19bc71..1cdcb390e9 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index aab69dd988..da67df45fd 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index 72e267f34f..cf4e85908d 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index 7a3ffa4745..150e4a17b5 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index e05a8e4e2d..4854a810f8 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index 3fa9cdc970..d8195ef346 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index 8ffd17d733..a033fefc15 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index 7c2ebcfe70..c37b96738a 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index 80a83e0d6b..3e95332396 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 3cdcb1927c..0daf1de438 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index 63fb310681..070d8421e8 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index 56de1f467a..7131e12280 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index 809cd48e85..a441f1a043 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index 410b162d1d..dd9fd9d17d 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index cb7adbdefc..988ec95557 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg index c427394af9..b7233a9d25 100644 --- a/resources/variants/diy/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg index 0b59336572..22dd3a3032 100644 --- a/resources/variants/diy/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg index 9579c201e5..bc4ac126c1 100644 --- a/resources/variants/diy/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg index d04fd167e2..13f0d6c617 100644 --- a/resources/variants/diy/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg index 519b04d186..f3b1d65bde 100644 --- a/resources/variants/diy/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/diy/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg index b27a536efb..ca159b00b9 100644 --- a/resources/variants/diy/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg index 16ee7f4e15..a488e4d179 100644 --- a/resources/variants/dxu/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg index ecf4cbf83c..7302b73604 100644 --- a/resources/variants/dxu/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg index 4d04dac66b..b3850a0600 100644 --- a/resources/variants/dxu/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg index 1a6f0f22be..bbdc10ab07 100644 --- a/resources/variants/dxu/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg index 9a6516bb7b..6983e959b7 100644 --- a/resources/variants/dxu/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg index 10daf54b52..0dd99cc77d 100644 --- a/resources/variants/dxu/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg index 798377f3ac..5dcac9741e 100644 --- a/resources/variants/dxu/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg index a392b95292..cedb16e925 100644 --- a/resources/variants/dxu/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg index 2fc196bf19..8f8d06cb5f 100644 --- a/resources/variants/dxu/dxu_umo_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg index d98fdbcc7b..e840ab33f8 100644 --- a/resources/variants/dxu/dxu_umo_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg index 9d564db4a1..87cedca49c 100644 --- a/resources/variants/dxu/dxu_umo_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg index fc66713880..07945af623 100644 --- a/resources/variants/dxu/dxu_umo_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg index fc4fffcb4e..86430accc9 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg index 85f5b17d2d..255ffc9dd1 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg index 5af2ac18a1..5a16beb3c6 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg index eae270181b..57e7bd70e0 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg index ff14878f69..54af683b9c 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg index 30ee88ddd3..3217a1a6ce 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg index 8a5d31cca2..bc82566e9c 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg index 558d8fbdad..2a33d85bdd 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg index 4c1180e555..17298221b2 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg index a38d2db989..fc59701f7a 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg index 13cd15ad7d..0da41f7840 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg index 785396f64a..7beae5d3e5 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg index eded48e16d..9a5939570f 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg index 68655ba6f6..12ff110d2f 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg index 93094eced6..b4767809f0 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg index cc5430a687..1982bc0cf5 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg index dba8f4835c..037e20a244 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg index c289d4595f..c10c29be43 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg index 23a9449b56..cdec82e36c 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg index a4ec2af878..71b05584c7 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg index 253e434aaa..79905f009e 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg index 1a638c6f36..23fd5dbe3b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg index 4ae27b83f3..192b22cd3d 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg index bd4be2b2dc..385b107881 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg index 502b18c49a..e3dece6399 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg index 8e5aa468d8..c47b9bd410 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg index 58dd28cbc1..a1eddd732a 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg index 669d7207e5..7ee345c400 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg index ef39a4560f..7f1bd2395c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg index 4331b27eda..6825ef8695 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg index 7d518a6df6..15bb5938ed 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg index c5183f0e7d..4c75c5ab10 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg index 54301e7ad8..83c207f638 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg index 0e49ef7d51..c7177f03c4 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg index 9e60d5aaa5..a953118890 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg index c69d81dab8..508fba410c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg new file mode 100644 index 0000000000..7f982712ef --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg new file mode 100644 index 0000000000..dac5cd8317 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg new file mode 100644 index 0000000000..4c69919d3d --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg new file mode 100644 index 0000000000..bcb9cc218d --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4 +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg new file mode 100644 index 0000000000..8b8fdb67c1 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg new file mode 100644 index 0000000000..7bb3f29a7c --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg new file mode 100644 index 0000000000..012d6b6ce7 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg new file mode 100644 index 0000000000..9baa55881e --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4max +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg new file mode 100644 index 0000000000..474b80a73f --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg new file mode 100644 index 0000000000..c67b0aeae6 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg new file mode 100644 index 0000000000..bb9711b198 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg new file mode 100644 index 0000000000..2ffbd30b17 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4plus +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg new file mode 100644 index 0000000000..ff0e79e8f9 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.20mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg new file mode 100644 index 0000000000..c74a427847 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.40mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg new file mode 100644 index 0000000000..7737888958 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.60mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg new file mode 100644 index 0000000000..37f1b63552 --- /dev/null +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = elegoo_neptune_4pro +name = 0.80mm_Elegoo_Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg index c06a52f29b..41bfaa08a0 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg index 2d3802546f..91f42e476e 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg index e0a715a717..aa13f03c45 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg index 196a9f8ce0..5808e0a677 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 627675315c..60ef115b5f 100644 --- a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg index 1367297a48..56f5164679 100644 --- a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg index 57c84f42f7..cc9f291bde 100644 --- a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 6808a33586..63e13314a6 100644 --- a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg index bab320bb9a..ce5beb4e34 100644 --- a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg index 616f1984d4..faad25df65 100644 --- a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg index ecf117c1dd..01661cf9a9 100644 --- a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index b32fab27a9..2806a0e56c 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index dc61348f5e..c0ed4d0b82 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index f6317d5a6b..c49f4b8f7f 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index f6d668441f..7eda0784d3 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg index 884f277d71..c32dd5b7ee 100644 --- a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg index 348d84f431..c85557732e 100644 --- a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg index fb324a7b94..d1d5139ef1 100644 --- a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg index 51e1998f73..f3800018ec 100644 --- a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg index c29733b4b5..0517d24161 100644 --- a/resources/variants/felix/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg index 3e63477be2..e9265c414e 100644 --- a/resources/variants/felix/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg index 7aa71ab40a..8a69b37e2d 100644 --- a/resources/variants/felix/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg index 7650505cb9..e0b6765315 100644 --- a/resources/variants/felix/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg index f07db13308..9e3586ebe9 100644 --- a/resources/variants/felix/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg index 590a3a3664..84090ef30c 100644 --- a/resources/variants/felix/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg index 5c75a42e06..09086168e0 100644 --- a/resources/variants/felix/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg index b5ff8d4884..c9f492ecfe 100644 --- a/resources/variants/felix/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg new file mode 100644 index 0000000000..6eb9b886f0 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer3 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg new file mode 100644 index 0000000000..5c7a08ba03 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer3 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg new file mode 100644 index 0000000000..c05e475880 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer3 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg new file mode 100644 index 0000000000..c8d7535ede --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer3c +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg new file mode 100644 index 0000000000..f3b9aa3bf2 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer3c +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg new file mode 100644 index 0000000000..974b554bf4 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer3c +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg new file mode 100644 index 0000000000..4c41f5e767 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer4 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg new file mode 100644 index 0000000000..afb2a463a9 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer4 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg new file mode 100644 index 0000000000..efdc18da4c --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer4 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg new file mode 100644 index 0000000000..208cb50e2c --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer4lite +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg new file mode 100644 index 0000000000..7a74b5a839 --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer4lite +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg new file mode 100644 index 0000000000..674858edad --- /dev/null +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flashforge_adventurer4lite +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg index daf917a360..142c5293dc 100644 --- a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg index fce9cb55f4..d533d14756 100644 --- a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg index 0744c7c68e..f6c0995f8d 100644 --- a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg index 6a0f694e22..4562c77885 100644 --- a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg index 67d3fcd4c6..80fc272e50 100644 --- a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index 2336dc5429..a165b04fb7 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index a3944902b3..44d4f6da07 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index b63fabe945..5da3632749 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index ec81a7c2e9..0c49c7a554 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index 53ff0d67a7..8812d00845 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index 39a0d590c9..ec850a3512 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index ec73fcc525..e360bc54ac 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 16d8371149..559efcc3e3 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index cc22daaec0..b24ba7b7f7 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index 03b72994c5..dcf4ee1cbb 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index dd543e2675..a0eec97673 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index 5bae98edc1..a2bfce3a5e 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index 233f3eb2be..eeaaa3c7ec 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 4c1365fbee..350768d489 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index 24739c79cc..f999358203 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 06620b39cf..68da0ebe58 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index 32fb9abcdc..f436165553 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index 69457b3e96..18e877f049 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index 9bff6523b5..a06bf2b2e7 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index 5e1bf0c0e3..dcbc1c5947 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index 5dcc310b58..7b8d3a0950 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index 97bda89193..ed4178c2e6 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 79e4dfcfe5..9b6752cddf 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg new file mode 100644 index 0000000000..558ba90c08 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.25mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.25 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg new file mode 100644 index 0000000000..533e491092 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg new file mode 100644 index 0000000000..ee4bfe444e --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg new file mode 100644 index 0000000000..0be6244d22 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg new file mode 100644 index 0000000000..2b6fdc91b5 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg new file mode 100644 index 0000000000..2ce93740e6 --- /dev/null +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = flyingbear_ghost_6 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg index 261f26604f..032d1df8d6 100644 --- a/resources/variants/fusion3/fusion3_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg index 005f95660e..d71f9bf60a 100644 --- a/resources/variants/fusion3/fusion3_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg index 7d0fdd0cea..82d13ac509 100644 --- a/resources/variants/fusion3/fusion3_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg index 261f26604f..032d1df8d6 100644 --- a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg index 005f95660e..d71f9bf60a 100644 --- a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg index 7d0fdd0cea..82d13ac509 100644 --- a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg index 9a9e9878e9..073bfde093 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg index 2202e0a978..35738c38b4 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg index fc88f40611..771d388981 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg index 698b17ef68..3def0e3b77 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg index 65f63a11a1..c3339144f0 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg index 1430a9d5cb..d9d55c53ba 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg index 8c29cae1bb..67928921d4 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg index 7be8d97e01..b1214cc24b 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg index 3201d2b9c3..55648cf4be 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg index 568b11da35..8a7aeae477 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg index 720f7f2dce..7edabf6327 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg index ecdddc5cbd..ead8c5b891 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg index 5e85dd0b29..cdfa9fe671 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg index fdb5b146bc..faee4e113b 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg index 2f00ab9655..88156da5e3 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg index c19b8e959f..57da0f5263 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg index 9d2ab142a9..93b6d43e9d 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg index 8ade0c96d5..51e95b839c 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg index 5fe235062e..e46f80f685 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg index fe6e60220c..bf1850752f 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg index 19de98bcf7..ae25d00c77 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg index ee96e1c069..7ce2a570e2 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg index e86a3f4265..5029b53c1d 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg index 187ad167f9..6940fc607c 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg index 73f36e97c9..0086d1c603 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg index b685d8b0ac..5b27a712db 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg index 3a961ab375..e4dc87a493 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg index 45e7f7b6fc..76cb672eda 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg index 1500608c0f..0be00235ea 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg index 028454782f..9cec948b0a 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg index 6a0384123b..f35d51b4a1 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg index 8beb28df6d..563f8b902b 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg index 690db843a8..d1902b60c7 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg index 5548239364..50c7f20457 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg index 64b436c163..207f845af0 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg index 81ed9dfa9d..205ef057b4 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg index c987c0d089..640fd67b3f 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg index 24f2565020..7737cb527b 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg index c6fdbe00ec..8c9d8ec96f 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg index 0025650b9e..c38d74d549 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg index 0b85e69206..0b94255036 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg index 655f01f84d..70e3f7a1e0 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg index d7f363ad54..91a561d459 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg index 78e32292a9..a69f11ecf4 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg index 24b83a1403..4b3f2f9a2d 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg index e2fb8c11c4..b9ea6e9f9f 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg index 050609fd6c..87ea7a7951 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg index 3a95ad3e79..78d066ae44 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg index c7cd51bc8d..82d05d6f69 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg index c1256d94e6..2d08c3a349 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg index a68a22081d..9c6dfcc9a9 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg index 1197b82844..923ec6db03 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg index 7b816051bc..440c72ca1e 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg index 44ac8d0d84..b853c0ec3a 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg index b5ed03911f..66d1be9510 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg index cf1b29a5db..70dd52e71f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg index b615fdf956..3d086a7129 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg index fdcac4247c..e7d5a500c8 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg index e8a30cb72d..7c3e19e18e 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg index 96e2165217..a41b890f1c 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg index 05de4f03fc..9d0968940f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg index e1ca78c632..2918812f14 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg index 3bc4fb4791..a7a5cbc516 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg index 29098cad27..464246ea60 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg index 14ab2423ad..738fc3458d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg index ff64aaf57c..9c0507ee7f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg index cb75505ad8..c46105ee96 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg index 4a606afa5e..47197c50c4 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg index de9f4a6eac..79994015e0 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg index b8d702dd92..64473d57c6 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg index b275807626..94353d4645 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg index 444cd8c49e..7276bfe5c8 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg index b12b83d69d..6ef937964f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg index fd808f3a2d..bbd1a135bf 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg index 304bf82ed6..13f0c386f6 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg index e2a2d917bd..7a9f1cd96e 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg index 503ee47523..16b62b79ec 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg index 008949a21a..ac5014f44e 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg index 011102c56d..06db268644 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg index 31b0a7b290..66d27fbaeb 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg index 4cf9cdde6a..05665e2f1c 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg index a514327da3..e19a3b7ac7 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg index 78e14970c6..7edbb4db5f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg index 731eebadcf..d366f986c0 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg index f3372f5130..7cbba5a681 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg index 2c1b42a7d3..834c7b9772 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg index f47174704d..608d17b7a2 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg index 103013e221..192ccda494 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg index f4ba7996b6..ff70e1b2c5 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg index 06e9293f08..9be2fda82d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg index 2f15045922..dd6c2e0344 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg index 27897ba995..48dac05f84 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg index cbda21f3a8..59fac38bda 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg index 7f3b37557b..e8477d9dbd 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg index 7f928eb7d7..fc26078784 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg index f50565bd15..974667f462 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg index 7c164087d8..2d9e169eb5 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg index a4239bb42f..3be895b6d7 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg index f28d501781..0ba2b440cd 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg index 4fbb3f0926..8e3980c13b 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg index 99e2398e70..d64df8faf4 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg index d017e391d9..6b41030cdf 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg index 670d6e9668..220550d38b 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg index 850ebfc9ac..46df1945e3 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg index 009a647ab0..84f86b7825 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index f3ffadd4ef..feee98341f 100644 --- a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index 3eb5c892d8..ea6031a55f 100644 --- a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index 9a2e0b9baa..dc2013400a 100644 --- a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index 2aa34bdedd..7bb73d376b 100644 --- a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index 97da3458b8..20a68280f5 100644 --- a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index d76fb1ab6d..5554348466 100644 --- a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index 10241ec4ae..e14b37d410 100644 --- a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index 75bd587aca..da6f85cd78 100644 --- a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index 304dd70619..b83cc5e0cb 100644 --- a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index ba54ecbc23..2c5b950fa7 100644 --- a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index ec91df6fc0..f8e5949f32 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index 7ac4be04d4..ae2c4c2e2c 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index 43f487f522..6dae917b2f 100644 --- a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index 41c3a810cf..108db8a2c1 100644 --- a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index 3a9fbc00b3..23e1ba2047 100644 --- a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg index b37d8481fb..edd56cb8b0 100644 --- a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index fa289fd3f6..7313a769ea 100644 --- a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index d58c829c09..7ada6238e5 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index aeed0bafc0..5e317ddbaa 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index 147a685eca..2ea4951361 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index 0248637e1a..9d4fae1ab8 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index 70b1eebafa..b4b70b2804 100644 --- a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index c73ab7ad5b..d78fbb8089 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index c68dc99c95..45e088df35 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 2114e78b0a..070fcb7359 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index cf72e50f95..93681c06e0 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 2ee9a5892d..0fcb2d256f 100644 --- a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 7b6bb6168b..623eb82821 100644 --- a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 646bd838d9..4fdd588922 100644 --- a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index e27af8852f..53a36b3d1d 100644 --- a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 2668a4abf5..979eb3ee47 100644 --- a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index ddd0196d45..8cd6591c7d 100644 --- a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 1f1ac3e61d..85cb28cf95 100644 --- a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg index 8e9fe3bf93..82388a823b 100644 --- a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 4a8838a97b..6f40759e13 100644 --- a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg index 9cba9c182b..c521a9e8ba 100644 --- a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg index 378879d8fc..92ef73f8fd 100644 --- a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index cb320b755a..4d75934903 100644 --- a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 7aa7995d5f..432f4e4eb1 100644 --- a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index d4f0f0ebbc..842c973865 100644 --- a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index 49016ad3bc..5956dbc848 100644 --- a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index e79ef6553a..22210336fa 100644 --- a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index d1fbaabb38..db56fd8a68 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index 63f75c8f07..eab49f6ff2 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index d4457a95f3..c443ac435f 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index 8c755e45e9..0918d2b0ea 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 441ca6516c..8657cd34a4 100644 --- a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index dd9bb88f48..b062904009 100644 --- a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index bfee7afe9a..e2a711bc23 100644 --- a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index 1fcb914625..ca8d77c73e 100644 --- a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index 71d1d2dc52..ef0b26c2e1 100644 --- a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 3f9c883b81..9039055f48 100644 --- a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index 32ab5c41d4..5df2ea8550 100644 --- a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index 0af036d5a3..bcb84bc11f 100644 --- a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 1f1735b711..2926251798 100644 --- a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index c960de06d4..eab2762d8f 100644 --- a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 2b1d126cb7..7412435143 100644 --- a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index c3ba8d4f4a..ce14d3252a 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 6e18bd2358..647f52efff 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index 0d1414e420..5037e706f3 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index 2160585bf9..f43062c605 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index 0d03fe5d62..042d5cbbf0 100644 --- a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index a72d9bb26a..660658ba58 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index 9858154106..1177030f93 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index a3f7b0fcf5..497c117e6e 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 0036f5babd..05ca9eca78 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index 2906a243ba..2ba839b340 100644 --- a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index d1d06fd35e..b38b300dcb 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index 87fe1cb645..ca2dbe6790 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index 05f5c41e4d..5973febc70 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index ba6734bc99..28a472e72f 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index 564189bab5..f5fdec7756 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index 144b0401c0..0a28dd00e1 100644 --- a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 75062afd05..92c05577b8 100644 --- a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 34e6780ff0..71e1c6cb29 100644 --- a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index beb652c36c..94ad9c2e17 100644 --- a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index 923f826dfd..a34a0f4587 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index 587f9597f5..d7dd0b3746 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 33823a9182..1944ad5751 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index c8eb6ccaba..f2e80a208c 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index 8babba283c..5ffb9996d2 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index cbcef16f41..516e0c99c9 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index 0d5b4f0b01..66c473929f 100644 --- a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index 4a68bb7e11..935e62e059 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index f49df9fd33..b8918d2b42 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index 92c337beb3..4ffeaeee2c 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index c4b4428406..a4f6abd2a4 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index d52eb29e8d..cc14b87ebb 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index 7907785dfb..7ba0f27162 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index e7f24084c3..0c5fa11144 100644 --- a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg index 4d0858a573..90409a027e 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg index e127a63c76..d90512fc69 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg index 3422da8b90..ae48963d8a 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg index 744e7e441d..36b1dcbbc4 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg index 289eb3bd96..57914a8ab3 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg index 68aa6dc7da..fb1a6b5e8f 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg index 5e332ea26b..b05acc5676 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg index 9f18ba241c..5954773084 100644 --- a/resources/variants/kosher/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg index dd2f8c5f5e..cc5cd3e508 100644 --- a/resources/variants/kosher/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg index 13e50382a5..07992ddbb5 100644 --- a/resources/variants/kosher/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg index 84a205114c..dd80c290dd 100644 --- a/resources/variants/kosher/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg index 817cc898f4..d42d48ceeb 100644 --- a/resources/variants/kosher/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg index fa1ba81ba0..dcd90b0864 100644 --- a/resources/variants/kosher/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 4e9cdb9c0e..009eb8114d 100644 --- a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg index 5d5f10e7e1..26ff2fcad9 100644 --- a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg index 91f26e2a9a..50fe460de2 100644 --- a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg index 1d864fb7cc..c3bf8c8dba 100644 --- a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 46216a8ccd..617dfb541f 100644 --- a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 08e3d294b2..5c44545199 100644 --- a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg index d7e41a9984..c8e377c8e7 100644 --- a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 86694cc2db..6c457bf607 100644 --- a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg index 80539d1bc9..b2f718d277 100644 --- a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 9d6aebfda6..14a534767a 100644 --- a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg index 4a433c838e..f0fae06951 100644 --- a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg index d452fef294..369569c1f2 100644 --- a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index e5893c3e65..200d961bf6 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index e1fbeaaf69..d5fee60813 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 40de699118..15470c782a 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 2a4c88d022..56f719ce12 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index a3781a00bd..4c2d7bcae3 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 4faf6729b6..83ea1b5781 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -21,7 +21,6 @@ support_interface_density = 100 support_interface_enable = True support_interface_height = =layer_height * 5 support_interface_pattern = concentric -support_interface_skip_height = =layer_height support_join_distance = 3 support_offset = 3 support_pattern = triangles diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index 0e498466d1..df90214208 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index 5b6b78faae..0b8d012a9e 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg index b6a2166d9c..684f763c77 100644 --- a/resources/variants/liquid/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg index 19039b3c78..318ded1861 100644 --- a/resources/variants/liquid/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index 58cbea1b9d..f6c3e346e9 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index 0cafffacc7..e30e219078 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index 146aff28db..a405b36c2f 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index d6e273309d..80bf9215ec 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index 238c9bde55..b14753a615 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index a8f05aa01b..bffc914485 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index e7c7124d85..7bcab41a1c 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index aee1c069f8..6fc8d120c2 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index a383d94a15..ef8bd0cda8 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index 059dbe1656..35dedaae3c 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index d50c897d36..9dce1e88c8 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index 0d9fe1fd11..e4a79bb457 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 67a3cac721..9a2eaa51d2 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index c81cbbe277..d6f8a1aa37 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index cd8e2485ea..0c78cf88fa 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 7b627bd768..023e077f16 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 4345b950a5..187a2891b9 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index d024b576e3..33d9f1dd4b 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 6c2af6a0f3..38ad1f1ddc 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 7743e4c9cb..4ed47af870 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index b19e2fd096..a84646565d 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index be0e81f22a..5f00991b40 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index d5cba95d68..e7ac3ea123 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index b68012fe19..89bd3df55e 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg index 839df818c4..c8f5cd4dbf 100644 --- a/resources/variants/longer/longer_lk4x_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index b34e18ae04..22b3e76ab0 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index 5416c7a810..f6dfd5e62c 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 2ce7a6d1a3..8dec02c101 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index e7847ad492..1553f9338d 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index c8631a6be3..7f9792a752 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index df41a39ab1..76df010856 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg index 9fedbdcd4e..1e76c76b36 100644 --- a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg index 2f80c7df75..e8c15d58d6 100644 --- a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg index 9a065336fd..c94caecd4a 100644 --- a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg index e84f7d89f9..d2e0591d39 100644 --- a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg index b40a27f68c..5259e59ca4 100644 --- a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg index 937bcb1448..e821bcf124 100644 --- a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg index f731d6d051..1e35828ec9 100644 --- a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg index 75f5d1d79c..b39905c685 100644 --- a/resources/variants/mingda/mingda_4h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg index cb4e88ff8f..ad6d817f5b 100644 --- a/resources/variants/mingda/mingda_4h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg index 5db585bfcc..c7207e9e72 100644 --- a/resources/variants/mingda/mingda_4h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg index 2bda5e1a22..994d0c587c 100644 --- a/resources/variants/mingda/mingda_4h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg index 488f88f2c9..a455e254dc 100644 --- a/resources/variants/mingda/mingda_4h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg index bc92392977..9fcc105149 100644 --- a/resources/variants/mingda/mingda_4h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg index 8a7b50a044..ecff382b36 100644 --- a/resources/variants/mingda/mingda_4h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg index 8cb6baa560..0990e20414 100644 --- a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg index 51f9e8ab55..fc41b19424 100644 --- a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg index 0035577e85..485604b550 100644 --- a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg index 1041e0d20d..f0d1a8b4a7 100644 --- a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg index dbc0fd3d71..a024f70e88 100644 --- a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg index f8c9c71fde..e8aa246222 100644 --- a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg index 27b4ffee84..70fa4471bd 100644 --- a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg index 65b78cecc3..b7d394f037 100644 --- a/resources/variants/mingda/mingda_6h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg index 3e38a46e8e..2a162da44b 100644 --- a/resources/variants/mingda/mingda_6h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg index cd6d2d2e86..6bed347374 100644 --- a/resources/variants/mingda/mingda_6h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg index 1c92a90edb..80d7243cd3 100644 --- a/resources/variants/mingda/mingda_6h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg index 081b149f82..d6333520c5 100644 --- a/resources/variants/mingda/mingda_6h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg index 55e19ddf14..0c776ca48f 100644 --- a/resources/variants/mingda/mingda_6h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg index 0767b232fb..c19a0113df 100644 --- a/resources/variants/mingda/mingda_6h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg index 0648b25eda..ecf6c85f7a 100644 --- a/resources/variants/mingda/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg index 9864095aeb..4ad14e631b 100644 --- a/resources/variants/mingda/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg index a65958f2df..7819e22a0c 100644 --- a/resources/variants/mingda/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg index f50df518bf..458f415aa6 100644 --- a/resources/variants/mingda/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg index 360cf533c5..d477a9f169 100644 --- a/resources/variants/mingda/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg index 559410315c..4f4415b48f 100644 --- a/resources/variants/mingda/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg index 5d799a609c..d5affb8e53 100644 --- a/resources/variants/mingda/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg index 8743b0469c..d1c5787a32 100644 --- a/resources/variants/mingda/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg index 8f4c2f1a44..a93871b21c 100644 --- a/resources/variants/mingda/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg index b9bb2d683a..b1cac2e520 100644 --- a/resources/variants/mingda/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg index b9b009e80c..fb12d1eea9 100644 --- a/resources/variants/mingda/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg index cf92b6cd2b..d5615fd39a 100644 --- a/resources/variants/mingda/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg index e37c306bc7..0fc96e5c06 100644 --- a/resources/variants/mingda/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index 8e399533a3..7f7853c047 100644 --- a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index 7be7d69a37..f51c153ac6 100644 --- a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index a4141ea0d1..3b78e26d93 100644 --- a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index 44fb6f5afe..819d3651df 100644 --- a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index 3e22aa033d..b6ceb3d219 100644 --- a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index f426af89e5..5a1796de7e 100644 --- a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 596418b7df..331e3c320b 100644 --- a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index b0578e5b48..44f8f26bb7 100644 --- a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index 9ae9d8878a..43f510e304 100644 --- a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 8c57a7aca6..50593d35e8 100644 --- a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index 4ec36f2c5d..3727fb8c90 100644 --- a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index 934329e29b..e4dbd96907 100644 --- a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 492fb69ce6..8010b5cd71 100644 --- a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index b3cf883b0f..8ab02e4b73 100644 --- a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index 4fda39ef43..dc6281101d 100644 --- a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index 0aeacb4707..27a268c2ce 100644 --- a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index bef2a46d78..3d37b97f89 100644 --- a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index cf9b29ab36..1b72c3ebe5 100644 --- a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 37e46faec1..7808993454 100644 --- a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index 15685a3903..0d7f764ad7 100644 --- a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index bcd8277a49..11ef656d49 100644 --- a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index c0531cc852..d7ed29cccc 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 6199ccfdc9..07d83ef87f 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index 43b7ff34e6..c4fc96a6ee 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 0306b32863..62eb622e30 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index 6cf09ed8fe..d2efcf7a54 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 319514c395..1f790ea81b 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index cdd044af5c..96784fcc42 100644 --- a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index 18e659950b..9b225512fd 100644 --- a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index a08f4aae64..e82d82deed 100644 --- a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index ee626d27c3..3efa1acda7 100644 --- a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index a3c51043d5..141ec15e98 100644 --- a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 283c129171..6fbac0e0ec 100644 --- a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index dede9bdcd8..7592d1b7e0 100644 --- a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index 69b8b21bea..a6aac74b09 100644 --- a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 468981aaad..77dbeccb88 100644 --- a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg index aaaad83576..6ff94a3e13 100644 --- a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg index c476451a98..6f4ad9490a 100644 --- a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg index a759c5471a..41803b2884 100644 --- a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg index fa03c399cf..cbd52b2814 100644 --- a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 79083181cd..9fb0b2b199 100644 --- a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg index 0c9f1ba2a2..e8f7d62672 100644 --- a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg index cb017ace96..a5f23659c7 100644 --- a/resources/variants/modix/modix_v3_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg index 649d953823..ec1144d4b1 100644 --- a/resources/variants/modix/modix_v3_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg index 5c0008601b..b1074fc87b 100644 --- a/resources/variants/modix/modix_v3_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg index 272242aa7d..bd4ffc1d0e 100644 --- a/resources/variants/modix/modix_v3_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg index 53ebdd056d..08371bbe60 100644 --- a/resources/variants/modix/modix_v3_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg index cfd9bdfd95..e9fa4ae5fc 100644 --- a/resources/variants/modix/modix_v3_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg index de4f6f39aa..93c61e90af 100644 --- a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg index 07dc1b5d1a..3b77f92263 100644 --- a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg index 84479b17f5..ed33a50293 100644 --- a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg index 1e47572d40..31a29baaaa 100644 --- a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg index 642c348886..67239ec5e8 100644 --- a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg index cec17a4aa8..093d6b2367 100644 --- a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg index c0f50e57ed..e4094352be 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg index 06fb3b0f02..19fdc4d8a2 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg index ef87979b9f..54a1d3f6d7 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg index 2f94e456cf..1c11bb230c 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg index 113efb8610..e841cc9841 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg index e6e6b6095d..522c6bddd5 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg index 0a1957e0e9..9cc8cc9115 100644 --- a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg index 85f48319d2..64538b559a 100644 --- a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg index e191ca9398..4961c0e72d 100644 --- a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg index d525a6ad83..dfec34fff2 100644 --- a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg index 25f248964f..8b97f86daf 100644 --- a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg index af6f22f9c3..b4c7ac8998 100644 --- a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg index 6de9e19257..7f610622eb 100644 --- a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg index 2e838b6f61..86778410ab 100644 --- a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg index 1d3eb15e01..08b13addba 100644 --- a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg index bd35c7a25c..3b71773371 100644 --- a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg index 1f95020a3c..dd844eaad8 100644 --- a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg index 7694865f21..9ebc22a272 100644 --- a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg index 513942ae11..2dc9247c3c 100644 --- a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg index 0ffce3eff8..9b10cbf5ea 100644 --- a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg index 6c06692a93..bbdc550ae9 100644 --- a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg index 564703d114..a40f3641e6 100644 --- a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg index 60cedbe3de..5d625d132e 100644 --- a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg index e34222a3db..24e54939a5 100644 --- a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg index 426adc3082..5f6eade748 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg index 55c62d85b8..f91a2591ec 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg index fb8389e1e2..af13575ebb 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg index 61ef19159b..e623a4ad3a 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg index 710f713918..4d0db84138 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg index 37b12893b5..dc5374c87c 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg index 41dbef049a..968712e72e 100644 --- a/resources/variants/modix/modix_v4_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg index 854259e4e1..f83f4e23a4 100644 --- a/resources/variants/modix/modix_v4_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg index b20cd0f3ce..ad87dfa4cc 100644 --- a/resources/variants/modix/modix_v4_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg index 49281a641f..fdc01c05e6 100644 --- a/resources/variants/modix/modix_v4_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg index e9f38e4bcc..a72ca94779 100644 --- a/resources/variants/modix/modix_v4_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg index 156ad71801..62967ea303 100644 --- a/resources/variants/modix/modix_v4_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg index 4a1edc2e9a..9b3b9b5024 100644 --- a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg index 502ec9d80b..6046383104 100644 --- a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg index e32506f020..d7cc3a4cdf 100644 --- a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg index 8014e1af36..963e9f8ac7 100644 --- a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg index 63b898164c..7e84bd034d 100644 --- a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg index a99530b13a..73d57eedfa 100644 --- a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg index 8527d717a7..1c6672972c 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg index 8796b02d5e..6f0d1c42ae 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg index 58a1a48566..36d79c6509 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg index 884f21be34..6a6a9de9bf 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg index d880f3ae96..64955ea44f 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg index 5852ce2f76..8b9f425894 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg index 3f10dc14dd..64086a3a2b 100644 --- a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg index 4c0c019f72..5240e89085 100644 --- a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg index 721629f388..71d1f66537 100644 --- a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg index c8071626d8..5b69f2036c 100644 --- a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg index 86b37a4d4a..f5d5004a37 100644 --- a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg index dbb6dc9004..5fee5b3ee9 100644 --- a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg index 9a7c1b2c1f..a04deb4f41 100644 --- a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg index e0a946bb6a..07ab30b98d 100644 --- a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg index 4491035dd9..1d0c073349 100644 --- a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg index 1d5ca3e448..540a57a2ca 100644 --- a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg index e2d630a8c4..051131ac0a 100644 --- a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg index 1fd7f0bd4c..c109c6e8ee 100644 --- a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg index ed406c9ad7..1c132afabd 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg index f0b40510d7..8258617bf8 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg index d69e9964bf..1db24a8191 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg index 814e94fb88..9cb4c333f1 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg index 5d78378275..54ffc66c2b 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg index 570c683c81..5cb242da14 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg new file mode 100644 index 0000000000..9164f9ea78 --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg new file mode 100644 index 0000000000..e07fbeee22 --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg new file mode 100644 index 0000000000..1c3771a1ce --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg new file mode 100644 index 0000000000..74f748a20e --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg new file mode 100644 index 0000000000..31e027a18e --- /dev/null +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = multicomp_mcpi200 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index 71595314b6..c46b934fb1 100644 --- a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index ceaec2b6e1..3c31742b45 100644 --- a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg new file mode 100644 index 0000000000..553f869f01 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_base +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg new file mode 100644 index 0000000000..7aaabc3477 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_base +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg new file mode 100644 index 0000000000..1e79ffca33 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_base +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg new file mode 100644 index 0000000000..901033a2ef --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_base +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg new file mode 100644 index 0000000000..59e891f8c1 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_base +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg new file mode 100644 index 0000000000..19c37d1768 --- /dev/null +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_base +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg new file mode 100644 index 0000000000..6352cdb6bc --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_200 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg new file mode 100644 index 0000000000..4a351bd9f4 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_200 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg new file mode 100644 index 0000000000..3a0200217f --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_200 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg new file mode 100644 index 0000000000..44df899221 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_200 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg new file mode 100644 index 0000000000..a0d8c92598 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_200 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg new file mode 100644 index 0000000000..0753222b53 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_200 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg new file mode 100644 index 0000000000..f4c80c3389 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_300 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg new file mode 100644 index 0000000000..f062f4c7c8 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_300 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg new file mode 100644 index 0000000000..1a67b8c307 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_300 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg new file mode 100644 index 0000000000..2eca8c927a --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_300 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg new file mode 100644 index 0000000000..1a7ca3c932 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_300 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg new file mode 100644 index 0000000000..1af12f82cd --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_300 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg new file mode 100644 index 0000000000..4b6f94ffba --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_400 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg new file mode 100644 index 0000000000..c8f002caaa --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_400 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg new file mode 100644 index 0000000000..baa8fe1efe --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_400 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg new file mode 100644 index 0000000000..645e14a199 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_400 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg new file mode 100644 index 0000000000..48815a8897 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_400 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg new file mode 100644 index 0000000000..dc88ce1850 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_400 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg new file mode 100644 index 0000000000..cf77712b11 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_500 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg new file mode 100644 index 0000000000..80d7a6bbf0 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_500 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg new file mode 100644 index 0000000000..0d3801a983 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_500 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg new file mode 100644 index 0000000000..fba4902ba2 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_500 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg new file mode 100644 index 0000000000..f4e761ea36 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_500 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg new file mode 100644 index 0000000000..11de67bfdb --- /dev/null +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vcore3_500 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg new file mode 100644 index 0000000000..191326cae9 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vminion +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg new file mode 100644 index 0000000000..6e3619f095 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vminion +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg new file mode 100644 index 0000000000..5ea05dfa9b --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vminion +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg new file mode 100644 index 0000000000..c2ee92e944 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vminion +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg new file mode 100644 index 0000000000..a24e0c6723 --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vminion +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg new file mode 100644 index 0000000000..fbabf642fe --- /dev/null +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = ratrig_vminion +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index 60b83e57e4..8681f4a8a1 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index 9091a6144c..c3b364aa41 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index 9f107a665a..e1c5ce38c8 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index f63ca79ed2..4d5ee05f26 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index a8c515229c..2c9a63fd2f 100644 --- a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg index 53d4d0a279..28a7abf81a 100644 --- a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg new file mode 100644 index 0000000000..7af87e50c4 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg new file mode 100644 index 0000000000..70ca42b414 --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg new file mode 100644 index 0000000000..7b253ecf4b --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg new file mode 100644 index 0000000000..c4e1a6771e --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg new file mode 100644 index 0000000000..e0ec053bda --- /dev/null +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = renkforce_pro10plus +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index 21ba3e3fa4..93ba24d86e 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 5b52a0479e..707b302ed6 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 89d204ff0b..26d51c1bf0 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index 37d6d17c56..7d5eada60a 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index 8ebb971022..ecb5cb827f 100644 --- a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 203cbb5b8d..871a337348 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index b71d1b2d84..2c265e3b05 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index 6796ef989a..f1479e8199 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index d9114dc05a..287933123f 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index 83332acfa9..bade0df4be 100644 --- a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg index 5e276f3584..d8cd4cf305 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg index 51b3389ea6..6162c38a7e 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg index 7eb129d4d5..e3cde95994 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg index 79f9ad7959..427f6b3c07 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg index 703fc81fd3..0972aeccb6 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg index 64a558c3dd..235a3a4558 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg index e3f73d3644..c2af0c2532 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg index 7c060510e3..37c7b58f08 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg index 1c9a155153..b9c1fb3d95 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg index cdc699ec08..95676e994a 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg index 6d61a4aab8..7cfc3efc57 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg index 9b9c3448ba..4c49dec402 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg index 599fdf099d..91bb80628e 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg index 509e7f2025..9c0e6ecddc 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg index eb2f8fa9fd..b078d6089e 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg index 0eedaad4a1..40fcf0f556 100644 --- a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg index cdc699ec08..95676e994a 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg index 6d61a4aab8..7cfc3efc57 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg index 9b9c3448ba..4c49dec402 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg index 599fdf099d..91bb80628e 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg index 509e7f2025..9c0e6ecddc 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg index eb2f8fa9fd..b078d6089e 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg index 0eedaad4a1..40fcf0f556 100644 --- a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg index cdc699ec08..95676e994a 100644 --- a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg index 6d61a4aab8..7cfc3efc57 100644 --- a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg index 9b9c3448ba..4c49dec402 100644 --- a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg index 599fdf099d..91bb80628e 100644 --- a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg index 509e7f2025..9c0e6ecddc 100644 --- a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg index eb2f8fa9fd..b078d6089e 100644 --- a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg index 0eedaad4a1..40fcf0f556 100644 --- a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg index 8cb6eb9fd6..4675382ac7 100644 --- a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg index 6c1cf8aa25..1f4dc19dbc 100644 --- a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg index fcdd265d04..8a9ff336d6 100644 --- a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg index 5fbd113f8e..18cf8af243 100644 --- a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg index 1cb46e18f5..076b31f4ea 100644 --- a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg index 2aeab0e239..02088701c9 100644 --- a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg index 4b822dc95b..67c4921b41 100644 --- a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg index cdbcdb3337..f7ef67df9a 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg index d984439be4..66418fccdd 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg index db9fe5749b..b665199027 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg index 9b34ca0a2e..3ac09cd534 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg index 247f3ac25c..2b4ba7a8e6 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg index 12e667ae05..d19443e26a 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg index ac71470ed6..79db65ef8c 100644 --- a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg index d8cb16668c..b27c368ba7 100644 --- a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg index 068bdbc98f..c0e0ea8e03 100644 --- a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg index 8f60d5fe1f..88fe704558 100644 --- a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg index 97cddbd75c..aa3b6dcbd6 100644 --- a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg index a89fe331f9..d42f878ed6 100644 --- a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg index 27e6366a21..6eb0061d4c 100644 --- a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg index 3cb063e03e..72800bf3a1 100644 --- a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg index 17e45bc4eb..bbb14c2961 100644 --- a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg index 207bfe8750..429aa18024 100644 --- a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg index cb766a176f..d3b7102606 100644 --- a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg index 40877fe343..398012ed4f 100644 --- a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg index 043f6621ab..df3b34602a 100644 --- a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg index 1bf2de97a7..80b859c9ff 100644 --- a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg index 2ccf5ce5b7..08a03569a5 100644 --- a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg index 0feeee93b7..e8bb5f9823 100644 --- a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg index f6badce399..e56a618f9e 100644 --- a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg index 1ef526b59a..729f0a8099 100644 --- a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg index b702272de8..697c0a8cbd 100644 --- a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg index cc2cfb918f..76afaa4115 100644 --- a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg index 645d9af388..57aaba95d0 100644 --- a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg index f012540e97..1def6c310d 100644 --- a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg index be7bcbab11..801913f2a8 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg index 8cc510304b..24746b4b00 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg index 470c599554..36c4c01724 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg index 26a940fa51..a4ab21f715 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg index c891fafd9f..d502887d21 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg index 8bd7ba9c25..4d27ed19d4 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg index 729ff0d845..f45e0f73d0 100644 --- a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg index c4e2e42cf4..5e1ead766f 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg index af86dfec83..87265e5a16 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg index 5a769c4a08..9f04f01e67 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg index 37e404e4fb..4ef793240b 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg index 4e803ccaf1..fc5ace3f86 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg index fec8ced11d..0c4514dfd5 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg index 8db5cf2a63..4ed76619dd 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg index 51a91a5aed..0ffce60431 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg index 29c9209647..3f71d27404 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg index 6659d54c3e..5910177288 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg index 45aa9d1f7d..49688ae6f4 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg index 1847a09a91..92748d4d3d 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index 4bf51a967a..dd9958c48b 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 3d705453d8..37cf713a15 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 3443f64531..269c25aaa5 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index f436ce1fe7..58441eba1e 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index b957d58d9f..4ab3b3926d 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 3a35f9c4a2..94a250cae2 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index 634cb55aae..a062e40eaa 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 736dc65e3b..4f7c872f83 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index e8c6ccbb37..bac385cd61 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 2cb0ceec7d..2200d028c1 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index dca75697a4..c82ea7b8ce 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index b3313dfc25..a3b6e8ab7a 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index a3290a298a..6e59413f39 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index 4a3161ad31..c6f6a59cc9 100644 --- a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index bd492a2224..1bcc6f9f80 100644 --- a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index d92f980541..0184650eac 100644 --- a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index 0c70e642fa..85f310a75c 100644 --- a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index a8f810227c..c11278805f 100644 --- a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index 9d5134ba87..db57e2489d 100644 --- a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 040840898a..25919c41cb 100644 --- a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index 42c8a0cd1a..b74479ed9b 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index e9174895d6..e423042aba 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 1dac332589..849ff5b549 100644 --- a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index 604408728f..f21aaeb9c4 100644 --- a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 74446c4ef1..1b96c65430 100644 --- a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index cf95246908..5dd314fc6e 100644 --- a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 3f700e6fc6..4d63f1e315 100644 --- a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index f384dbc514..6eb8ad3808 100644 --- a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index 85341749fa..e28afbbd31 100644 --- a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index 40a1d23b46..4ebd9d8b25 100644 --- a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index 9e04c91659..3350cbd461 100644 --- a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index a695a7b898..bfc8757ad3 100644 --- a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index 2fed2b9f4c..34763768cb 100644 --- a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index 1c64d304f1..b8a463eb60 100644 --- a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index 6a19699f34..825d760120 100644 --- a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index 764aa1fe12..c42982fa97 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index fb79bbcc37..518bd27d4f 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index 2367710a73..b503848059 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index 78de9fbbf8..c64ca108d2 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index 902db8e378..c02e91690d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 06cc0beb0f..6b486043aa 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index 2789bd3714..5c037481a1 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 32dfae92e3..3c571bdb8d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index a135b89579..d84021788f 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index 76bbf7c4c2..f8b83d537f 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 25aa27be37..1e9d8b7813 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index efe536c1ce..918b620ec5 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 987aebfbed..151b1b0472 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index 7c0dd2d648..b479c96437 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index 671ea01991..bf8a8c4193 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index a275d9d7d9..0d1fc72a92 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index a46103edaa..b90788f72b 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index c9ff4eee7b..8671621b0d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg index 804ee11837..a5a48065b7 100644 --- a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg index ed1a34ccd4..55be830f9a 100644 --- a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg index 30cdb91f79..bca306577f 100644 --- a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg index 5b637198c3..da9038083f 100644 --- a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg index 6e48dc855e..d235caf8ba 100644 --- a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg index 8340de4d80..6e6a213099 100644 --- a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index c3f734e5c5..28a372882a 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index f2abb657ad..bb0bc6c05d 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index 3f5a42d8e6..6e1a243fcd 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index aa585f0f54..6f23af4bef 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index 45edf49985..c4ac917258 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index 36f2217782..dd253d02b3 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index e37c5d62ad..997eeec980 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index 1b75373c94..b039c68bf9 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 8d7eea1d9a..16a41c96f5 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 8a3044a9d9..0d6fc5596a 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 8630fdcc7d..234f4967b5 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index e8b980bc7e..4f47a1d6bb 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index 821ef65fc0..fa88c7cb80 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index c5bd4ce26c..0fb159eb58 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index 462cfdd08b..8788191875 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 12325f6474..8949585430 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index cc667ce66b..881c9cc12d 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index 706eba90f9..39730a6794 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index 48a16c2686..b6d369887d 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index c3c9f85b98..3938926d4e 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index db81b08c2a..1460fae852 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 0cf66885ff..465351877a 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index bee63cb671..a61dfa6a41 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index b4b8fcaaf7..acf463f1a2 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg index b0b48054fa..5d00116eb2 100644 --- a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg index bf4c206b70..432c55a4b2 100644 --- a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg index 50b64732fa..70d2416030 100644 --- a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg index dda348b557..125370a247 100644 --- a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg index e5e503c2af..2f580b6ed9 100644 --- a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg index dd80346549..9bb89c1a05 100644 --- a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 2f33edf8b3..732abfd791 100644 --- a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index 42273edd7a..c0cf712a9e 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index c0a5591e09..3630aecfe7 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index 9e2c0077f7..faa479d6fa 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 170fa9abb5..691bee192b 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index 008606f0b8..c97ce33271 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index a25a5f275d..e391ad8e20 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index e6286486de..7553db150a 100644 --- a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index f3de8c6d99..b455cba30a 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index d7d8be1d68..abdd6c0a70 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index 25d8a264ca..ee171d1ca9 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index 92f0c6323c..e9e702b4de 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index 4b0255019d..2c123df75c 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index 9e6e78f7fc..c0e271e76f 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index c8f50ab926..42e4794f6d 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index a2a849dd6a..e8efa941e0 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index 9e0ff0f8f1..bc8495b121 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index 7ec834604c..49a3b37883 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 0f25445187..750c72175f 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index ea4f869435..7d65ea1195 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index 4d8a971361..d2d2e961a2 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 7366f7cef9..59ecdce721 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 09083d9c7d..3016320978 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 4167cead95..73a9f12332 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index 50fba07f50..6f72dc5c88 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index df8b31288a..56140477f0 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index b82025b8ae..6e0aa7a76a 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index 775e46775d..dbe99001e1 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index a6e6680209..9c9f41a21a 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 0e6d8e2cf4..2b41a131bf 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index 3edc01a2fa..b9da9cb427 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index 2694d2b862..d1435a038f 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 66806f698d..7939329760 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index 79d87fc124..f390522673 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index cfdb8d8cb3..fe1f3f7cf8 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index 66aa764c60..7cf05dc5ce 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index bccd63f423..96bdd72b37 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 8b759962ed..7ac69be938 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index 650782d9c9..b3bd76d2bb 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 646aba5b0b..1ef825ce73 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 77c689c8c3..78f9a448d9 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 106a1cde2a..8191646d70 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index 22ef7d7858..b93a69a37b 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 41c589f878..7d26c7235c 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index 5eeaef9576..dae23df088 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index dc909a7155..25a6d69377 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index f4da1e9bc8..4b03127018 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index efb4f98609..12ed089c82 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index a4306331f1..b049720372 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 1f1152ba41..134d7d4806 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index 4190aab0cd..eb1ec461e7 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index e9afd4620c..85c2fcba1c 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 62227f50f6..55a93ee5cc 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index b3ba87ac59..1c095aa262 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 44b669e781..26a65b4a11 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 941634e3a6..bff1fd5469 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index ef66df6477..f57f1f8bbd 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 2a88f165e6..1db324d395 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 1fa6241d20..92416cbe6f 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa0.25.inst.cfg b/resources/variants/ultimaker_factor4_aa0.25.inst.cfg new file mode 100644 index 0000000000..38c39ade0b --- /dev/null +++ b/resources/variants/ultimaker_factor4_aa0.25.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_factor4 +name = AA 0.25 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +cool_min_layer_time = 0 +machine_nozzle_id = AA 0.25 +machine_nozzle_size = 0.25 +machine_nozzle_tip_outer_diameter = 0.65 +wall_thickness = =wall_line_width_0 + wall_line_width_x * 2 + diff --git a/resources/variants/ultimaker_factor4_aa0.8.inst.cfg b/resources/variants/ultimaker_factor4_aa0.8.inst.cfg new file mode 100644 index 0000000000..236b3ec0c6 --- /dev/null +++ b/resources/variants/ultimaker_factor4_aa0.8.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_factor4 +name = AA 0.8 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +jerk_print = 25 +machine_nozzle_id = AA 0.8 +machine_nozzle_size = 0.8 +machine_nozzle_tip_outer_diameter = 2.0 +raft_surface_layers = 1 + diff --git a/resources/variants/ultimaker_factor4_aa04.inst.cfg b/resources/variants/ultimaker_factor4_aa04.inst.cfg new file mode 100644 index 0000000000..60e0f78f99 --- /dev/null +++ b/resources/variants/ultimaker_factor4_aa04.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = AA 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = AA 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.0 + diff --git a/resources/variants/ultimaker_factor4_bb0.8.inst.cfg b/resources/variants/ultimaker_factor4_bb0.8.inst.cfg new file mode 100644 index 0000000000..76edb1bfe6 --- /dev/null +++ b/resources/variants/ultimaker_factor4_bb0.8.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_factor4 +name = BB 0.8 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +jerk_print = 25 +machine_nozzle_id = BB 0.8 +machine_nozzle_size = 0.8 +machine_nozzle_tip_outer_diameter = 2.0 +raft_surface_layers = 1 + diff --git a/resources/variants/ultimaker_factor4_bb04.inst.cfg b/resources/variants/ultimaker_factor4_bb04.inst.cfg new file mode 100644 index 0000000000..6f9d4da1f0 --- /dev/null +++ b/resources/variants/ultimaker_factor4_bb04.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_factor4 +name = BB 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = BB 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.0 + diff --git a/resources/variants/ultimaker_factor4_cc04.inst.cfg b/resources/variants/ultimaker_factor4_cc04.inst.cfg new file mode 100644 index 0000000000..9810c7f401 --- /dev/null +++ b/resources/variants/ultimaker_factor4_cc04.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ultimaker_factor4 +name = CC 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = CC 0.4 +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_factor4_cc06.inst.cfg b/resources/variants/ultimaker_factor4_cc06.inst.cfg new file mode 100644 index 0000000000..f1ad3342a6 --- /dev/null +++ b/resources/variants/ultimaker_factor4_cc06.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ultimaker_factor4 +name = CC 0.6 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = CC 0.6 +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ultimaker_factor4_dd04.inst.cfg b/resources/variants/ultimaker_factor4_dd04.inst.cfg new file mode 100644 index 0000000000..7cd1fd97e1 --- /dev/null +++ b/resources/variants/ultimaker_factor4_dd04.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ultimaker_factor4 +name = DD 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = DD 0.4 +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_factor4_ht06.inst.cfg b/resources/variants/ultimaker_factor4_ht06.inst.cfg new file mode 100644 index 0000000000..932b139817 --- /dev/null +++ b/resources/variants/ultimaker_factor4_ht06.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = ultimaker_factor4 +name = HT 0.6 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = HT 0.6 +machine_nozzle_size = 0.6 + diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg new file mode 100644 index 0000000000..83dd3e9ed8 --- /dev/null +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodx +name = 1C +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_c +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 1C +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg new file mode 100644 index 0000000000..8e940228e8 --- /dev/null +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodx +name = 1XA +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_hot +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 1XA +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg new file mode 100644 index 0000000000..d395d17d53 --- /dev/null +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodx +name = 2XA +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_hot_s +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 2XA +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg new file mode 100644 index 0000000000..a150a0df5d --- /dev/null +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodx +name = LABS +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_e +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = LABS +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg new file mode 100644 index 0000000000..299d05d029 --- /dev/null +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodxl +name = 1C +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_c +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 1C +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg new file mode 100644 index 0000000000..77965ea525 --- /dev/null +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodxl +name = 1XA +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_hot +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 1XA +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg new file mode 100644 index 0000000000..4e929f2853 --- /dev/null +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodxl +name = 2XA +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_hot_s +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 2XA +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg new file mode 100644 index 0000000000..c579f7f8e6 --- /dev/null +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodxl +name = LABS +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk14_e +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = LABS +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 1f3baa432f..67d10fdd5f 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -16,7 +16,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed speed_print = 55 speed_topbottom = 20 diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index c30365897b..68a3eb620d 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -29,7 +29,6 @@ raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 retraction_speed = 25 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index b3f76758f4..340c5d0f86 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -14,7 +14,6 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 -retraction_min_travel = =line_width * 2 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 34e1b6d308..a4677452b4 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -30,7 +30,6 @@ prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index e50241aa3a..79f3f7e8c9 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -16,7 +16,6 @@ acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) speed_support_interface = =math.ceil(speed_support * 20 / 25) diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 19192bfba6..3c010ed581 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 925a9f68d6..02d19fd112 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index bf93b66be7..803ae14982 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 519b21c920..904c657549 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -16,7 +16,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed speed_print = 55 speed_topbottom = 20 diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index b482c418f0..570f335718 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -29,7 +29,6 @@ raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 retraction_speed = 25 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index 09f528162d..fe44ba9d03 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -14,7 +14,6 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 -retraction_min_travel = =line_width * 2 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index b13d4b5c86..3d926cbfc5 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 660a6b10f4..92953793fa 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -30,7 +30,6 @@ prime_tower_wipe_enabled = True raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 2058185bb8..77dfccf3bf 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -16,7 +16,6 @@ acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 -retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) speed_support_interface = =math.ceil(speed_support * 20 / 25) diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index ef64dc0ae4..de9d490ad8 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index ba33bab17b..d4cd9c6616 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index bcf9dae131..6c0be44f46 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index dff0498792..9cddb47195 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index 1495af6c48..2654143fb8 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -16,7 +16,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = AA 0.25 machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 -retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed speed_print = 55 speed_topbottom = 20 diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index a5b6a66516..ffe01b344a 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -29,7 +29,6 @@ raft_surface_layers = 1 retraction_amount = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 2 retraction_speed = 25 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index a9079c975e..7616226964 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -14,7 +14,6 @@ machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 -retraction_min_travel = =line_width * 2 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 6823fe18a4..2f4fb50a8b 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -31,7 +31,6 @@ raft_surface_layers = 1 retraction_amount = 4.5 retraction_hop = 2 retraction_hop_only_when_collides = True -retraction_min_travel = =line_width * 3 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index bead299de3..e44142b3ed 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 4.5 -retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) speed_support_interface = =math.ceil(speed_support * 20 / 25) diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index d46d387330..30ffef58b6 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.4 machine_nozzle_size = 0.4 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index d0c0d3670f..f752b63cf3 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] @@ -13,7 +13,6 @@ brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = CC 0.6 machine_nozzle_size = 0.6 -retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print speed_print = 45 diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg index a9c0bb6602..7ea915f610 100644 --- a/resources/variants/ultimaker_s7_dd04.inst.cfg +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/ultimaker_sketch_0.4mm.inst.cfg b/resources/variants/ultimaker_sketch_0.4mm.inst.cfg new file mode 100644 index 0000000000..26ab646015 --- /dev/null +++ b/resources/variants/ultimaker_sketch_0.4mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = sketch_extruder +setting_version = 23 +type = variant + +[values] +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg index 8c5c61f102..69ea894c63 100644 --- a/resources/variants/uni/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg index 34e44afa05..499866af30 100644 --- a/resources/variants/uni/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg index 0dbdc55796..e1948488d3 100644 --- a/resources/variants/uni/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg index f135aa3178..1e2d3e3690 100644 --- a/resources/variants/uni/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg index e2fde31e5e..4ae51548ab 100644 --- a/resources/variants/uni/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg index 6e5d54e6af..bd91f0063f 100644 --- a/resources/variants/uni/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg index 322ed8c133..920200412f 100644 --- a/resources/variants/uni/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg index f9366b8a54..3d808fc4c0 100644 --- a/resources/variants/uni/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg index 3d264e8375..d391121563 100644 --- a/resources/variants/uni/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg index 34424ef287..e0fec2e1eb 100644 --- a/resources/variants/uni/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg index 6449e28026..090dd0de50 100644 --- a/resources/variants/uni/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg index 1106b4ba98..094826b97e 100644 --- a/resources/variants/uni/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg index de0c0b6d71..66adcf1808 100644 --- a/resources/variants/uni/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg index 4b40d2bc77..0aa9d3e787 100644 --- a/resources/variants/uni/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg index b6c96a0283..68fd46d45f 100644 --- a/resources/variants/uni/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg index c505c64831..d3aead1fe3 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg index cb67e87aaa..ea89fd1110 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg index c5ad54b52b..c30afb6068 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg index dda1465bc1..a4c832975e 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg index ce4a0daf5e..e341327f84 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg index c1e15ee4d8..db442efed8 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg index 53e39a4842..85e144fc67 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg index 84d866c76b..63bf4722b0 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg index e2a29b5e2e..1c050856b2 100644 --- a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg index a22bb078c6..be6ea9cbab 100644 --- a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg index fa8590ccca..e1a6ac0585 100644 --- a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 07ebee1182..527524441e 100644 --- a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 8486c644e9..30e7438572 100644 --- a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg index 0a84fa9320..dfd412c82b 100644 --- a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 003af1860b..115fb34cb5 100644 --- a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg index dacf75fff7..6d4ac7b9d5 100644 --- a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg index fe1bf4c7cd..344b485789 100644 --- a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg index 0ddac759b1..d0f1014583 100644 --- a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 17cbb0edc4..16723a1fe5 100644 --- a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 1d037bf31f..9e4c7061eb 100644 --- a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 9869adb2c7..9841269b46 100644 --- a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 371495b316..700a55fecb 100644 --- a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index a939c1ae21..c87b19d995 100644 --- a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index 717907672a..327bbb42a8 100644 --- a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index f2ffb7771a..8329f46a89 100644 --- a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index fda1a1341b..dd51720e8e 100644 --- a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg index 224e50eb85..bcac7fb2cb 100644 --- a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg index b8eeeec8b4..cb37b9bb50 100644 --- a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg index f07bd3e7be..334d665eb2 100644 --- a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg index 1540fabec1..584f52bd6c 100644 --- a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg index 2f408ec6ac..ee394e8e02 100644 --- a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg index 2030eba596..9b83eb69b4 100644 --- a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg index 47cfe743f7..e027745876 100644 --- a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 3b61c9c392..0b905e7f38 100644 --- a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index d578191e1e..e9788c559c 100644 --- a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index f705c43108..ea1154d368 100644 --- a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index 4bf563951b..b1fe306794 100644 --- a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 97e8a3284b..5d0d2bc2ba 100644 --- a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 86c1c6f4ad..747fc478ec 100644 --- a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 0e3d7acefd..4ed5b5f478 100644 --- a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg index 512153beda..e4cefb2673 100644 --- a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg index d6fe7433d6..cf3189d2d8 100644 --- a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg index b16e3b8e81..1d5840d134 100644 --- a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 477b72e0fa..0f2f798723 100644 --- a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 40cb92eba5..092ebaf869 100644 --- a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index ec16aaa269..c4e67a6e4b 100644 --- a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index de966abb4e..e214e4a39a 100644 --- a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index fccb25f12b..16fb67b22f 100644 --- a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index f24c10015d..603ca7f7f5 100644 --- a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index 599c5064aa..e8289b7588 100644 --- a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index a5869586f6..a640cb732d 100644 --- a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index edb540b1a2..2574e3e45c 100644 --- a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index a2bb53398d..26e7ac3149 100644 --- a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index 749f18a3dd..d6eb771afa 100644 --- a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index c6c21baaf0..310833dbc0 100644 --- a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 8e8a1e7900..05aaa43d32 100644 --- a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index 89bee318c7..e662fd7edf 100644 --- a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index daf4c54a06..61b74ca313 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index e0d62380f9..4b533d4b6a 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index 312908a37c..2b66bd9a3c 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index 6f62852f17..ccb7fd0776 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index c5d3452bef..0c83605ce1 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.25.inst.cfg b/resources/variants/voron/voron_trident_250_0.25.inst.cfg index 2ba2351c56..20c74f4145 100644 --- a/resources/variants/voron/voron_trident_250_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg index aea8777365..2c8a35bc3a 100644 --- a/resources/variants/voron/voron_trident_250_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.50.inst.cfg b/resources/variants/voron/voron_trident_250_0.50.inst.cfg index deae0b748c..ca6224ff72 100644 --- a/resources/variants/voron/voron_trident_250_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg index fe7ceef87e..2487a87fa1 100644 --- a/resources/variants/voron/voron_trident_250_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg index 911fd5bc23..c513b2ccb3 100644 --- a/resources/variants/voron/voron_trident_250_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.25.inst.cfg b/resources/variants/voron/voron_trident_300_0.25.inst.cfg index 99b00d7683..120e03f615 100644 --- a/resources/variants/voron/voron_trident_300_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg index 5d427352bb..2c522afeb6 100644 --- a/resources/variants/voron/voron_trident_300_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.50.inst.cfg b/resources/variants/voron/voron_trident_300_0.50.inst.cfg index 5a9bde2f79..3ab11833a5 100644 --- a/resources/variants/voron/voron_trident_300_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg index 569e9ecc33..1623f6c293 100644 --- a/resources/variants/voron/voron_trident_300_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg index d9d23712ae..45aafd8265 100644 --- a/resources/variants/voron/voron_trident_300_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.25.inst.cfg b/resources/variants/voron/voron_trident_350_0.25.inst.cfg index 8d124cca03..3ae6061c8b 100644 --- a/resources/variants/voron/voron_trident_350_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg index 8340efe9ab..dee2a7ba3d 100644 --- a/resources/variants/voron/voron_trident_350_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.50.inst.cfg b/resources/variants/voron/voron_trident_350_0.50.inst.cfg index 896a12aee7..7a058f6d24 100644 --- a/resources/variants/voron/voron_trident_350_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg index f93347b676..910119a1ab 100644 --- a/resources/variants/voron/voron_trident_350_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg index cd5cbf4410..28780c7817 100644 --- a/resources/variants/voron/voron_trident_350_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg index fa2cb94114..a9257c1330 100644 --- a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg index a06febff04..f7465c1b0f 100644 --- a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg index 8247a4d708..5e6946a90e 100644 --- a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg index 564aecbf92..431859e537 100644 --- a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg index c84d0f5c57..a1b50cd27d 100644 --- a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg index dfe232062f..fe74be22a5 100644 --- a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg index 1df83fd532..05c8252433 100644 --- a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg index 316e2a476c..c24abe0c1e 100644 --- a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg index 431f262e63..c660618cb6 100644 --- a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg index bb954427a7..628179d054 100644 --- a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg index eac9b47c5e..2cd1016035 100644 --- a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg index 6ecac4a4e6..b4dd2d553b 100644 --- a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg index 654970c441..763c2896ef 100644 --- a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg index 0285df5ae5..81e8965c38 100644 --- a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg index 5be96194af..8f222cf3b6 100644 --- a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg index 05f66d75fe..6d0ca279d4 100644 --- a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg index 37bcf18c7a..c96251e4de 100644 --- a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg index d212c38eb1..5f423faf6d 100644 --- a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg index 85760340fa..b6a7ba7cd2 100644 --- a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg index 86f2a6fc18..f1f8ce8dde 100644 --- a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg index 7466d2aa72..d6e97c5dc6 100644 --- a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg index d146c74792..842899a87d 100644 --- a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg index e0dd0299db..e4d1d430be 100644 --- a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg index bf7d9d6117..0deed9bddc 100644 --- a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg index bf0da7276e..2c1b78428d 100644 --- a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg index 3524f585de..4497514788 100644 --- a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg index c8db19a83c..8c9fc89fde 100644 --- a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg index df7635ecb5..6c068f79b1 100644 --- a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index a350aa9eef..9d05b2fb23 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index 9f55df85c0..815369bc27 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index 0deade0869..da97849b69 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 9181d01928..17e90ab90e 100644 --- a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 157baad8b4..020b6c5a43 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index 6d9f9123e0..cf7cbea347 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 7d4c829d96..9f40514694 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index 40062a321a..a6e75293f3 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 0aaef4de4a..70b3254b58 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index 491861dfa7..9a064a3773 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index 3c56030b11..bc19df88e0 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index a0f71419ed..b9d1015754 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index 1b1ad1c185..eb89d9c434 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg index 78b5989c1c..b2e4e94d33 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg index fc276f5997..13c4eadee7 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index 7362bc7552..fab6b115f0 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index ae4bb64582..0614a7c60a 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg index 4e44a094a2..ad0e738e39 100644 --- a/resources/variants/zav/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg index a33ac4b63c..f383c876ef 100644 --- a/resources/variants/zav/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg index f00379132b..65da7fa142 100644 --- a/resources/variants/zav/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg index a89f471161..a2dfed7389 100644 --- a/resources/variants/zav/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg index d0c0e2aa07..8a9ae2ab91 100644 --- a/resources/variants/zav/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg index 717f95274d..9df3434ecf 100644 --- a/resources/variants/zav/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg index e9acba6ec1..4e94f54a22 100644 --- a/resources/variants/zav/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg index 4eb3a28ecb..5198dc479a 100644 --- a/resources/variants/zav/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg index 936bcc18d5..4fc53197d4 100644 --- a/resources/variants/zav/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg index 3beda59b75..a4995d2ad0 100644 --- a/resources/variants/zav/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg index 819d5f0ee5..10fd2eaf80 100644 --- a/resources/variants/zav/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg index 6fd29ce394..d52f66eb51 100644 --- a/resources/variants/zav/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg index 02d876e641..70a15fb6a1 100644 --- a/resources/variants/zav/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg index e9def8ef5f..d57c6c0fef 100644 --- a/resources/variants/zav/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg index b7086e0a4b..bb82e0db54 100644 --- a/resources/variants/zav/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg index 676dce58dd..904d4911e2 100644 --- a/resources/variants/zav/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg index 34cba143ed..00de9e8790 100644 --- a/resources/variants/zav/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg index 8ffe1f0474..67c856f703 100644 --- a/resources/variants/zav/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg index 362065f210..0b18636938 100644 --- a/resources/variants/zav/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg index df2a745057..a726d9d05b 100644 --- a/resources/variants/zav/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg index 4fa17d9e1f..331dd6f067 100644 --- a/resources/variants/zav/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg index e9a4d63228..8097438232 100644 --- a/resources/variants/zav/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg index 31c10f4b68..838d6f4394 100644 --- a/resources/variants/zav/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg index 0e0cff36db..1525949e3b 100644 --- a/resources/variants/zav/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg index 5648641180..b463d344ad 100644 --- a/resources/variants/zav/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg index 9365c882fb..15b91bf090 100644 --- a/resources/variants/zav/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg index 6fa5aae4a3..7fbdcae3dc 100644 --- a/resources/variants/zav/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg index 1d56233594..a017964412 100644 --- a/resources/variants/zav/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg index 38e0c446fa..7d05464c35 100644 --- a/resources/variants/zav/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg index b183720df7..9df217c9d2 100644 --- a/resources/variants/zav/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg index 570ad1e804..36c221e17e 100644 --- a/resources/variants/zav/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg index 0bb46590a2..5c70cc59e2 100644 --- a/resources/variants/zav/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg index 2031947fe3..b3b27911ac 100644 --- a/resources/variants/zav/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg index c94b03b593..363456995d 100644 --- a/resources/variants/zav/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg index a9439a7422..c6669ad9a4 100644 --- a/resources/variants/zav/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg index c2962b60ba..65db0556ea 100644 --- a/resources/variants/zav/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg index d0ce3b7f88..e3f2ef936d 100644 --- a/resources/variants/zav/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg index eec1d7d3a2..4931819d79 100644 --- a/resources/variants/zav/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg index 9a151bc35b..e142040df6 100644 --- a/resources/variants/zav/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg index 32e430d209..32bd8bc3ab 100644 --- a/resources/variants/zav/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg index e02d20d6b5..b7d24f2b1b 100644 --- a/resources/variants/zav/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg index 453ab07d8f..d3b54f4cbd 100644 --- a/resources/variants/zav/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg index cbc4dca202..cc335e2d23 100644 --- a/resources/variants/zav/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg index bb82e132c5..a5daa9a266 100644 --- a/resources/variants/zav/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg index b3d86fc8e7..f0d48219f4 100644 --- a/resources/variants/zav/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg index c94ba4c136..1ec70c2d33 100644 --- a/resources/variants/zav/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg index cd2deaa611..6e3c61c142 100644 --- a/resources/variants/zav/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg index d18e1b0f4c..56dcfa5b4e 100644 --- a/resources/variants/zav/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg index e65fcfa069..7899a7d321 100644 --- a/resources/variants/zav/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg index 4b75bb9fc0..c14b0b25a0 100644 --- a/resources/variants/zav/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg index 0f250052ab..2f693153e2 100644 --- a/resources/variants/zav/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg index a9f2ec8058..07b3cbb299 100644 --- a/resources/variants/zav/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg index 0fcd614828..becb97fbaf 100644 --- a/resources/variants/zav/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg index e7d8de04df..bf9ad26e28 100644 --- a/resources/variants/zav/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg index b8e7e3f509..bd99c76885 100644 --- a/resources/variants/zav/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg index 6b7bd64bf3..8848639582 100644 --- a/resources/variants/zav/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg index 7db70a401a..9aba2b9fbb 100644 --- a/resources/variants/zav/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg index ba8e30d5b9..027a4fc96a 100644 --- a/resources/variants/zav/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg index e8fe9a1bf4..1ef39b3663 100644 --- a/resources/variants/zav/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg index 4c65159ccf..15872422f6 100644 --- a/resources/variants/zav/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg index 10a6733a1b..f66717ae19 100644 --- a/resources/variants/zav/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg index 5b32e6cab0..fe43c80041 100644 --- a/resources/variants/zav/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg index e3680c1c00..d393760b57 100644 --- a/resources/variants/zav/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg index b0b2dc4cb7..f33ef12e6f 100644 --- a/resources/variants/zav/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg index 8ad44c42fb..3d16bc3a11 100644 --- a/resources/variants/zav/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg index 787f44e6da..827aa1fe3b 100644 --- a/resources/variants/zav/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg index dfd4c5b36e..70e5fe2fd7 100644 --- a/resources/variants/zav/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg index 3588219551..d7f4915d17 100644 --- a/resources/variants/zav/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg index 1808205871..f1518d7e77 100644 --- a/resources/variants/zav/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/resources/variants/zav/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg index f47f8777f3..3e85f4c25f 100644 --- a/resources/variants/zav/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 22 +setting_version = 23 type = variant [values] diff --git a/scripts/check_missing_translations.py b/scripts/check_missing_translations.py new file mode 100755 index 0000000000..80a011589c --- /dev/null +++ b/scripts/check_missing_translations.py @@ -0,0 +1,100 @@ +#! /usr/bin/python3 + +import polib +import git +import os +import argparse +from collections import OrderedDict + + +missing_keys = {} + + +def list_entries(file): + entries = OrderedDict() + + for entry in file: + if not entry.obsolete: + msgctxt = entry.msgctxt + if msgctxt is None: + msgctxt = '' + + entries[(msgctxt, entry.msgid)] = entry + + return entries + +def process_file(actual_file_path, previous_version_file_data, restore_missing): + actual_file = polib.pofile(actual_file_path, wrapwidth=10000) + previous_file = polib.pofile(previous_version_file_data, wrapwidth=10000) + + previous_entries = list_entries(previous_file) + actual_entries = list_entries(actual_file) + changed = False + + for key, entry in previous_entries.items(): + if key not in actual_entries: + if key in missing_keys: + missing_keys[key].append(actual_file_path) + else: + missing_keys[key] = [actual_file_path] + + if restore_missing: + # Find the entry that was just before the one we need to re-insert + previous_entry = None + for entry_in_previous_file in previous_file: + if entry_in_previous_file == entry: + break + else: + previous_entry = entry_in_previous_file + + if previous_entry is None: + # The entry was at the very beginning + actual_file.insert(0, entry) + else: + # Now find the position in the new file and re-insert the missing entry + index = 0 + inserted = False + for entry_in_actual_file in actual_file: + if entry_in_actual_file.msgctxt == previous_entry.msgctxt and entry_in_actual_file.msgid == previous_entry.msgid: + actual_file.insert(index + 1, entry) + inserted = True + break + else: + index += 1 + + if not inserted: + actual_file.append(entry) + + changed = True + + if changed: + print(f"Fixed file {actual_file_path}") + actual_file.save() + + +args_parser = argparse.ArgumentParser(description="Compares the translations present in the current folder with the same files from an other commit/branch. This will write a report.csv file containing the missing translations and the locations where they were expected. Make sure to run this script at the root of Cura/Uranium") +args_parser.add_argument("previous_version", help="Git branch or commit hash of the version to be compared with") +args_parser.add_argument("--restore-missing", action="store_true", help="* Superbonus * This will also restore the translations missing from the previous file into the actual one") + +args = args_parser.parse_args() + +repo = git.Repo('.') + +languages_dir = '/'.join(['resources', 'i18n']) + +language_dirs = ['/'.join([languages_dir, dir_path]) for dir_path in os.listdir('resources/i18n')] +language_dirs = [language for language in language_dirs if os.path.isdir(language)] + +for language_dir in language_dirs: + for translation_file in os.listdir(language_dir): + if translation_file.endswith('.po'): + translation_file_path = '/'.join([language_dir, translation_file]) + print(f'Processing file {translation_file_path}') + blob = repo.commit(args.previous_version).tree / translation_file_path + process_file(translation_file_path, blob.data_stream.read().decode('utf-8'), args.restore_missing) + +with open('report.csv', 'w') as report_file: + for missing_key, files in missing_keys.items(): + report_file.write(';'.join(list(missing_key) + files)) + report_file.write('\n') + print(f"Saved report to {report_file.name}") diff --git a/scripts/fix_translation_memory.py b/scripts/fix_translation_memory.py index 610fb93ac6..979cc92eb7 100644 --- a/scripts/fix_translation_memory.py +++ b/scripts/fix_translation_memory.py @@ -5,9 +5,8 @@ import re import argparse from pathlib import Path from fuzzywuzzy import fuzz -from fuzzywuzzy import process import xml.etree.ElementTree as ET -from xml.sax.saxutils import unescape, escape, quoteattr +from xml.sax.saxutils import unescape def load_existing_xmtm(path: Path) -> ET.Element: diff --git a/scripts/lionbridge_import.py b/scripts/lionbridge_import.py index 65b07183a3..c73361a912 100644 --- a/scripts/lionbridge_import.py +++ b/scripts/lionbridge_import.py @@ -1,10 +1,10 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import argparse #To get the source directory from command line arguments. +import argparse # To get the source directory from command line arguments. import io # To fix encoding issues in Windows -import os #To find files from the source. -import os.path #To find files from the source and the destination path. +import os # To find files from the source. +import os.path # To find files from the source and the destination path. cura_files = {"cura", "fdmprinter.def.json", "fdmextruder.def.json"} uranium_files = {"uranium"} diff --git a/tests/TestHitChecker.py b/tests/TestHitChecker.py new file mode 100644 index 0000000000..59ee1d8162 --- /dev/null +++ b/tests/TestHitChecker.py @@ -0,0 +1,141 @@ +from unittest.mock import patch + +from cura.HitChecker import HitChecker +from cura.OneAtATimeIterator import OneAtATimeIterator +from cura.Scene.CuraSceneNode import CuraSceneNode + + +def test_anyTwoNodesBlockEachOther_True(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + # node1 and node2 block each other + hit_map = { + node1: {node1: 0, node2: 1}, + node2: {node1: 1, node2: 0} + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2]) + assert hit_checker.anyTwoNodesBlockEachOther([node1, node2]) + assert hit_checker.anyTwoNodesBlockEachOther([node2, node1]) + + +def test_anyTwoNodesBlockEachOther_False(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + # node1 blocks node2, but node2 doesn't block node1 + hit_map = { + node1: {node1: 0, node2: 1}, + node2: {node1: 0, node2: 0} + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2]) + assert not hit_checker.anyTwoNodesBlockEachOther([node1, node2]) + assert not hit_checker.anyTwoNodesBlockEachOther([node2, node1]) + + +def test_canPrintBefore(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + # nodes can be printed only in order node1 -> node2 -> node3 + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, + node2: {node1: 1, node2: 0, node3: 0}, + node3: {node1: 1, node2: 1, node3: 0}, + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + + assert hit_checker.canPrintBefore(node1, [node2]) + assert hit_checker.canPrintBefore(node1, [node3]) + assert hit_checker.canPrintBefore(node1, [node2, node3]) + assert hit_checker.canPrintBefore(node1, [node3, node2]) + + assert hit_checker.canPrintBefore(node2, [node3]) + assert not hit_checker.canPrintBefore(node2, [node1]) + assert not hit_checker.canPrintBefore(node2, [node1, node3]) + assert not hit_checker.canPrintBefore(node2, [node3, node1]) + + assert not hit_checker.canPrintBefore(node3, [node1]) + assert not hit_checker.canPrintBefore(node3, [node2]) + assert not hit_checker.canPrintBefore(node3, [node1, node2]) + assert not hit_checker.canPrintBefore(node3, [node2, node1]) + + +def test_canPrintAfter(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + + # nodes can be printed only in order node1 -> node2 -> node3 + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, + node2: {node1: 1, node2: 0, node3: 0}, + node3: {node1: 1, node2: 1, node3: 0}, + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + + assert not hit_checker.canPrintAfter(node1, [node2]) + assert not hit_checker.canPrintAfter(node1, [node3]) + assert not hit_checker.canPrintAfter(node1, [node2, node3]) + assert not hit_checker.canPrintAfter(node1, [node3, node2]) + + assert hit_checker.canPrintAfter(node2, [node1]) + assert not hit_checker.canPrintAfter(node2, [node3]) + assert not hit_checker.canPrintAfter(node2, [node1, node3]) + assert not hit_checker.canPrintAfter(node2, [node3, node1]) + + assert hit_checker.canPrintAfter(node3, [node1]) + assert hit_checker.canPrintAfter(node3, [node2]) + assert hit_checker.canPrintAfter(node3, [node1, node2]) + assert hit_checker.canPrintAfter(node3, [node2, node1]) + + +def test_calculateScore(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, # sum is 0 + node2: {node1: 1, node2: 0, node3: 0}, # sum is 1 + node3: {node1: 1, node2: 1, node3: 0}, # sum is 2 + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + + # score is a diff between sums + assert hit_checker.calculateScore(node1, node2) == -1 + assert hit_checker.calculateScore(node2, node1) == 1 + assert hit_checker.calculateScore(node1, node3) == -2 + assert hit_checker.calculateScore(node3, node1) == 2 + assert hit_checker.calculateScore(node2, node3) == -1 + assert hit_checker.calculateScore(node3, node2) == 1 + + +def test_canPrintNodesInProvidedOrder(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + + # nodes can be printed only in order node1 -> node2 -> node3 + hit_map = { + node1: {node1: 0, node2: 0, node3: 0}, # 0 + node2: {node1: 1, node2: 0, node3: 0}, # 1 + node3: {node1: 1, node2: 1, node3: 0}, # 2 + } + + with patch.object(HitChecker, "_buildHitMap", return_value=hit_map): + hit_checker = HitChecker([node1, node2, node3]) + assert hit_checker.canPrintNodesInProvidedOrder([node1, node2, node3]) + assert not hit_checker.canPrintNodesInProvidedOrder([node1, node3, node2]) + assert not hit_checker.canPrintNodesInProvidedOrder([node2, node1, node3]) + assert not hit_checker.canPrintNodesInProvidedOrder([node2, node3, node1]) + assert not hit_checker.canPrintNodesInProvidedOrder([node3, node1, node2]) + assert not hit_checker.canPrintNodesInProvidedOrder([node3, node2, node1]) \ No newline at end of file diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py index 09fa555af4..41edaebbf7 100644 --- a/tests/TestOAuth2.py +++ b/tests/TestOAuth2.py @@ -97,7 +97,7 @@ def test__parseJWTNoRefreshToken(): mock_reply = Mock() # The user profile that the service should respond with. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) http_mock.readJSON = Mock(return_value = {"data": {"user_id": "id_ego_or_superego", "username": "Ghostkeeper"}}) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): @@ -119,8 +119,8 @@ def test__parseJWTFailOnRefresh(): mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) - http_mock.post = lambda url, data, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback, urgent, timeout: callback(mock_reply) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): @@ -142,7 +142,7 @@ def test__parseJWTSucceedOnRefresh(): mock_reply_failure = Mock() mock_reply_failure.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) http_mock = Mock() - def mock_get(url, headers_dict, callback, error_callback): + def mock_get(url, headers_dict, callback, error_callback, timeout): if(headers_dict == {"Authorization": "Bearer beep"}): callback(mock_reply_success) else: @@ -181,8 +181,8 @@ def test_refreshAccessTokenFailed(): mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) - http_mock.post = lambda url, data, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.post = lambda url, data, headers_dict, callback, error_callback, urgent, timeout: callback(mock_reply) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): @@ -263,7 +263,7 @@ def test_loginAndLogout() -> None: mock_reply = Mock() # The user profile that the service should respond with. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback: callback(mock_reply) + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) http_mock.readJSON = Mock(return_value = {"data": {"user_id": "di_resu", "username": "Emanresu"}}) # Let the service think there was a successful response diff --git a/tests/TestPrintOrderManager.py b/tests/TestPrintOrderManager.py new file mode 100644 index 0000000000..8b2c0475b2 --- /dev/null +++ b/tests/TestPrintOrderManager.py @@ -0,0 +1,175 @@ +from unittest.mock import patch, MagicMock + +from cura.PrintOrderManager import PrintOrderManager +from cura.Scene.CuraSceneNode import CuraSceneNode + + +def test_getNodeName(): + node1 = CuraSceneNode(name="cat", no_setting_override=True) + node2 = CuraSceneNode(name="dog", no_setting_override=True) + assert PrintOrderManager._getNodeName(node1) == "cat" + assert PrintOrderManager._getNodeName(node2) == "dog" + assert PrintOrderManager._getNodeName(None) == "" + + +def test_getNodeName_truncatesLongName(): + node = CuraSceneNode(name="some_name_longer_than_30_characters", no_setting_override=True) + assert PrintOrderManager._getNodeName(node) == "some_name_longer_than_30_chara" + assert PrintOrderManager._getNodeName(node, max_length=10) == "some_name_" + + +def test_getSingleSelectedNode(): + node1 = CuraSceneNode(no_setting_override=True) + with patch("UM.Scene.Selection.Selection.getAllSelectedObjects", MagicMock(return_value=[node1])): + with patch("UM.Scene.Selection.Selection.getSelectedObject", MagicMock(return_value=node1)): + assert PrintOrderManager._getSingleSelectedNode() == node1 + + +def test_getSingleSelectedNode_returnsNoneIfNothingSelected(): + with patch("UM.Scene.Selection.Selection.getAllSelectedObjects", MagicMock(return_value=[])): + assert PrintOrderManager._getSingleSelectedNode() is None + + +def test_getSingleSelectedNode_returnsNoneIfMultipleObjectsSelected(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + with patch("UM.Scene.Selection.Selection.getAllSelectedObjects", MagicMock(return_value=[node1, node2])): + assert PrintOrderManager._getSingleSelectedNode() is None + + +def test_neighborNodeNamesCorrect_WhenSomeNodeSelected(): + node1 = CuraSceneNode(no_setting_override=True, name="node1") + node2 = CuraSceneNode(no_setting_override=True, name="node2") + node3 = CuraSceneNode(no_setting_override=True, name="node3") + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + with patch.object(PrintOrderManager, "_configureEvents", return_value=None): + with patch.object(PrintOrderManager, "_getSingleSelectedNode", return_value=node1): + print_order_manager = PrintOrderManager(get_nodes=lambda: [node1, node2, node3]) + + assert print_order_manager.previousNodeName == "" + assert print_order_manager.nextNodeName == "node2" + assert not print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndNextNodes() # swaps node1 with node2, result: [node2, node1, node3] + assert print_order_manager.previousNodeName == "node2" + assert print_order_manager.nextNodeName == "node3" + assert print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndNextNodes() # swaps node1 with node3, result: [node2, node3, node1] + assert print_order_manager.previousNodeName == "node3" + assert print_order_manager.nextNodeName == "" + assert print_order_manager.shouldEnablePrintBeforeAction + assert not print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndPreviousNodes() # swaps node1 with node3, result: [node2, node1, node3] + assert print_order_manager.previousNodeName == "node2" + assert print_order_manager.nextNodeName == "node3" + assert print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + print_order_manager.swapSelectedAndPreviousNodes() # swaps node1 with node2, result: [node1, node2, node3] + assert print_order_manager.previousNodeName == "" + assert print_order_manager.nextNodeName == "node2" + assert not print_order_manager.shouldEnablePrintBeforeAction + assert print_order_manager.shouldEnablePrintAfterAction + + +def test_neighborNodeNamesEmpty_WhenNothingSelected(): + node1 = CuraSceneNode(no_setting_override=True, name="node1") + node2 = CuraSceneNode(no_setting_override=True, name="node2") + node3 = CuraSceneNode(no_setting_override=True, name="node3") + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + with patch.object(PrintOrderManager, "_configureEvents", return_value=None): + with patch.object(PrintOrderManager, "_getSingleSelectedNode", return_value=None): + print_order_manager = PrintOrderManager(get_nodes=lambda: [node1, node2, node3]) + assert print_order_manager.previousNodeName == "" + assert print_order_manager.nextNodeName == "" + assert not print_order_manager.shouldEnablePrintBeforeAction + assert not print_order_manager.shouldEnablePrintAfterAction + + +def test_initializePrintOrders(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + + # assume print orders are 0 + assert node1.printOrder == 0 + assert node2.printOrder == 0 + + PrintOrderManager.initializePrintOrders([node1, node2]) + + # assert print orders initialized + assert node1.printOrder == 1 + assert node2.printOrder == 2 + + node3 = CuraSceneNode(no_setting_override=True) + node4 = CuraSceneNode(no_setting_override=True) + # assume print orders are 0 + assert node3.printOrder == 0 + assert node4.printOrder == 0 + + PrintOrderManager.initializePrintOrders([node2, node1, node3, node4]) + + # assert print orders not changed for node1 and node2 and initialized for node3 and node4 + assert node1.printOrder == 1 + assert node2.printOrder == 2 + assert node3.printOrder == 3 + assert node4.printOrder == 4 + + +def test_updatePrintOrdersAfterGroupOperation(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + node4 = CuraSceneNode(no_setting_override=True) + node5 = CuraSceneNode(no_setting_override=True) + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + node4.printOrder = 4 + node5.printOrder = 5 + + all_nodes = [node1, node2, node3, node4, node5] + grouped_nodes = [node2, node4] + group_node = CuraSceneNode(no_setting_override=True) + + PrintOrderManager.updatePrintOrdersAfterGroupOperation(all_nodes, group_node, grouped_nodes) + + assert node1.printOrder == 1 + assert group_node.printOrder == 2 + assert node3.printOrder == 3 + assert node5.printOrder == 4 + + +def test_updatePrintOrdersAfterUngroupOperation(): + node1 = CuraSceneNode(no_setting_override=True) + node2 = CuraSceneNode(no_setting_override=True) + node3 = CuraSceneNode(no_setting_override=True) + node1.printOrder = 1 + node2.printOrder = 2 + node3.printOrder = 3 + + all_nodes = [node1, node2, node3] + node4 = CuraSceneNode(no_setting_override=True) + node5 = CuraSceneNode(no_setting_override=True) + + group_node = node2 + ungrouped_nodes = [node4, node5] + PrintOrderManager.updatePrintOrdersAfterUngroupOperation(all_nodes, group_node, ungrouped_nodes) + + assert node1.printOrder == 1 + assert node4.printOrder == 2 + assert node5.printOrder == 3 + assert node3.printOrder == 4 + + assert node1 in all_nodes + assert node2 not in all_nodes + assert node3 in all_nodes + assert node4 in all_nodes + assert node5 in all_nodes